diff --git a/labs/lab3/data/edufineweb_train_000001.npy b/labs/lab3/data/edufineweb_train_000001.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7571b7f1807ffcc3cb9d71a49104c2f142f5176 --- /dev/null +++ b/labs/lab3/data/edufineweb_train_000001.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb2b9eef2eab2f9903ee61ff81b5df5eb80455392e407fc3f56de8d7b6c738b5 +size 200000128 diff --git a/labs/lab3/data/edufineweb_train_000002.npy b/labs/lab3/data/edufineweb_train_000002.npy new file mode 100644 index 0000000000000000000000000000000000000000..003e7f1bc47459657d186ecb7981e070a32dece5 --- /dev/null +++ b/labs/lab3/data/edufineweb_train_000002.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4a96a209f29c2b7478e0605fe1ffa6bc06dd97af1047473f23a6f46ee03836 +size 200000128 diff --git a/labs/lab3/data/edufineweb_train_000003.npy b/labs/lab3/data/edufineweb_train_000003.npy new file mode 100644 index 0000000000000000000000000000000000000000..4b9b500bfa4ba6d39af5138c64b94d6353b4f7e1 --- /dev/null +++ b/labs/lab3/data/edufineweb_train_000003.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b722ef4058b8ee1ab38751a246ef61f0c653fb1a5a3aa5306cadc958901daf0 +size 200000128 diff --git a/labs/lab3/gpt2.py b/labs/lab3/gpt2.py new file mode 100644 index 0000000000000000000000000000000000000000..e36a1a9bca19d92bba049741e72e8f29116d0a4c --- /dev/null +++ b/labs/lab3/gpt2.py @@ -0,0 +1,93 @@ +from dataclasses import dataclass + +import torch +import torch.nn as nn +import torch.nn.functional as F + + +@dataclass(init=True) +class Config: + n_vocab: int = 50257 + n_ctx: int = 1024 + n_embd: int = 768 + n_head: int = 12 + n_layer: int = 12 + + +class MLP(nn.Module): + def __init__(self, config): + super().__init__() + self.c_fc = nn.Linear(config.n_embd, config.n_embd * 4) + self.c_proj = nn.Linear(config.n_embd * 4, config.n_embd) + + def forward(self, x): + (batch_size, seq_len, n_embd) = x.shape + x = self.c_fc(x) + x = F.gelu(x) + x = self.c_proj(x) + return x + + +class Attention(nn.Module): + def __init__(self, config): + super().__init__() + assert config.n_embd % config.n_head == 0 + self.n_head = config.n_head + self.c_attn = nn.Linear(config.n_embd, config.n_embd * 3) + self.c_proj = nn.Linear(config.n_embd, config.n_embd) + + def forward(self, x): + (batch_size, seq_len, n_embd) = x.shape + head_embd = n_embd // self.n_head + (q, k, v) = self.c_attn(x).chunk(3, dim=-1) + q = q.view(batch_size, seq_len, self.n_head, head_embd) + k = k.view(batch_size, seq_len, self.n_head, head_embd) + v = v.view(batch_size, seq_len, self.n_head, head_embd) + q = q.transpose(-2, -3) + k = k.transpose(-2, -3) + v = v.transpose(-2, -3) + x = F.scaled_dot_product_attention(q, k, v, is_causal=True) # flash attention + x = x.transpose(-2, -3).contiguous() + x = x.view(batch_size, seq_len, n_embd) + x = self.c_proj(x) + return x + + +class Block(nn.Module): + def __init__(self, config): + super().__init__() + self.ln_1 = nn.LayerNorm(config.n_embd) + self.attn = Attention(config) + self.ln_2 = nn.LayerNorm(config.n_embd) + self.mlp = MLP(config) + + def forward(self, x): + x = x + self.attn(self.ln_1(x)) + x = x + self.mlp(self.ln_2(x)) + return x + + +def make_positions(n): + return torch.arange(n, dtype=torch.long) + + +class Model(nn.Module): + def __init__(self, config): + super().__init__() + self.config = config + self.wte = nn.Embedding(config.n_vocab, config.n_embd) + self.wpe = nn.Embedding(config.n_ctx, config.n_embd) + self.h = nn.Sequential(*(Block(config) for _ in range(config.n_layer))) + self.ln_f = nn.LayerNorm(config.n_embd) + self.lm_head = nn.Linear(config.n_embd, config.n_vocab, bias=False) + self.register_buffer("pos", make_positions(config.n_ctx), persistent=False) + + def forward(self, x): + (batch_size, seq_len) = x.shape + wte = self.wte(x) + wpe = self.wpe(self.pos[:seq_len]) + x = wte + wpe + x = self.h(x) + x = self.ln_f(x) + x = self.lm_head(x) + return x diff --git a/labs/lab3/hellaswag-mini.jsonl b/labs/lab3/hellaswag-mini.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1f003eb13e27d2d24c15cfe4b9a8fe17df05bc63 --- /dev/null +++ b/labs/lab3/hellaswag-mini.jsonl @@ -0,0 +1,128 @@ +{"ctx": "[header] How to paint jeans [title] Cover your work area. [step] Protect your surfaces from the paint or it may stain them. Make sure to cover a large area.", "endings": ["You will be splattering the paint onto your jeans and it is likely to splatter all around your jeans as well. Lay out your tarp or newspapers to cover the area you will be working on.", "You might want to put out a tarp or blanket for added protection. Do not make the area wet; any paint sitting around your work area could stain your floor.", "A single spill can permanently stain denim if it gets onto your skin, so make sure to have everything else covered. [substeps] Get accumulation of lots of cleaning substances underneath your work surface.", "Cover the top areas of your work area with paper towels or another material. Use painter's tape or duct tape."], "label": 0} +{"ctx": "[header] How to create a media use plan for your kids [title] Determine your goals. [step] Your first step in creating a media use plan is to determine and outline your goals for the plan. Ultimately, without determining your goals, you and your kids will have a vague idea about where to start and how to put the plan into action.", "endings": ["It may help to craft the plan with your child, so they will be more likely to adhere to it. [substeps] Figure out their other obligations, like the amount of time they need to spend on homework for school, or time they need to spend practicing for extracurricular activities.", "Figuring out your goals will help you determine how you can access them in the future. [substeps] According to sally-blewegeow smith's adaptive placement plan, children must be selected for about one year.", "Think about the types of media use plans that you plan to make and find some designers that have experience in making them. [substeps] For example, you might create a media use plan for a children-led household.", "You may have ideas for what to do, what classes you should take, how many websites you should set up, who you should plan on meeting, what goals to achieve. [substeps] There are three major stages to creating a media use plan."], "label": 0} +{"ctx": "[header] How to get a close shave [title] Choose a clean and sharp, quality safety razor. [step] A quality razor blade means a quality shave. When proper preparation of the skin takes place, you will only need a single blade razor.", "endings": ["Take the time to select a shaving power razor that has the right blade for your top quality shave. [substeps] Your razor should not have a metal blade.", "They are slightly more delicate and don't scratch the skin as much. [title] Treat any skin that is experiencing discomfort or redness.", "However, picking a double or triple blade won't hurt your skin and can provide a closer shave. [substeps] Many razors have a pivoting head.", "Both a razor and the right size of blade will ensure the best shave possible. [substeps] Go for a quality one that is at least 10 mm long and has a sharp tip."], "label": 2} +{"ctx": "Two young girls stand in a kitchen, with one holding a bag of something and talking and the other standing on a chair. the two", "endings": ["collaborate to mix the bag and some other ingredients in a large bowl.", "girls begin move the girl on the chair and then the one on the chair exercises along with her while she talks.", "women begin cooking something into a pan, then around the food, having it made straight out from scratch.", "girls serve a sandwich, then, the two girl and one put sheet cake on the table."], "label": 0} +{"ctx": "[header] How to babysit a toddler [title] Don't leave them alone. [step] Be alert. Keep an eye on them all the time; you never know what one may try to do, open up, dig out ,...fall off or pull down.", "endings": ["Don't even leave the room for a second. You would be surprised what kind of mess a toddler can make in the time that you take to use the bathroom.", "[title] Teach toddlers to do something different and exciting. [step] Whether it's silly, exciting, biblical, informative ,...etc.", "Call your friends and neighbors to your/their home, make sure they can hear you, if you hear nothing then they are unlikely to feel \" ok \" when you ever consider sending them a message just to listen. [title] Stay busy while you're babysitting.", "[title] Act when you're not around them. [step] The idea is that if the baby sees the action, they'll see you as a good babysitter."], "label": 0} +{"ctx": "[header] How to get dreads to stand up [title] Get dreads put into your hair. [step] How you create dreads in your hair will depend a lot of the texture of your hair, its thickness, and whether you've had dreads before. If you've never had dreads before, it's best to go to ask someone-whether a stylist or a friend-to do them for you.", "endings": ["Here are a few different ways to create dreads : [substeps] Wash or condition your hair. If you have fine hair, be sure to wash it.", "[substeps] Hair dries fastest when it's wet. Rinsing your hair first will save frizz and give it a more flawless look.", "[title] Consider tapering the sides of your hair. [step] Tapering the hair on the sides of your head can help train your dreads.", "[substeps] Ask your hairdresser to show you the correct hair texture. They will then use the knowledge to determine the natural texture you want."], "label": 2} +{"ctx": "[header] How to fend off an attacker [title] Remember that every part of your body and everything on your person has the potential to be used as a weapon. [step] This includes items you may carry in your pockets such as pens, keys, or small pistols. [title] Open your hands and keep them in front of you in a pleading position when confronted by a potential attacker.", "endings": ["[title] Know that any gun or other weapon you use is to be used only as a last resort. [title] Calling a hand lock with a self control grip that adds power to your weapon, increases your resiliency, and helps you recover from being shot.", "[step] Clenched fists give away your readiness to strike. Open hands present a non-threatening appearance that will cause an attacker to let his guard down, while still leaving you the options to suddenly strike or grab.", "[step] Your hands and wrists are the most likely places they will be hurt and used against you. [title] Do not attempt to gouge at a attacker while in a fighting position.", "[title] Make sure your weapon is not in view. [step] Always keep it in sight and not easily accessed while driving."], "label": 1} +{"ctx": "The woman talks throughout the entire video as she's demonstrating her movements or pointing towards her finger motions. eventually the woman", "endings": ["stops talking and ends with a smile and the words \" howcast original \" appear on the white screen.", "shows a square of paper and explains the process before showing the process once more.", "gets off the mat and drops to the first mat and leans into the air before hitting it again with her hand.", "is seen in front of a billiards table as the girl is sitting down in front of it sporting a black eye, an ear pan and a face mask."], "label": 0} +{"ctx": "Another play starts and this time another person is ran into except it is more fragrant and the person lays on the ground hurt for quite some time. after", "endings": ["that another guy plugs into the playmate.", ", the third time the person belongs is picked up and dropped off then he moves to another area to play again.", ", the second set of lean singers is played and the crowd is now louder than when before.", "consulting with the referee and seeking help, the male finally gets up and the rest of the game continues."], "label": 3} +{"ctx": "[header] How to make a non alcoholic mimosa [title] Opt for sparkling white grape juice to mimic champagne. [step] If you want to go for the classic mimosa taste, pick up some sparkling white grape juice at a grocery store. Sparkling white grape juice has a similar taste to champagne and will provide the traditional taste of a mimosa.", "endings": ["[substeps] If you like to drink on the rocks, you can take advantage of the bubbles that the carbonated champagne provides. [title] Whip up sparkling white champagne for a traditional, classic mimosa.", "You can also consider adding a little orange flavor to it to satisfy these tastes. [title] Use a floating \" float \" type of champagne to add flavor to a classic mimosa.", "[title] Add creme de cacao to your mimosa. [step] Vintage country mimosas are made from white grape juice.", "[title] Try ginger ale for a strong taste. [step] You can get a little creative when making your mimosa."], "label": 3} +{"ctx": "[header] How to get off federal probation early [title] Fulfill all conditions of your supervised release. [step] To be eligible for early termination, you must obey all the terms and conditions of your probation from the moment it begins without any violations or issues. [substeps] Some violations, such as possession of a firearm or a controlled substance, require the mandatory revocation of your supervised release and return to prison.", "endings": ["Typically, to have your request for early termination of your supervised release approved, you must be doing exceptionally well on probation and not be causing any problems or concerns for your probation officer. [title] Complete at least one year of supervised release.", "Failure to satisfy these conditions can result in an early termination of your supervised release. Failure to fulfill those conditions could result in your probation going off in two years.", "If you are given additional notice, that notice will automatically expire. [title] Go to the disciplinary office at your county courthouse.", "An example of a violation of your supervised release includes chewing tobacco in bars and having a habit of smoking, drinking, and using illegal tobacco products. You must fulfill all conditions of your supervised release and return to prison and your home free of charge."], "label": 0} +{"ctx": "[header] How to participate in clinical trials [title] Talk to your doctor. [step] If you have a chronic illness or medical condition, your primary treatment provider is your best source for clinical trials that might benefit you. Let your doctor know that you are interested in exploring the possibilities.", "endings": ["[substeps] Bring your ob/gyn, a professional, with all of your medical information if you are not sure where to begin. Either ask, \" what would be the best treatment program for me? \" or \" do you know of any facilities near me that might benefit me? \" [title] Educate others.", "Make sure that your medical provider knows exactly what sort of information you'll want to explore and will be able to help you find the materials you want to explore. [substeps] Even if you don't get infected with lupus, know that you are still a patient for one year, and you will experience no symptoms over time.", "[substeps] If you hear of a trial on your own, bring it up to your doctor and let them know you'd like to participate. They can advise you on whether they think you would benefit from the drug or treatment being studied.", "If possible, contact your doctor for more information. [substeps] Keep in mind that clinical trials are usually subsidized by a state or federal government agency and some states will not approve conditions they deemed appropriate for clinical trials."], "label": 2} +{"ctx": "[header] How to grow grape vines [title] Choose a type of grape. [step] As with any plant, certain types of grapes grow better in different areas and offer up different flavors and appearances. There are three general types of grapes: american, european, and muscadine grapes.", "endings": ["The' bat' variety is quite dark, with a hectic shape and a bit of texture. Popular grapes grow quickly for the same years and are often planted with white grapes and a rose color.", "[substeps] Traditional grape grapes are made of rich grapes and have light yellow and orange coloring. If the grapes are not from the wild and you are looking for a more bitter flavor, look for grapes grown in known regions that are not based on the wild grape.", "[substeps] American grapes are naturally sweet and plump, with skins that are slightly crisped. European grapes grow best in warm, dry conditions with ripened fruits on a stalk.", "American grapes grow best in warm, sunny climates like that of central california. European grapes are common in europe and northern parts of the us, and muscadine grapes are commonly found in the southern us."], "label": 3} +{"ctx": "[header] How to protect your infant from flu [title] Get vaccinated. [step] As soon as the seasonal flu vaccine is made available, you and other caregivers should visit your doctor and get vaccinated. By being vaccinated, you'll protect yourself from being infected.", "endings": ["As a result, your chance of infecting your infant will be much lower. Without a flu vaccine, you and your family will be much more vulnerable.", "[substeps] First, you will need to get vaccinated when you are 15 years old or older. Remember that vaccines do not prevent the flu from occurring in children.", "All viruses can lead to flu, but there are also vaccinations that prevent a potential recurrence. They're not as important as any other vaccines, though.", "[substeps] Vaccinations can last for several months. Contact your doctor immediately if you've had the flu in the past, have just become pregnant, or if you have recently given blood."], "label": 0} +{"ctx": "The man then picks up a bottle and squirts some liquid onto one of the objects, and picks up a knife and starts dragging it on both sides along the oil that is on the object. the man", "endings": ["then puts the dirty object on all four ends of the object.", "then grabs a wrench and alternates using the tool to cut through the paint on the paint until it's gone, then he uses the same object on the square piece of plastic that he closes.", "then goes to the sink and empties the mixture onto the glass and then turns on the faucet with a cloth.", "then removes the object and starts rubbing the knife along the hand towel that was under the object and he picks up another tool and begins rubbing the knife along it and once again rubs the knife down with the hand towel."], "label": 3} +{"ctx": "[header] How to make enzyme cleaner [title] Wash and chop the citrus peel. [step] Rinse the citrus peel under running water and scrub the outside with a vegetable brush to remove dirt and impurities. Pat the peels dry with a clean towel, and carefully chop the peels into half-inch (1.3-cm) cubes.", "endings": ["If you plan to use lemon juice for this cleaning, make sure to sterilize your can opener so that the juice doesn't collect on the inside. If you want to use cider vinegar instead, make a lemon juice substitute.", "[substeps] Rinse the peels with running water, and place the lime juice and lime zest in a bowl. You can store the peels in the refrigerator, but make sure to use the oranges in the process.", "The pieces have to be small enough to fit into the opening of a pop bottle. [substeps] You can use a variety or mixture of citrus peels to make your homemade enzyme cleaner, including lemon, lime, grapefruit, and orange.", "Set aside once you've washed and chopped the citrus peels. [substeps] You'll know that the peels are fully ripe by the pink flesh that is visible through the peel."], "label": 2} +{"ctx": "[header] How to ask for a trial separation [title] Prepare your spouse. [step] You don't want to blindside the person out of nowhere. Alerting your spouse that you want to have a discussion can help him or her mentally prepare for what's ahead, even if they're not aware of exactly what you're going to say.", "endings": ["It's important to let your spouse know that you'll consider keeping a discussion between you and the attorney in front of the judge, regardless of your spouse's relationship to the person. [substeps] It's beneficial for you both to discuss potential attorneys beforehand.", "[substeps] Just tell your spouse that you want a trial separation from them. Let them know, rather than explaining that you want to wait until immediately after your spouse is admitted to the judicial system.", "[substeps] You could say, \" i'd like to discuss where our relationship is headed. Can we sit down and talk about it soon? \" that helps clue your partner into the fact that something's up.", "[substeps] You may send your spouse advance notice of your plans to discuss separation. That way, you avoid a lengthy wait of a week."], "label": 2} +{"ctx": "A woman is standing at a table with a pile of scissors and supplies. She demonstrates how to cut cellophane and wrap it around a gift. she", "endings": ["begins wrapping the gift with paper, scissors, and scissors.", "then pulls a bic string to seal the present.", "ties a string around the gift, showing off the final product.", "then cuts strips of paper and puts tape across the top of the gift."], "label": 2} +{"ctx": "[header] How to give a baby a bath in the sink [title] Fill the bath a few inches deep. [step] Fill a safe, clean receptacle with roughly three inches of warm water. The water should be between between 90 \u00b0 f (32 \u00b0 c) and 100 \u00b0 f (38 \u00b0 c).", "endings": ["Once you have the appropriate amount of water, shut it off and swirl the water to ensure there are no especially hot spots. [substeps] Touch the water with the inside of your wrist.", "If the baby is crying, they are likely to drown, so be sure to warm up. [substeps] Baby showers are often set up near the bath area.", "[substeps] If the bath is not going to produce suds in the water, you may want to fill a bowl with clean tap water to create a cleaner float. [title] Submerge your baby in the water.", "Add a few drops of essential oils to the water to add a relaxing feeling to the bath. [title] Submerge your newborn in the water."], "label": 0} +{"ctx": "[header] How to draft a stock purchase agreement [title] Format your document. [step] Open a blank word processing document. You should set the font size and style to something most people can read.", "endings": ["A women's word style is okay for a large document. In a man's favor, however, an invitation to type out the agreement almost doubles the benefit.", "A thicker, more professional looking document does not require a thicker document. [substeps] With an open word document, your draft must remain formatted.", "Insert the heading headings in front of your document and set the date. [substeps] Commonly, stock purchase agreements require a certain number of characters, such as 1 and 2.", "Times new roman 12 point works for most people, but feel free to choose anything legible. [substeps] You might be making multiple stock sales to many different buyers."], "label": 3} +{"ctx": "[header] How to prevent hair from frizzing after shower [title] Use your fingers to comb your hair. [step] Brushes and combs create friction that can damage your hair or upset the strands, causing more frizz. Breakage and frizzing are even more likely when using a dry brush on dry hair.", "endings": ["[title] Put a heat protective mask on your hair before you shower. [step] The splash of water can even further damage your hair, so opt for a heat protection mask.", "[substeps] Wash all of your face, then briefly comb through it with your fingers to create natural friction. [title] Pat your hair dry with a towel.", "To reduce frizz from brushing, use your fingers to untangle your hair when it is dry. [substeps] If necessary, use a wide-tooth comb in the shower to properly distribute conditioner and untangle hair.", "[substeps] This will make your hair tighter and freer. Touch your wet hand in the shower to release stubborn tangles."], "label": 2} +{"ctx": "[header] How to bond with your baby [title] Have patience. [step] Bonding with your baby doesn't just happen overnight. In fact, it's a process.", "endings": ["It could take up to thirty years to bond with and unfold fully. Running to your ob/gyn and asking them to call you regularly and schedule appointments will only cause stress to your baby and increase their chances of developing cancer.", "Getting used to being near your baby is a huge part of bonding, and when you begin the bonding process, you are emotionally ready to take that process to a deeper level. Remember, it is easy to get caught up in someone else's world and think \" oh my gosh, i'm changing my mind.", "It can happen at birth or even a few weeks or months later, sometimes in the process of everyday caregiving. At some point, you'll realized how much you love your baby and want to protect him or her.", "In some ways, it can become the most important part of your life. Bonding with your baby can also boost your immune function, cause you less stress, and let you know when you're holding onto a breakable attachment."], "label": 2} +{"ctx": "The remaining insides are cut and scraped off with an ice cream scoop. A design is drawn on the pumpkin and then cut out. the inside of the pumpkin", "endings": ["gets sprayed with mold remover and patted dry.", "covers the face and the interior and back are completed.", "is shown from strategically placed between two pates.", "decorates with bows and a cartoon logo."], "label": 0} +{"ctx": "[header] How to accessorize outfits with scarves [title] Wear a bulkier scarf during cooler months. [step] Longer, thicker scarves are easier to pull off, and far more comfortable, during the fall and winter months. This makes a rectangle scarf in fleece, wool, or cashmere a perfect choice for your fall outfit.", "endings": ["[substeps] Focus on going for fashionable scarves that have bows and wrapping tape to keep the scarf in place. Studies have shown that wearing scarves that are longer will make them more fashionable.", "[substeps] Finally, a long, dangling, or floppy scarf is perfect if you're going to the beach. [title] Keep your scarves on in case they get wet.", "[title] Wear a cardigan over a bulky scarf to wrap your blouse in. [step] It makes it far easier to layer into layers on colder days.", "[substeps] Wear warm toned scarves such as red, orange, brown, and beige in the fall. Try pairing a long, plaid rectangle scarf with fringe with a monochromatic dress or outfit, and then belt it with a skinny belt."], "label": 3} +{"ctx": "They are swishing it in their mouths and almost all of them have their hands over their mouths. One of them spits it out in the sink and the other three are trying to carry on. they", "endings": ["are now following another man driving a car that sprays cleaner all over the car and he is shaking and smeared with the solution as well as laughing and bordering on spitting out some of it too.", "try to talk to each other and take their fingers out of their mouths to talk.", "all seem to be pretty groomers.", "are having a really hard time and eventually they all spit out and one girl wins."], "label": 3} +{"ctx": "He begins to show several different clips from the show. He also comments about different aspects of the show while being interviewed. he", "endings": ["closes the video with a quick goodbye and the closing credits are shown on the screen.", "is also seen sitting on a bench speaking to a woman who begins to pass the pitcher back and fourth.", "seems to know the routines as he talks about the ropes that he uses.", "alternate health issues and hairstyle on the show, providing some very detailed advice on what's to come."], "label": 0} +{"ctx": "[header] How to buy books for your kindle [title] Go to the home screen on your kindle tablet. [step] Do so by pressing the \" home \" button at the bottom of the screen. [substeps] Your kindle must be connected to the internet and linked to your amazon account.", "endings": ["This means it will not get started until you visit http: // www.amazon.com/download-your-book-for-kindle-right-when you log in. [title] Go to the book store on your kindle.", "[title] See what other books you want to review. [step] In the \" books \" window, hover your cursor over the interest or hobbies section to see a list of other interest books going through.", "For convenience, you may want to turn on 1-click ordering. [title] Tap books at the top of the screen.", "In order to file a new file, your kindle must be linked to your amazon account. From here on, you have to log into and of course your amazon account too, or your kindle will not be used."], "label": 2} +{"ctx": "A little boy is in a yard, using a leaf blower. a little girl", "endings": ["comes inside and stands next to the child.", "soon joins him, raking leaves.", "is on a lawn mower behind the boy.", "turns on the handle, blowing leaves on the lawn."], "label": 1} +{"ctx": "[header] How to do your makeup like tori vega [title] To get a look like tori's, including concealer in your makeup routine will be optional. [step] If you are in a hurry, going without concealer is not a \" biggy. \" to apply concealer and make it look like tori's, it is simple.", "endings": ["You just add a little eyeshadow first, then any other eyeshadow color or lip color that you like. Then, apply the concealer and lip color with a large, oval-shaped makeup brush.", "Mostly, just do your concealer as you would usually do it. Apply especially on blemishes, and even it out to get a fine and natural-looking skin tone.", "You simply under apply concealer and go over your skin with foundation that is a shade darker than you. You can use either mica gold or black blush for foundation.", "( consider applying that to your nose at the bottom of the eye! ) [title] Your hair too. [step] Simply put it up in a messy bun and put on a glossy hair spray."], "label": 1} +{"ctx": "A man is seen speaking to the camera and leads into clips of him moving dirt. other men", "endings": ["work around him in various angles and ends with their closing poses.", "help plant the areas while moving around wheel barrows and planting plants while still speaking to the camera.", "are seen around him as well as an old man picking up rocks and the video ending with the man standing before a group and mowing them down.", "are seen speaking back and fourth and continue to move around a racetrack."], "label": 1} +{"ctx": "[header] How to eat more grapes [title] Add grapes to your salad. [step] A popular and easy way to increase the amount of grapes in your daily diet is to toss a few halved grapes on top of a lunch-or dinnertime salad. The sweet flavor and wet texture of the grapes will add a new sensation and flavor to any of your favorite salads.", "endings": ["[substeps] To add more grapes, crush large servings of grapes and season them with just a pinch of salt and pepper. Apply the grapes to different salads so that your guests have a variety of options and can enjoy one type of salad for extended periods of time.", "[substeps] Toss grapes by pressing down on the centers with your spatula to ensure that they're evenly coated with a layer of oil. Don't worry about blending into an otherwise perfect salad.", "[substeps] The sweet wine in this salad results in a comparable flavor and texture. Just make sure to cut down on the cocktail and water calorie intake! Some drinks that are made with grapes are actually better for your body than other liquids.", "Try grapes on a salad with chicken for a pleasant flavor, or add halved grapes to any seafood or pasta salad. [substeps] Grapes are especially popular in mediterranean cuisine, and will go well with most mediterranean salads."], "label": 3} +{"ctx": "Man is siting in a bed playing an harmonica and an acordion. man", "endings": ["is sitting playing instruments in a room.", "is in a room hookin the guitar and playing a harmonica.", "is walking in the marble wassa a white room.", "wakes up mopping the floor and look all around."], "label": 0} +{"ctx": "A chef's knife is shown with the word \"honing\" overlaid. a chef", "endings": ["is shown cutting vegetables using a patio utensil.", "demonstrates how to sharpen a knife in a kitchen.", "starts talking near a stove in a white tiled garden and holds up a knife.", "is kneeling behind a white counter."], "label": 1} +{"ctx": "The woman begins to emulate the man's actions, moving her arms and dipping her head under the water. the man", "endings": ["then appears out of nowhere and begins to hold the woman.", "shows her how to swim outward by doing so himself.", "reaches out and she jumps in, submerged at the waist.", "licks his lips as the woman moves under the water in the same manner."], "label": 1} +{"ctx": "[header] How to prepare for a new baby [title] Recognize that fear is normal. [step] A new baby can bring a lot of fear and uncertainty because they are so small and appear fragile. You may ask yourself questions like \" am i up to this? \" or \" will i hurt my baby? \" and it's important to realize that these are very normal feelings.", "endings": ["If you know that you are anxious or angry, think about what is happening and now is the time for preparation. [title] Look at the baby's size and shaped shape.", "[substeps] Physical fear happens when your body adapts by becoming tense or ready for pain or inactivity and when the baby changes. You don't have to fear such a fear immediately, it just must be recognized in its positive or negative reactions.", "[substeps] Remember that there is no instruction manual for parenting and you'll figure things out as you go. Ask your family members, friends, and doctor any questions you have about preparing for your baby.", "[title] End the stressful experience with feedback. [step] It will be easier for you to accept the baby from the hip section, where you can talk to the baby head-on."], "label": 2} +{"ctx": "Little kid is sitting in a babies eating chair. an adult person", "endings": ["is holding an ice cream and is offering it to the baby.", "is playing in the swing.", "are sitting in the chair watching.", "enters and check the baby things, then the baby gets cleaned."], "label": 0} +{"ctx": "A woman is seated at a table. she", "endings": ["is shown holding onto a pair of legs.", "is holding a long stick.", "is knitting with pink yarn and needles.", "is playing a flute."], "label": 2} +{"ctx": "When they make a hole in the ice they put their fishing wire attached with bait into the hole and begin ice fishing until the woman catches a fish. after they", "endings": ["all get back in their boat they all begin to enjoy the cold water and in the ocean it gets really cold.", "get returned they go back to fish digging under the ice and showing the fish they got there in the first place.", "start they reel it in and we see the coming song on the screen.", "'re done fishing, they are now at a wood fire and the fish is cooking on the wood."], "label": 3} +{"ctx": "[header] How to photograph underwater [title] Purchase a waterproof point-and-shoot camera to take basic pictures. [step] Point-and-shoot cameras are great for beginners because you don't have to change many settings. They come with automatic settings you can experiment with, but for the most part these cameras are very straightforward and easy to use.", "endings": ["[substeps] Larger lenses (these lenses swivel off the sides of the camera) take a lot of pressure, so take some time to carefully monitor the areas being photographed. [title] Take it a step further by using an area with relatively little water.", "You can find these cameras at photography studios or on sites like ebay. [substeps] The basic point and shoot camera is one with a wide aperture and a flash.", "You can purchase either a digital waterproof camera or a disposable point-and-shoot. [substeps] Popular camera brands like olympus and nikon make point-and-shoot cameras for underwater photography.", "How you look at them can affect the dynamic shots you film. [substeps] In most photographs, your image is situated between the rays you are shooting."], "label": 2} +{"ctx": "[header] How to wear a suit [title] Choose a charcoal gray or navy blue suit. [step] Unless you are going to a funeral or black-tie affair, there is no reason to wear a black suit in the daytime. Instead, go for a classic-cut, neutral color.", "endings": ["These suits will be more versatile and favorable for everyday wear. Most dress shirt colors will also match well with a dark grey or navy.", "Suits with metallic undertones will compliment your look better, because you won't be tempted to wear something boring or out of the ordinary. [title] Opt for a cropped suit if you have other goals.", "Ideally, your suit should be black, so look around your house to see what suits you best. [substeps] A classic gray suit is also appropriate for formal events.", "[substeps] If you want to make sure you look polished, go for a navy suit with white or cream colored pants and a solid-colored button-down shirt. If you want to avoid thick ties, try a solid gray or navy colored tie over a solid blue one."], "label": 0} +{"ctx": "[header] How to teach a child to use scissors [title] Take a pair of scissors and hand the child the handle side first. [step] Naturally the child will pick the pair of scissors with their dominate hand. [title] Start with the grip.", "endings": ["[step] Show the child in your hand how to hold the scissors, and then have them try to copy it. If they aren't able to alone, help move their fingers and thumb into the right position.", "[step] Hold the handle side in one of your dominant hand, use thumb and pointer fingers to grip the grip side of the scissors, then use the second pair of scissors to cut away any excess skin. If you want to do this instep the toe with your palm.", "[step] Holding the handle side of the scissors firmly between your thumb and forefinger, swiftly bend the handle and snip off a small piece off the short end. [title] Grip the blade using your dominant hand and hold it at a 45-degree angle from the child's fingers.", "[step] This is the grip you can get to hold the child's scissors so as to position them correctly. [substeps] Hold the teacher's scissors straight up."], "label": 0} +{"ctx": "[header] How to add publications for download on your wordpress blog [title] Get the wordpress publication archive plug-in on your blog. [step] Go to plug-ins and click' install new'. Search wp publication archive and install it to your wp blog.", "endings": ["[title] After you install and activate the plug-in, add a publication. [step] On your side dashboard in your back office, you will find a new publications heading.", "Remember to click the ok button when installation is complete. Unplug the nook tv from under your wordpress library tab [title] Input your article.", "[title] Visit the wordpress guide for memoirs. [step] Get the site of the oxford | encyclopedia | menu | click' choose a publication'.", "[title] Take out the folder containing applicable content. [step] You can do so from your blog, from your zip file or if you have free, download any plugins for your blog."], "label": 0} +{"ctx": "[header] How to prepare skin before makeup [title] Purchase a facial cleanser that is right for your skin. [step] The cleanser should be alcohol-free and gentle. Though many products on the market offer miraculous results, they are often just hype.", "endings": ["Look for cleaners that have simple ingredients that won't damage your skin. [title] Choose a ph-balance that meets your needs.", "Generally, people with oily skin will have a' sweet' skin, however, gentle products can still help take the place of the harsher scrubs. Ideally, you should use a facial cleanser with : [substeps] Benzoyl peroxide or a cleanser with beta hydroxy acids.", "Read your label to find out exactly what products are alcohol-free. Talk to your doctor or dermatologist to purchase a facial cleanser that contains alcohol.", "Nor are they gentle enough to treat facial blemishes and acne. [substeps] While it might seem like it would be flattering to put a natural, unscented cleanser on your face, skipping the shower or a brush to scrub face is not as helpful."], "label": 0} +{"ctx": "A man in a hardhat and goggles stands in a tiled room talking then we see the man cutting tiles with tools. We see a man tiling and another man looking at blueprints. we", "endings": ["see the end screen and see a clock.", "watch them measure and then wax the tiles and continue to talk.", "see two men tiling the wall and floor in two different room.", "see a picture of the man and text on a wall."], "label": 2} +{"ctx": "[header] How to prevent dry skin as you age [title] Choose a natural cleanser. [step] Harsh soaps that contain alcohol, fragrances, deodorant and other chemical scan remove moisture from your skin so you should avoid them. Instead, choose a plant-oil based soap.", "endings": ["This will help keep hydrated and prevent breakouts. Some oils to look for are : [substeps] Jojoba oil aloe vera oil kaolin avocado oil chamomile essential oil [title] Opt for biotin.", "Look for a steam-based or vapor-based one, as these can be harsh enough to remove dead skin. [substeps] Get a make-up cleanser made for dry skin at a pharmacy or beauty salon.", "Many people with dry skin may not even consume any fruit-or-vegetable products. You can use a product from the market, or a selection of ingredients from organic or farmer's markets, which provide excellent, natural oils for your skin.", "Look for a soap that contains glycerin, jojoba oil, coconut oil or almond oil. These will clean your skin while adding much-needed moisture."], "label": 3} +{"ctx": "[header] How to study islam [title] Find out if there are any mosques in your area. [step] The mosque is the source of spiritual guidance, perfect for worship and seeking knowledge. [title] If there are, make an appointment to go to the mosque, and meet with the imam there.", "endings": ["[step] The imam will ask if you are ready for vaba so he will guide you through the lessons. [title] Find your favorite mantra that helps you focus while studying [title] When the imam says \" vaba, \" he will let you practice this chant twice a day.", "[step] Ask her some questions about the mosque, and is it a good one? [title] Go to the mosque in your town or city and talk to locals about it. [step] Be respectful to them, as om is not a universal thing.", "[step] She will guide you up to the mosque to ask about your interpretation of islam as a religion, and how you use it to guide others. [title] Be calm (don't panic, it is not your fault that you are being questioned) about your prospects.", "[step] He should provide you with plenty of information about islam. [title] Find out if there are any activities or courses happening soon."], "label": 3} +{"ctx": "The graphic \"ice cream eating competition\" appears on screen. Three people are eating ice cream out of cups with their fingers. the woman on the far end", "endings": ["finishes hers first, followed by the other two.", "of the table licks her spoon while balancing it in her mouth.", "looks down from her tablet.", "of the ice cream cup is licking the spoon, which is passed along with both kids putting the spoon into their mouth."], "label": 0} +{"ctx": "[header] How to make axe bombs [title] Buy a bottle of axe and the rest of your supplies (listed below). [step] Any axe aerosol spray will work, since it is flammable. [substeps] The bomb will work great with any fragrance.", "endings": ["But the stink will last a while, so pick the fragrance that you think is most offensive. Make sure you get a long neck lighter.", "This spray works well for cooking and dishwashing. [title] Put the axe in the bottle and slide the lid closed.", "Any fruit extract will work, but light green apricots are more suitable. [title] Cut the axe heads into stick shapes.", "Of course, it will not work with an especially sweet blend, however. [title] Put on safety clothing if you plan to use it for cooking."], "label": 0} +{"ctx": "[header] How to build leg muscles [title] Train two or three times a week. [step] Many people think that to build muscle you have to train every day, but that's not the case. Muscles get bigger when they get small \" breaks \" in training, and get stronger when they build up again during rest days.", "endings": ["[substeps] Try to make sessions slightly shorter each week. This can be anywhere from five to eight sessions.", "There are several ways to improve leg muscles : [substeps] Use a tape measure or pencil to measure the distance between your lower thighs and upper thighs. Line up the measuring tape and record the distance so you can accurately find the number of steps you need to put on each leg before starting to create a \" plan \".", "So don't exercise the same muscle groups two consecutive days. Rotate muscle groups so you're training your arms, back, chest, and other areas on the days you aren't working out your legs.", "[substeps] One study found that those who train three times a week increased leg strength and ultimately reduced the cost of physical activity as a result. If you lose a few pounds, you can increase the amount of you workout routine."], "label": 2} +{"ctx": "A man has climbed a large ladder outside. he", "endings": ["is using trimmers to cut and trim large trees.", "ropes and lures a cow into the open.", "is using it to pull himself up onto a platform where a car is parked.", "is life saving at the bottom of the ladder."], "label": 0} +{"ctx": "[header] How to deworm a kitten [title] Take your kitten to the vet. [step] The best way to deworm your kitten is to take them to the vet. Your vet will be able to diagnose the specific type of worm and give your kitten the proper treatment.", "endings": ["You may also be able to give your kitten homemade medicine, which cats believe is great for their health, but relieves the symptoms of disease as well. [substeps] Pet stores sell specially formulated medicine which your vet prescribes.", "They will likely give you a prescription for a variety of antibiotics and recommend methods for deworming bacteria. [substeps] Don't forget about removing all skin from kittens' ears and carefully grooming any major areas with a nylon pad and brush after some time.", "In general, your kitten should be dewormed at least every six months. [substeps] If your kitten is not able to eat its food, or you notice that its food intake changes, you should take it to the vet.", "[substeps] Even if you deworm your kittens at home to begin with, you need to take them to the vet by six months old to get a fecal test. If your kitten is still nursing from their mother, you should take the mother cat in to vet to get dewormed as well."], "label": 3} +{"ctx": "[header] How to become a legal guardian [title] Decide whether becoming a legal guardian is right for your situation. [step] Guardians are court-supervised caretakers for minors and incapacitated persons. Guardians are responsible for the well-being of their wards (the person for whom they are the guardian), and may also be responsible for handling the person's assets and finances.", "endings": ["[substeps] Say you and your spouse become court guardians. Both partners should also be qualified for legal guardianship.", "The guardian must periodically report to the court on the ward's status. Make sure that you are prepared to accept the responsibility of acting as a legal guardian.", "[substeps] Some states have also broken the statute of limitations for adopting legal guardianship. This means you may not have the time or abilities to take care of a person with mental or physical problems.", "[substeps] For example, a ward of a minor (less than 18 years of age) would qualify as legal guardian. A young minor (less than 24 months of age) would qualify under the amendment of the public guardianship act."], "label": 1} +{"ctx": "The man jumps over a truck and over a fence losing the cops. The man runs through a skate park down a city street and up stairs. the man", "endings": ["opens the bag and counts his cash.", "jumps over a barrier and falls the stairs.", "mounts a testing tube and glides down a hill and over a hula hoop.", "walks and plays in a park and plays flag on a boardwalk."], "label": 0} +{"ctx": "A couple of men are competiting in a pit outdoors. They stand on blocks of wood, using axes. they", "endings": ["knock nails and nails down on the ground.", "use an ax on the boxes.", "use the axes to chop the wood as quickly as possible.", "twist the axe by hand to better wrest it up."], "label": 2} +{"ctx": "[header] How to make your period eco friendly [title] Be open to trying something new. [step] It's different than what you're probably used to, but definitely worth it. One misconception is that reusable products are unclean and gross.", "endings": ["They actually have a lot of health benefits, like less risk of infections and toxic shock syndrome. It's fairly easy to clean them.", "A good rule of thumb is that you should use sanitary napkins or toilet paper for the most sanitary work. But, you have probably heard that using reusable containers and cans with glass tops are already good options for wearing underwear.", "When you put something in a relatively clean container, it necessarily washes out the germs. This doesn't help you in almost every situation, but it can help you during the first few days.", "First of all, they are often not sanitary and babies, women and children can sneeze and twitch. [title] Ask for a = next to replace your old one."], "label": 0} +{"ctx": "[header] How to wear hunter boots in winter [title] Go with a knee-high hunter boot for maximum protection. [step] Knee-high boots not only keep your feet dry but they also keep the bottoms of your pants from getting wet. These are the best options for winter footwear if you want to wear hunter boots.", "endings": ["[substeps] While you can also purchase ankle-length hunter boots, these will not protect your feet from the rain or snow as well as knee-high boots. [title] Choose dark colored boots in the winter.", "The most common type of hunter boot is the trench-shaped boot, which has a lightweight sole and no lacing. This makes it a great choice for winter footwear.", "A pant leg is a good option if you are only going to step on your feet a bit, as they are less likely to get wet, and your ankle boots will cushion your knees from the cold. [substeps] Wear hunter boots for most sports, including ice hockey and snow hockey.", "They are also especially good for usability during fast or rocky terrain. [title] Look for a sturdy boot if you plan to skate."], "label": 0} +{"ctx": "A group of men labor over an ice fishing hole using a fishing pole, a wire, and their hands to finally wrangle a fish from deep under the ice. a group of men", "endings": ["are standing over a small, round, hole in the ice.", "attempts to capture a fish while the usual drill is interspersed with views of other fish.", "fish from under the ice covered canoes, sawing and pushing the fish back to shore.", "reverse pull and a fish slips into the hole as ice fish grab it."], "label": 0} +{"ctx": "[header] How to get a haircut you will like [title] Get recommendations. [step] The best way to determine if a hair stylist is a good fit for your needs is to talk to clients who've worked with him or her. That means asking people with haircuts that you admire for stylist recommendations.", "endings": ["If a friend or family member always seems to have a really great cut, ask who styles their hair so you can consult the stylist. [substeps] You don't just have to ask people who you know for stylist recommendations.", "[substeps] If possible, talk to people who you respect personally. For example, if you admire someone at work who works with a certain brand, ask to speak to them for a few minutes to find out what they think of those qualities.", "People who know you and the stylists you know might be able to advise you. [substeps] Ask former hair salon and haircare professionals with hair styles you like and other stylist recommendations you have about getting a stylist.", "See their feedback to see if a stylist is right for you. [substeps] For instance, talk to john combs if you know this photographer you are talking with."], "label": 0} +{"ctx": "[header] How to run a laundromat [title] Clean the laundromat. [step] Some light cleaning may be necessary, such as emptying lint from lint screens in the dryers, emptying trash cans and washing tables used by customers to fold laundry. If your laundromat has a lavatory, you will also need to keep that in good order.", "endings": ["[substeps] Wash all pre-washed and re-washed clothing according to season or day. Wash dirty clothing according to what season or the purpose of your laundromat.", "[substeps] Resetting the toilet by setting it in the appropriate position and then running water over it. If you also wish to move the wash table back to their normal position and remove the blind fold, wash that.", "[title] Perform regular maintenance on washers and dryers. [step] You will have to maintain the washer and dryer according to the type of machine.", "[title] Go to the laundromat's waste disposal. [step] You can use the common household sink relocation system to clean especially dirty laundry."], "label": 2} +{"ctx": "[header] How to do doll like makeup [title] Apply foundation. [step] Use your finger, a blending sponge, or a brush to apply liquid foundation evenly all over the skin of your face in light, circular dabbing motions. [substeps] Use foundation that matches your skin tone, or is just one shade lighter.", "endings": ["[title] Apply one layer of eyeshadow. [step] Use a large makeup brush to apply one layer of eyeshadow.", "[title] Blend it in with a makeup sponge. [step] Use a blending sponge to blend off the excess foundation.", "Allow foundation to dry before applying the fake makeup. Apply blush to your cheekbones, ears, nose and mouth.", "Feel free to apply foundation makeup a little thicker than you would normally, as the doll look features a porcelain or plastic face that is unlike natural skin. Add concealer to any blemishes, red patches, or dark circles under the eyes so that your face color is completely even."], "label": 3} +{"ctx": "This woman is shown putting on her makeup while looking in the mirror. first she", "endings": ["begins to apply some more makeup and make eye shadow to her lashes to cover the marks.", "makes her eyes up and winks at the camera.", "puts foundation on her cheeks and then she places lip sticks over it.", "takes her hair out and puts it in a ponytail."], "label": 1} +{"ctx": "[header] How to set up a pllc for a legal practice [title] Choose your state of incorporation. [step] For most people, this will be a simple decision, based on where you are licensed and where you live. But if you or any of your partners are admitted to the bar in multiple states, you may choose to incorporate somewhere else.", "endings": ["The laws that govern your state will be different in each state. Unfortunately, you cannot know what you may also need to prove such a decision.", "Legal representation in the state of care will depend on which state you live in. [substeps] In ohio, for example, you can forego a professional legal representation for sole proprietorships.", "That area may be a better atmosphere if your clients have joint legal rights, which will help your clients avoid legal dispute in your practicing practice. [substeps] Although there are many different forms, most states require that you register with the secretary of state or.", "Check with the secretary of state's office in any state where you are eligible. [substeps] You may want to base your decision on the ease of incorporating, or on the fees or taxes associated with operating a pllc in that state."], "label": 3} +{"ctx": "[header] How to handle insecurity after your spouse cheats [title] Work on your self-esteem. [step] Realize that your spouse's infidelity does not mean you deserve to be cheated on or disrespected. You deserve dignity and fairness in your relationships, and it's not your fault that your spouse decided to stray behind your back.", "endings": ["You deserve love and compassion in your relationships, but your spouse also should be aware of your insecurities as you work to remedy your issues. [substeps] Everyone has insecurities, so you're more likely to be worse off if you're not.", "[substeps] Build yourself back up by reminding yourself of your positive qualities and achievements. Try making a list of all of your positive qualities.", "Despite your jealousy and feelings of insecurity, remind yourself that your spouse is doing the best he can for you. Enjoy the strong bonds and support you have with your spouse, and try to enjoy your life.", "Instead, strive to look on your self-worth as a lighter weight than your spouse and realize that they made the best decision possible. [substeps] Forgive yourself for your behavior and take steps to plan your next move."], "label": 1} +{"ctx": "The words \"dathan ritzenhein nyc marathon 2010\" appear on a black screen. still", "endings": ["images of pyramids in egypt are shown and then the video exposes the pyramids returning to the pyramids and returning back to the objects and pyramids they were a part of while the credits roll.", "and clips of a man running marathons are shown with overlaid graphics showing angles.", "picture, azog discus, with a fence bordering the screen.", "images of athletes from different sports appear as a result as they jet f hand through elaborate stunts and techniques."], "label": 1} +{"ctx": "[header] How to clean mold from leather [title] Apply a layer of petroleum jelly. [step] Test the effect of the petroleum jelly on a small area that won't be noticeable. Apply the petroleum jelly on the moldy areas creating only a thin layer.", "endings": ["[substeps] The jelly can also be rub on with a clean cloth or simply applied onto painted leather. Avoid rubbing petroleum jelly on leather, as it will also cause the paintwork to flake off.", "If the mold works quickly, then the petroleum jelly will remain on the entire jacket. [title] Press on mold with cotton balls to make gentle circular motions.", "[substeps] Avoid applying petroleum jelly straight to your leather. This may damage the fabric or cause mildew.", "You may also use a suede cleaner but read the label of the cleaning product to ensure that it works on mold and mildew. [substeps] Nubuck can easily change colour so make sure the cleaning product you use has been tested before applying."], "label": 3} +{"ctx": "A woman is standing at a table with a pile of scissors and supplies. she", "endings": ["then begins knifing her hair.", "demonstrates how to cut cellophane and wrap it around a gift.", "proudly shows off her cut nails.", "is demonstrating how to play the scissors against her nails."], "label": 1} +{"ctx": "[header] How to apply blush on oval faces [title] Pick the right brush. [step] There are a number of different brushes you can use to apply blush, and the one you choose depends on the result you want to achieve. For instance, you won't use the same brush to achieve a heavier and more noticeable blush job than if you want to go for a soft and natural look.", "endings": ["Which brush you use depends largely on the object you are applying your blush to. [substeps] Look for a brush that is able to extend past the brow bone.", "[substeps] For an oval face, use a brush on the forehead and directly under your eyebrows, following the contours. For smaller, heavier faces, look for a medium or fluffy brush.", "[substeps] Choose a precision brush if you want to apply more color and a heavier coat. Choose and angled brush for a lighter and softer coat.", "[substeps] When choosing a brush, note that if you would use the same brush on certain contouring, it would be more flattering to use it for your oval face. Still, you should generally use blush sparingly."], "label": 2} +{"ctx": "[header] How to find a child given up for adoption [title] Gather necessary information. [step] You should gather as much information about the child as you can. This information will be useful if you need to petition a court to unseal adoption records or if you need to search for the child using the internet.", "endings": ["[substeps] If you have an attorney, you can get their help. You can call 1-800-367-7092.", "Among the information you should try to get : [substeps] The name of the agency you went through (if you worked with an adoption agency). The location (state and county) where the adoption took place.", "[substeps] A court may have a \" fill in the blank \" form available for you to use to open a legal document. Obviously, you will be giving the child up for adoption, so ask a friend or family member to assist you and simply write down any helpful information.", "[substeps] You will need plenty of affidavits or other documents to support your search. You should gather these documents when you are not ready to begin your search."], "label": 1} +{"ctx": "[header] How to dress like a lawyer [title] Think about where you live. [step] There are big differences in dress codes and expectations depending on where you live. Different regions of the united states have different expectations and dress codes.", "endings": ["If the person who hired you has expectations of your ability to dress professionally, you need to find ways to enact that expectation. [substeps] A candidate shouldn't wear inappropriate clothes.", "You will need to talk with an accountant or search online for some firsthand knowledge about the differences in culture and dress codes. [title] Make sure to wear skin care products and household products.", "Before you go to work on day one, try to understand the norms where you are and follow them. If you are not sure, be cautious and dress formally and conservatively.", "Pay special attention to which department you are being called to respect rules when it comes to changing into a suit. [substeps] Black and navy suits and white pleated shirts are the exceptions."], "label": 2} +{"ctx": "A green title page appears, with words showing that the video will be of a tenor saxophone player as well as the website to receive to lessons. a black male", "endings": ["picks up the saxophone from a table then walks away, and a man gets a white blunts and steps on a red pad, should a baton break, the guy releases the handle so it falls on the ground.", "singer tweets again in a film about a saxophone player before the video ends.", "then appears with a green sweater and black hat playing the sax.", "is standing in an american flag waving and introducing the practice of a saxophone in his front yard."], "label": 2} +{"ctx": "As he does this he explains his methods. Using the same rag he moves to the other pane to clean the frame. finally", "endings": [", he turns around and begins rubbing the umbrella on the window.", ", the water sports appears and he sprays it with water before shooting his glass and setting it in the trashcan.", "he cuts the tape on he window and gets a custom paste and paints the window with it.", ", he ends by scrubbing the bottom right corner of the door."], "label": 3} +{"ctx": "A shot is seen of two men performing an arm wrestling match together while the audience cheers. one man", "endings": ["wins by curlew flips and the audience applauds.", "beats the other and the two hold up their arms to cheer and everybody celebrates.", "holds the other man's other arm while the competitors continue fighting around each other.", "is then shown put down and the third man succeeds in the match."], "label": 1} +{"ctx": "A weight lifter is bend to raise a weight sitting on the floor wile a woman watch him. then", "endings": [", the man lifting weight jumps in air while the woman watch him, then he drops the weight on the floor.", "he lifts the weight till a third man prepares for weightlifting.", ", the man raises the weight to rest on the shoulders, and then above the head.", ", the man lift the weight, and then the woman talks."], "label": 2} +{"ctx": "A couple of boys are riding skateboards. They watch another couple of men playing basketball. they", "endings": ["pay a girl at the skate park a big gift, then skate into a party.", "argue, then the basketball players leave.", "enter a yellow gated court where two teams are being played.", "go back and forth on the steps in the gym."], "label": 1} +{"ctx": "[header] How to plan your bachelorette party drinking games [title] Don't hold back with this on. [step] The key of this drinking game is to get as personal as possible. This bachelorette game is really fun to play when everyone is tipsy! [title] Each of the players take a turn asking a specific chosen player a personal question.", "endings": ["[step] You can create the game completely on facebook and in one very simple by asking the player who asked the guest to \" have fun! \", and do how the guests respond. [title] Have a couple of gals help you.", "[title] Do this for two rounds rotating clockwise. [title] The player being questioned, answers \" not in my pants \" to every question asked and must not laugh, smile, or grin until their turn is over.", "[step] They can ask several of the same questions, or they can gauge each person's sobriety. You may find yourself cheering along with the others, or listening to your reflection in the mirror.", "[step] If a player doesn't know an answer or a dish of strippers you will attract stronger loser-girls and girls around this stage. [title] Decide on a date for the bachelorette party."], "label": 1} +{"ctx": "After cooling the dough, she takes it out and cuts them into rectangular pieces. She places the raw cookie on a cookie sheet and bakes them. when the cookies", "endings": ["are done, she takes a plate and runs them in water.", "are done baking, she places them in an airtight plastic container for storing for future consumption.", "are finished, white letters indicate that they are a gift gift from ms who is helping and sending them to the shop along with other gift and supplies.", "are done, she removes them into the oven."], "label": 1} +{"ctx": "[header] How to post to a facebook group on pc or mac [title] Go to https: // www.facebook.com in a web browser. [step] You can use any web browser, such as chrome or safari, to access facebook. If you're not already signed in, sign in now.", "endings": ["[title] Click on the downward-facing arrow in the top right corner of the screen. [step] It's at the top-right corner of the screen.", "[title] Click your profile picture at the top-right corner of the page. [step] You will see your profile picture in the upper-right corner of the page.", "[title] Click a group to open the group's menu. [step] Click the group on the right sidebar, or the group's upper menu of options.", "[substeps] You must already be a member of a group to post to it on your computer. See join groups on facebook to learn how to join a group."], "label": 3} +{"ctx": "[header] How to fix common smokey eye mistakes [title] Apply a makeup primer to your lids before beginning. [step] This is a step that is often skipped, but it can make all the difference in your smoky eye. Makeup primer creates a smooth, even base for the eyeshadow.", "endings": ["It also helps the primer hold and last longer. [title] Apply a little mascara to your eyelashes before applying your eyeshadow.", "To apply makeup primer, start from the lower eyelid and go all the way down to the bottom eyelid. [substeps] If you do not have a primer, there are several types of makeup primer that are available: non-latex, liquid, foam, rubber, cotton and mica based.", "[substeps] Fill in your lids with your concealer to help make them look like they've been sprayed with a primer. This will also help to keep your eyeshadow from weighing down your eye shadow in a pinch, which may be combined with heavy eyeliner eyeliner.", "It evens out imperfections in your skin while giving makeup something to really adhere to. It helps prevent creasing, and it helps keep your eyeshadow exactly where you want it."], "label": 3} +{"ctx": "[header] How to deal with a fear of surgery [title] Learn about your procedure. [step] The unknown often causes fear. Educating yourself about your procedure is an important first step in overcoming your fear of surgery.", "endings": ["Finding the right person to encourage you to do it for a reason can be a rewarding experience for you and will increase your confidence when the time comes. Even for a small surgery, it is safe to think about it.", "Remember that most people have their doctor determine their md status. [substeps] Do not assume that you always have surgery on your legs.", "You can do this by reading relevant material from reputable sources both on and offline, and-most importantly-talking with your surgeon about your specific surgical procedure. You could also talk to others who have had similar or identical surgeries as the one you'll have.", "[substeps] Learn everything you can about your procedure (about the operation procedure and other types of surgery). If you don't already know, some types of family members, patients or hospitals may understand you better if you do more research."], "label": 2} +{"ctx": "[header] How to prevent uti during pregnancy [title] Stay hydrated by drinking plenty of fluids daily. [step] Water can help flush bacteria from your system, preventing new infections and perhaps even flushing the beginnings of an infection from your system. [substeps] Drink six to eight 8-ounce glasses (1.4 to 2 liters) of water every day.", "endings": ["Water also helps flush toxins from your system, including histamines and peptides, as well as unwanted bacteria and diseases like tumors. [title] Do not use mucotropin as an alternative to prescription medications.", "Even the gentlest drinks will help you hydrate. Large children and adults should limit the amount of water they consume every day and, if possible, drink as little as one to three liters (1.4 to 1.5 l) of water daily.", "Consider adding lemon to your water to increase the acidity of your urine and fight bacterial growth. Drink unsweetened cranberry juice daily.", "There is no particular minimum amount of water you should drink while pregnant, but eight glasses (1.2 liters) of water per day is a good starting point. [title] Get at least 6 hours per night of sleep."], "label": 2} +{"ctx": "[header] How to use familysearch (general public ) [title] Go to familysearch. Org. [step] Click on link or type into your web browser. [title] Sign in.", "endings": ["[step] Enter your email address (if you have one) and password into the provided fields, and click on the \" sign in \" button to proceed. If you already have a site listed, click on the link on the page titled \" sign in \" below your familysearch url.", "[step] Click the login button to proceed. [title] Under the \" search history and trends \" field, click on the link or sign in with your email address.", "[step] You will be asked if you have your birth certificate or an ein. Click on \" i do not have an ein \" to create your home page.", "[step] If you have a familysearch account, log in. If not, click \" join for free \" at the top right of the screen."], "label": 3} +{"ctx": "[header] How to look gorgeous as a heavily obese girl [title] Play up your upper body if you're pear-shaped. [step] By figuring out your proportions, you can more easily choose clothes that will really show off your frame. If you're pear-shaped, you carry more weight around your butt, hips, and thighs.", "endings": ["Consider going for dresses with cropped tops if you want your body to be topless without having to worry about fullness. [substeps] For women, stick with jeans, crop tops, or knee-high tops.", "[substeps] Supporting your shoulders with an apple shaped neck makes all the difference. This is especially important if you're a larger person with a wider body.", "Because your top half is smaller, you want to dress to create balance between the two halves. Avoid super baggy clothing on your bottom half, as that can overwhelm this curvaceous section.", "This will give you a more toned hourglass figure. [substeps] Hourglass figures have a narrow midsection and narrow waists, making them particularly noticeable."], "label": 2} +{"ctx": "A white bmw 3 series is in a garage being cleaned by two men wearing safety jackets. once the front", "endings": ["of the car is cleaned the men put the back of the car in the back of the van could be seen in the garage.", "is cleaned, the men move towards the back spraying the vehicle and come back to spray the rim and go back to the trunk to get all of the spots.", "cover is lifted, the rear plate of the car is covered in white mud and a red bucket is shining away.", "tires are taken off, the tires get stuck on parts of the car and starts to move."], "label": 1} +{"ctx": "A man is standing in a room talking. He lays down on his back and does crunches. he", "endings": ["backs up when he is done and laughs at the camera.", "is then seen riding a bike in several clips.", "finishes crunches and lies down again.", "stands back up and continues talking."], "label": 3} +{"ctx": "There two men dressed scottish kilts and attire standing in the courtyard. One of the men is playing the bagpipes and the other is playing the drums. a woman tourist", "endings": ["pass behind the men in the courtyard, and she put her hands up as if in prayer.", "walks past them as they continue to play.", "is also bagging and carrying boxes of pastries.", "walks by the pair and speaks to them."], "label": 1} +{"ctx": "[header] How to make your own nail polish color [title] Select eyeshadow in the color of your choice. [step] Pick eyeshadow that you don't plan to use again. You can make nail polish from any color eyeshadow you want.", "endings": ["Some eyeshadow colors you could buy are: lime green, tea tree green, plumb blue or lavender. [substeps] Try using orange eyeshadow first and green shadow next.", "[substeps] Get eyeshadow that you know is a good, natural color. A typical color for nail polish is dark brown or dark green.", "You could even mix a few eyeshadow colors together to create your own custom shade. [title] Crush the eyeshadow in a ziploc bag.", "For example, go to target or office supply stores for eyeshadow. [substeps] It's a good idea to experiment with different eyeshadow colors to get what works for you."], "label": 2} +{"ctx": "[header] How to look good when you're sick [title] Splash cold water on your face. [step] When you are sick, you look tired and weak. Splashing cold water on your face will help close your pores and make you appear less tired.", "endings": ["Prepare yourself by splashing cold water on your face before you get out of the bathtub. [title] Rub a little lip balm over the cheek bones.", "Bottled tap water works best, though you could skip this if you prefer to keep your skin skin smooth and dry. [substeps] Don't use warm water or cold, such as bottled tap water, as it can be dry.", "It will also leave you feeling refreshed. [title] Apply some tinted lipbalm or blush to give yourself a vibrant, healthy look.", "Fill a pot or bucket with hot water. Add about half a cup of ice to the water."], "label": 2} +{"ctx": "[header] How to have smooth and silky hair [title] Wash your hair a few times a week instead of every day. [step] In order for your hair to stay soft and smooth, it needs the natural conditioning of sebum, the oil that your scalp produces to keep your hair strong. If you wash your hair every day, you rinse away this nourishing oil, leaving your strands feeling dry and coarse instead of smooth and silky.", "endings": ["[substeps] When you shampoo and condition your hair, work it through in small, multi-strand sections with your fingers. Use a texturizing spray each time.", "[substeps] Instead of shampoo, use conditioner. You can also use a loofah for this purpose.", "If you skip washing your hair, you won't be able to maintain that smooth and silky hair. [title] Follow what proper shampoo and conditioner you apply to your hair.", "[substeps] Find the washing routine that's right for you. Some people do it 2 or 3 times a week, while others wash every other day if their hair is especially oily."], "label": 3} +{"ctx": "[header] How to calculate alaska unemployment [title] Make sure you are eligible to collect alaska unemployment benefits. [substeps] Check whether your employer was subject to unemployment insurance laws. If so, you participated in \" covered employment.", "endings": ["\" if you engaged in unpaid work for less than the minimum wage, then you can collect $200 , 000 and it is less than 2000 miles (115 km) from your home. You also must notify the state government, which will process your charge.", "\" if you worked as a contract or seasonal employee, you might not have been covered. If your employer is registered with the alaska department of labor, you are likely covered.", "\" if your employer told you not to do so, then the period after qualifying for unemployment insurance benefits will be considered \" covered by the statute of limitations. \" your employer must have an uncovered status for you to collect enough unemployment benefits to cover the costs of getting a car, rent, and transportation expenses covered by the statute of limitations and monthly payments.", "\" those laws violate their federal and state regulation with least one qualification. You are not eligible to collect unemployment benefits through a federal agency agency."], "label": 1} +{"ctx": "A woman is standing on an elliptical machine. she", "endings": ["pushed the red button.", "- she is doing rows of pumps in the gym.", "starts working out on the machine.", "pushes the chair back and starts doing exercise on it."], "label": 2} +{"ctx": "[header] How to take your hairstyle from day to night [title] Dampen your hair. [step] Creating waves from a bun is a great option for long hair. When you want to use a bun to create waves in your hair, it's best to start with at least partially damp hair.", "endings": ["So before you start, use a towel to blot at the spot you want to put the hair. [substeps] A good rule of thumb is to dry your hair with a towel before putting it in your bun.", "If you're washing your hair in the morning, blow or air dry it halfway before creating the bun. If you don't plan to wash your hair, lightly mist it with a spray bottle filled with water.", "[substeps] Curly hair will look effortless and frizzier without a damp head because it's smooth and shiny. If your hair isn't as dry as you want it, don't go crazy.", "If you want to leave it down overnight, blow dry it. [substeps] A hairdryer usually works best."], "label": 1} +{"ctx": "[header] How to loosen and break pu erh tea [title] Find a source for it. [step] You don't want to start in the middle of the brick, it just isn't going to work for you. You need to stick the needle in and find a place where the needle goes in far enough.", "endings": ["Make the needle out of something or a brick, so that you can choose a place to puncture the outside of the stone. [substeps] This will make it easier for you to pierce the stone through.", "Once you find a place where you can pry it, it gets really easy from there, here are a few tips to helping ensure that you pry your tea correctly every time. [title] When you start breaking the tea, you need to start in a corner.", "It shouldn't go deep enough in, that is, not as deep in a brick as you want it to be. Another unreliable method is to use a modeling needle.", "Step on it, to see if it works. If not, just go put the needle in and try a little deeper."], "label": 1} +{"ctx": "[header] How to use leftover baby food [title] Make it into a spread. [step] Using a butter knife or spoon, remove baby food from the jar and spread it on a piece of toast, bagel, or cracker. Single-fruit baby foods, such as apricot and banana, work particularly well as spreads.", "endings": ["[title] Sprinkle the leftover baby food over the top. [step] Take out the two halves of toast, and make a right-angle side.", "The natural sugar content is high enough to mimic a store bought jam and the consistency is thick enough to stay on the top of bread without being totally absorbed. [substeps] This also makes a great toddler snack.", "Toast the toast for an added warming effect. [title] Spread baby food on small sandwiches and side dishes.", "Babies, especially toddlers, can use leftover baby food in place of fresh milk. [title] Feed your baby the appropriate amount of baby food."], "label": 1} +{"ctx": "[header] How to download bbm for the iphone [title] Launch the app store application on your iphone. [title] Search for the bbm application using search terms such as \" bbm, \" or \" blackberry messenger. [title] Select the option to download the bbm app to your iphone.", "endings": ["[title] Wait for a message to appear on the screen instructing you to perform the files installation or perform the download, which could take up to a few minutes. [title] Press the \" admins \" app from the menu that appears on your screen to begin the installation.", "[step] You will be prompted for your name and the device number. [title] Click the \" download \" button when the download is complete.", "[step] At this time, the bbm app is free of charge for ios users. [title] Wait for the bbm app to finish downloading to your device.", "[title] Confirm that you downloaded the app before you finalize the installation. [title] Tap the \" install \" button to upload the application to your device."], "label": 2} +{"ctx": "[header] How to know when expressed breast milk is spoiled [title] Don't be afraid of odd colors and textures. [step] It is common for the color and the texture of your milk to change. Much of this reflects the changing dietary needs of your baby.", "endings": ["When it comes to nourish your baby, coloring and milk production are important. Subtly try to mask these differences with colored milk.", "Because breast milk contains caffeine, it causes a change in mood, mental or physical health. [substeps] If you observe your baby being excited or anxious in the morning or at night, it may be spoiled if it feels spoiled to you.", "Choosing a variety of colors will also help to grow your baby. In larger purees, color and textures can be shifted to a different quality (such as your baby's lunchbox).", "Appearance is no way to judge the freshness of milk. [substeps] It is common for the color of milk to change during the course of storage or even a single feeding."], "label": 3} +{"ctx": "A man is first seen speaking to the camera with text questions being asked to him. He is then seen putting a cleaner on his teeth and taking a bit of food. he", "endings": ["scrubs the dish vigorously in an attempt to get rid of the food in there.", "continues speaking to the camera while occasionally eating food.", "then smokes some smoke while looking off wildly into the distance.", "eventually is seen applying a gel and being shaved."], "label": 1} +{"ctx": "[header] How to stop peeling fingernail polish off [title] Remind yourself you want healthy nails. [step] One of the worst things you can do to your nail bed is peel the polish off of it. The reason behind this is simple: you peel off a layer of your nail along with the polish.", "endings": ["If you can peel it off, you've put too much pressure on your fingernail polish. Removing it will not make any difference on your nail's color, and it may ruin the soft, waxy shape your nail was left with.", "And if you peel it off, then the stain will fade and your nail will become a different shape. A more gradual approach has been introduced to some nail beds because of adult supervision.", "While peeling it off is harmless, as it burns off, peeling it off could lead to cracks, cuts, and ingrown nails. You can create new, healthy polish if you keep it on your nails longer, but be aware that it could cause scarring.", "If you're wearing gel polish, you can pull several layers of nail off, because gel is more adhesive than regular polish. [substeps] Remember that it can take six months to a year for nails to grow out, after being badly damaged."], "label": 3} +{"ctx": "[header] How to wear a midi skirt [title] Select a skirt that falls at mid-calf. [step] A midi skirt is typically supposed to be worn at mid-calf-length. That is where the name \" midi skirt \" originates from.", "endings": ["[title] Dress your bottom in a mid-calf skirt to elongate your legs. [step] If you are not blessed with very defined legs, hemlines are generally subtle and worn low at your legs.", "This skirt has a small, bell-shaped bottom. While midi bottoms tend to rise below the knee, they have been shown to look better on the hips.", "Depending on your height, it can be difficult to find a skirt that comes down to that length. If that's the case, you can choose to wear it shorter or get it altered.", "Regular midi skirts are best for this as they are pretty informal and casual while still being sturdy and practical. Midi skirts usually go to mid-calf-level unless you are looking to move around a lot and don't usually have to worry about it being too short."], "label": 2} +{"ctx": "[header] How to get roses cheap [title] Look for online retailers that sell wholesale roses. [step] Since there are many stores that sell cheap roses at wholesale prices, pick 5 stores and narrow your choices by reading customer feedback and testimonials about them at reputable websites that review online stores. You can also narrow your choices based on the prices offered.", "endings": ["Internet auction websites such as ebay should have listings of wholesale roses. [substeps] To narrow down a search to a particular store, click your preferred website, \" purchasing preferences \" and search \" wholesale roses.", "[title] Check the \" about us \" section listed on the homepage of the website. [step] See how long the website has been selling wholesale roses.", "[substeps] If you buy roses at wholesale prices, your number of purchases will be much larger than if you buy wholesale varieties. Or, you can get an wholesale rose that has already been sold.", "[substeps] Lipstik and weepbrain are two of the various sellers that sell roses at wholesale prices. Pair these with craft stores and local sporting goods stores."], "label": 1} +{"ctx": "[header] How to apply matte liquid lipstick [title] Exfoliate your lips. [step] It's essential to start with smooth lips when you plan to wear a matte lipstick. You can buy a lip scrub, make your own, or simply use a washcloth or toothbrush to slough off dry or dead skin.", "endings": ["Apply the balm after a few minutes. The lip scrub will help remove dead skin cells from your lips if you have any on.", "[substeps] The softer you are with your lips, the lipstick will last longer, and the longer it will last, the stronger your lipstick will be. If you haven't exfoliated your lips before, there's not much use in trying.", "Pat your lips dry with a towel when you're done. [substeps] For a homemade lip scrub, mix together 1 tablespoon (15 ml) of honey and 1 tablespoon (12.", "Consider having to exfoliate before you apply matte color! [substeps] Lip scrubs can be purchased at most drugstores or beauty-supply stores. Do not exfoliate too much or apply more than 115-120 milligrams per day! [title] Avoid moisturizing."], "label": 2} +{"ctx": "[header] How to deal with braces [title] Learn to brush your teeth carefully. [step] Brushing your teeth changes when you have braces. After getting your braces put on, learn to brush your teeth carefully.", "endings": ["Brushing your teeth for a full 60 seconds every three weeks will help prevent fluoride build up in your mouth, tooth enamel, and gum. However, brushing regularly can also put you at risk for serious health issues, especially gingivitis, peptic ulcers, and tooth disease.", "Brush your teeth for a full 20 seconds, including the back teeth, from front to back, to get rid of any plaque and bits of debris. Brush carefully and in circular motions to get rid of sticky or foreign objects.", "This will help you maintain the health of your teeth and teeth, as well as prevent other complications such as dental issues like gingivitis and tumors. [substeps] Brushing your teeth for about two minutes every three months can help ensure a healthy mouth and short term dental health.", "Talk to your orthodontist about how to best brush your teeth and follow their instructions carefully. With braces, you brush each tooth carefully from the top to the bottom."], "label": 3} +{"ctx": "[header] How to stop your child from wetting the bed [title] Wait until your child is ready. [step] Your child may have mastered staying dry during the day, but that does not mean that he or she will be ready to stay dry at night. For most children, it's fine to keep them in diapers (or pull-up style disposable underwear) until they start waking up dry most mornings.", "endings": ["[substeps] Understand that developmentally, each child is different. Some children can stay dry at night during the toddler years; others are still having accidents at age six or beyond.", "[substeps] Schedule an estimated amount of time for each child you keep dry. It would be a good idea to see an attendant or masseuse to help them learn to stay dry.", "Wait until it's at least bright enough to light the room, if possible. [title] Light up your child's room where you will see them before bed.", "[title] Try changing diapers only in the evening. [step] Instead of changing your children at night, try changing them at the same time each day."], "label": 0} +{"ctx": "[header] How to look taller [title] Opt for flared jeans. [step] If you don't mind the flare style, look for jeans with a flare around the leg rather than straight-leg varieties. This draws attention to your bottom half, making your legs look longer.", "endings": ["[substeps] Make sure that the flare jeans do not drag on the floor as this can make you look shorter rather than taller. [title] Go for high-wasted, form-fitting dresses.", "Cropped jeans draw attention to your waist, and you can look slimmer by wearing your jeans less baggy. [substeps] Go for a pair of jeans that are cut at the waist as well, so they will be easier to manage.", "Plus, flares have a tendency to emphasize the legs and make them look narrower, which isn't attractive to most women, but can be flattering. [substeps] For the person with slimmer legs, try shorts with flared, flared legs, or skinny jeans instead of a fitted body dress.", "Enhancing flare will also emphasize your natural curves instead of adding to your height, since it will draw attention to your slender hips. [substeps] Go for leggings as opposed to hipster jeans."], "label": 0} +{"ctx": "[header] How to lighten your hair [title] Mix equal amounts of lemon juice and water. [step] Lemon is a classic natural lightening agent for hair. While it's natural, it can still dry out your hair so it's important to dilute it.", "endings": ["If your hair is greasy or frizzy with breakage, try combining the combination with tomato juice or olive oil. [substeps] You can find olive oil and lemon juice at most beauty salons.", "Combine 1 part lemon juice with 1 part water to reduce its acidity, and pour it into a spray bottle. [substeps] For the best results, use fresh, organic lemon juice.", "Place the lemon juice solution in a spray bottle, and spray it onto your hair if you have access to a diffuser. [substeps] If you want your hair to be silk-like, sprinkle lemon juice into a spray bottle and spray it onto your hair instead of using a hand held diffuser.", "Mix 1/4 cup (60 ml) lemon juice and 1 tablespoon (15 ml) salt in a small bowl. Use your fingers to mix the ingredients together until the mixture is completely smooth and no streaks remain."], "label": 1} +{"ctx": "[header] How to choose an area rug [title] Measure the room. [step] Area rugs come in all different sizes, from welcome-mat to 15' by 15' (450 by 450 cm). It's important to make sure the rug will fit into the room it graces.", "endings": ["Ideally, guests should not spend more than 1 hour looking at the rug. If a rug is part of an entire home, such as a bedroom, it may also get lumpy in a pinch.", "However, by the same token, don't skimp on size. Many rooms that would look great with an 8' by 10' (243 cm by 305 cm) rug look strange with a 6' by 9' (90 by 135 cm) rug, for instance.", "When determining the rug size, consider factors like : [substeps] How large is the area rug? You should not wrap a rug in a length you can wrap around a living room table. Alternatively, you might consider dividing larger rugs into a double room for rooms that may not effectively be next to each other.", "Remove any excess furniture to make room for the rug. [substeps] Check the condition of the rug before deciding how you want it to be displayed."], "label": 1} +{"ctx": "[header] How to wear a pashmina [title] Wrap your pashmina loosely around your neck. [step] Unfold your scarf so that all of the material is exposed. Then, wrap the scarf around your neck once.", "endings": ["[title] Unravel your pashmina. [step] Next, you'll need to unravel the ends of the scarf and use your hands to take apart your subconscious pashmina.", "[title] Place your right hand under your left chest and your left hand over your stomach. [step] If your right hand is still clasped after wrapping your pashmina, it should be cupped over your left shoulder, but not pushed up.", "The longer you wrap the scarf around your neck, the more cohesive it will be. Make sure that the scarf is snug enough that none of the remaining material will tear or rip.", "Tighten the loop around your neck, or leave it loose and hanging near your bust. You can choose to have the tails hanging in either the front or around your back."], "label": 3} +{"ctx": "A blonde woman is speaking to a camera while wearing a lab coat. she", "endings": ["begins piercing her lip with a piercing system.", "applies a cloth to another woman's face, followed by a fluid.", "picks up a ball and throws it towards a game of pool.", "starts using a peeler to scrape the tile off of a wall."], "label": 1} +{"ctx": "Two girls are seen speaking and waving to the camera that lead into them performing several jumps and tricks on a mat. the girls", "endings": ["have a drink and continue flipping around and ends with one girl standing in the end and another walking away.", "continue performing and give one another high fives with one stopping to pick up other's hands.", "continue taking turns flipping all around the mat in the area as well as speaking to the camera and waving.", "flip out and jump rope using various hands gestures and moving their bodies around each other."], "label": 2} +{"ctx": "[header] How to make a no sew fleece scarf [title] Buy at least 1/4 yard (22.86 cm) of the fabric of your choice. [step] Fleece comes in a variety of thicknesses and patterns. [substeps] Polar fleece comes in a number of thicknesses, including micro , 100 , 200 and 300.", "endings": ["Both polar and 100 are a good choice to create your scarf. Regardless of the difficulty, if you don't feel comfortable using a third party design maker, the stuff makes the most sense for you.", "The thicker the fleece is, the less flexible it will be. [title] Lay your fabric on a large table.", "[title] Fold the scarf in half lengthwise. [step] Using the bottom edge of your long-sleeved shirt and a table knife, cut a piece of your long-sleeved shirt in half so that it is twice the length of the scarf.", "Universal fleece comes in 29 different thicknesses. You will decide if you want to give it a homogeneous look, or whether you want it to be a uniform look."], "label": 1} +{"ctx": "A man cranks his lawn on. the man", "endings": ["changes his yard and puts floor tiles on the floor.", "starts to mow his lawn.", "'s lawn is shown in one spot.", "rakes in the dead leaves along the ground."], "label": 1} +{"ctx": "[header] How to make a burger and fries meal [title] Run the potatoes under water. [step] Get all the dirt off the potato. [title] Peel the potato.", "endings": ["[step] With a metal spoon, remove the peel. You need to remove any stiff outer skin that is in the potato.", "[step] Remove all the skin from the potato, using a knife or peeler, depending on what you prefer. [title] Cut the potatoes into the shape of fries.", "[step] Under the water, press the potato down. This should have removed most of the water.", "[step] Open it and drain out the water. Place the potato portion of the dish directly in the refrigerator until chilled."], "label": 1} +{"ctx": "[header] How to make a candle with essential oils [title] Cover your work surface with newspaper. [step] Wax splatters are difficult to clean, and even if you manage to scrape them off, there may still be some residue. Make cleaning easier later on by covering your counter with some newspaper.", "endings": ["[substeps] You can also use other protective coverings, such as plastic bags, paper bags, or plastic tablecloths. [title] Choose a glass or metal container for your candle.", "[title] Set the candle on a flat surface. [step] Place the candle so the wick is above the surface.", "[title] Place your candle in the wax pot. [step] Most wax candles make a small pot just for creating cover, but many do not.", "Keep the newspaper in a zipper safe bag. [substeps] If you want to avoid wax splatters on your work surface, you can also use a tissue paper bag."], "label": 0} +{"ctx": "A man runs up to a beam and jumps over it several times. he", "endings": ["walks back around and stands on a pair of stilts before jumping over the beam two times.", "then snowboards down the mountain as people watch and applaud.", "makes at least six attempts.", "jumps up and down on the beam."], "label": 2} +{"ctx": "[header] How to start dreads with short hair [title] Make small circular motions with a soft bristled brush. [step] Brush small, inch sized circles in a clockwise motion until the hair starts to form into balls. This should only take about a minute or two.", "endings": ["[title] Gather all the loose hair you will want to twist into dreads. [step] It's best that you only do this once.", "Be sure that you brush each small circle evenly; the circular motion of the brush can create tangles. [substeps] Repeat this process on the other side of your head.", "Once the balls start to form, move on to the next step. [title] Separate the first scalp oval section into groups by you.", "Once a ball of hair forms, move onto another section of the hair to continue making dreadlocks throughout the hair. [substeps] The brushing method works best for coarse hair that's 3/4 \" to 2.5 \" (1.905 cm-6.35 cm) long."], "label": 3} +{"ctx": "A large white truck with its hood open backs up. marc man", "endings": ["is standing outside with a bag of wood from the garage and a lighter in a bag at his feet swinging around a woodpile.", "is getting ready to lift a heavy barbell.", "speaks to the camera by a vintage red car.", "is shoveling snow from the side and down the sidewalk."], "label": 2} +{"ctx": "[header] How to stand in a spray tan booth [title] Avoid wearing makeup and skip moisturizers. [step] On the day of your tanning appointment, skip the cosmetics. The same goes for lotions and moisturizers, except where specified by the tanning specialists before your session.", "endings": ["Make sure your sunscreen sunscreen does not rub off during the session. [title] Read the agreement and confirm that your chosen surface is sterile.", "Therefore, you don't really need to use any type of moisturizer or make-up. [substeps] Instead, wear natural cream or only substitute product if your skin is oily.", "Anything extra on your skin can act as a barrier and prevent the tanning solution from getting through. [substeps] Pack some makeup remover wipes if you're planning on heading to the salon after another engagement.", "They will be more likely to cause skin damage if applied correctly. [substeps] Also, make sure to take off makeup while you're in the tanning room! Airbrushing is not recommended, as it's difficult to control the effects of the sun."], "label": 2} +{"ctx": "The credits of a clip are shown. A person is water boarding on a body of water. people", "endings": ["ride a boat and interact.", "get flip over backwards on their backs.", "are standing on a snowy roof next to a waterfall.", "are in rafters on a boat."], "label": 0} +{"ctx": "[header] How to act high [title] Master the zoned-out stare. [step] People who are high often laze around, watching the world around them through half-closed lids. To perfect the dazed and half asleep look, slack your jaw and loll your head slightly to one side.", "endings": ["[substeps] People who smoke or consume marijuana often get lost in their thoughts, and are easily distracted. To really show you have zoned out, act like you are thinking about something totally irrelevant to your surroundings.", "Close your eyes, but resist the urge to open them in the process. [substeps] Slouching, mirroring other people's bodies language when you're not in your shell will help you blend into a more welcoming environment.", "This maneuver will help free your jaw, which is a sign of open mouth and open mouth. [substeps] Keeping both eyes closed, put two fingers under your chin, and allow the palm to hover over your mouth.", "On the other hand, you can open your eyes slightly, and blink them a few times, without being worried. For some people this is difficult, but for others it's perfectly normal."], "label": 0} +{"ctx": "[header] How to link paypal accounts [title] Navigate to https: // www.paypal.com/signin. [title] Sign in using the account you want to close. [step] Enter the username and password and click \" log in \".", "endings": ["[title] Click on \" bios \" again to access the top menu. [step] Select \" options \" from the list and select \" account & authorization.", "[title] Navigate to a blank transaction spreadsheet. [title] Click on \" activate proefright \".", "You will be taken to your account summary page. [title] Click \" pay or send money \".", "[substeps] If you are using paypal, you will need to fill out a new log in page. To confirm you're logged in, click \" sign up now \"."], "label": 2} +{"ctx": "[header] How to discuss your future marriage during your engagement [title] Make time for discussions. [step] If you want to have a serious discussion with your partner about your future marriage, take some steps to make sure that it can go well. Set aside time when neither of you is distracted or needs to rush off anywhere.", "endings": ["If either of you has kids, have a babysitter watch them to give you plenty of time to talk together. Find a time when both of you are relaxed and can focus on communicating.", "Then, pick a time and place to talk. [substeps] Make sure to be that specific-if you can't talk to your partner after work or family events or just don't want to talk, this could be a good time.", "Communication is key to keeping your relationship going. [substeps] If you feel like you need to have a lengthy and deeper conversation with your future marriage, accept the time that you have allotted.", "Include those times with your needs in the discussion as well. [substeps] Say \" i love you very much and want to spend time together again soon."], "label": 0} +{"ctx": "[header] How to wash long hair [title] Add a shower filter. [step] Adding a shower filter to your bathroom will benefit the health of your hair and skin by reducing exposure to chemicals such as chlorine. A shower filter will also enhance the ph balance of the water that you are using to wash and clean with and will ultimately result healthier, softer skin and hair.", "endings": ["[title] Refrain from using shampoo and conditioner. [step] These products do not wash clean and they may strip the healthy oils from your hair.", "It may seem a bit over-the-top but the benefits can potentially outweigh the initial hassle of installing it. [substeps] Shower filters can be purchased at home goods or home improvement stores, such as bed bath and beyond or home depot.", "[substeps] Use a shower filter to change out water. If your bathroom has a shower filter, install it to protect your hair from the elements.", "For the best results, install a shower filter so that your entire hair will be maintained. [substeps] Take off the cap from your shower, or if you use a shower filter, gently wash your hair with your fingertips."], "label": 1} +{"ctx": "A lady and a man in karate uniforms practice kicks in a room with carpet. the lady", "endings": ["hands the man a stick and they begin fighting.", "and the man bow down and bow.", "rolls across the floor.", "almost falls trying to kick the man."], "label": 3} +{"ctx": "A boy shows up on the screen and gets a cup of water and gargles it. He smiles and walks off the screen for a moment. He returns and continues gragling and laughing. a man", "endings": ["comes after him and movie clips are shown of him dancing with women.", "then appears in a shuffleboard court doing tricks and climbs up nets.", "is shown getting a cup of water and enjoying it in front of a computer.", "comes onto the screen and invites people to subscribe to his videos."], "label": 3} +{"ctx": "[header] How to gel your hair [title] Choose the right gel. [step] Hair gels are usually categorized by the thickness of the compound and the power of the hold. The color and the scent of hair gels generally doesn't make any difference in terms of how they work.", "endings": ["The array of gel dyes and products to choose from is limitless. [substeps] If you're working to highlight your hair, you'll want to avoid more conventional products.", "Most gels are applied with the fingertips, but there are a few which are spray-on. Decide which is best for your style, or try out each one and see which you prefer.", "Gels can also open up your pores and fight fungus but these processes make hair more prone to grinding and breaking. [title] Look for products that are hypoallergenic.", "Try to choose gel with a weaker hold-a spray or gel without added dolbok, which will add some lubrication to your hair. Gel is less opaque when it comes to dry color than shaving gel, so gel that has the same texture as shaving gel will not work."], "label": 1} +{"ctx": "[header] How to wash jeans by hand [title] Fill your bathtub or utility sink with cool to lukewarm water. [step] Make sure the area is clean and that you run enough water to fully submerge your jeans. Wash dark jeans and brand new jeans in cooler water to prevent fading.", "endings": ["[substeps] Another option is placing the jeans in the dye water bowl that came with the dye, saturating them enough that they are safe to proceed. Follow all recommended temperatures for washing dark jeans, starting from the heaviest setting.", "[substeps] Cold water might be necessary for damp jeans. [title] Soak your jeans in the washing machine for a short amount of time.", "[substeps] Skip this step if you plan to wash the jeans separately. As a rule of thumb, use cool water to help with washing them separately.", "[title] Add a small amount of mild, liquid detergent to the water. [step] Swish the water a bit so the soap is mixed in well."], "label": 3} +{"ctx": "[header] How to apply eyeshadow that lasts [title] Wash your face. [step] Starting with a clean and fresh face will make your makeup stand out more, help it last longer, and help prevent your makeup from clumping and flaking. Use your favorite gel or cream facial cleanser and lukewarm water.", "endings": ["Rub the cleanser in circular motions for 20 minutes before rinsing with warm water. [title] Apply your eyeliner to the crease of your eye.", "[substeps] Wet your face and pour some cleanser into your hands. Work the cleanser into a lather, and then gently massage it into your face for about 30 seconds using circular motions.", "Tap your face with your fingers to get the excess off, then pat your face dry with a clean towel. [substeps] Do not splash water onto your face.", "Pat your face dry with a clean towel. [substeps] An eyeshadow primer also works just as well."], "label": 1} +{"ctx": "[header] How to become a professional kick boxer [title] Locate a mixed martial arts (mma) school or gym in your area. [title] Look for a qualified kick boxing instructor. [step] An instructor should be certified by an accredited association, such as the american council on exercise (ace), or have passed a kick boxing certification exam from a licensed training facility.", "endings": ["[substeps] You should also look for an instructor that is certified by the national association of elite brazilian fighters. [title] Use your training gloves to protect you from your opponent's strikes and finalties.", "[title] Find a local mma fighting/hand boxing site. [title] Know if you want to hire a professional mma fighter to become your instructor, or if you are already trained.", "[title] Learn basic skills like rolls and raises, footwork, flexibility, and endurance. [step] To be a pro kick boxing teacher, you must have years of training and a high index knowledge of this subcategory.", "Instructors also should be experienced in the proper kick boxing techniques. Martial arts belts typically indicate their level of expertise."], "label": 3} +{"ctx": "[header] How to condition african hair with olive oil [title] Put your hair up in 3-4 cloth bands/scrunches, before your hair is wet. [step] This reduces shrinking and tangling. .", "endings": ["[title] Wetting your hair prevents the oil from dripping down into dry parts. [title] Wash your hair often but do not wash every day.", "[title] Use a juice bottle, wide dropper or other bottle that holds at least 35\u00baf or 0\u00bac. [step] This allows you to rub the oil into your hair from the roots of your hair to the ends.", "[title] Fill up hair clips or hair bunches with a generous amount of olive oil. [step] Do not use too much, but do not take all the oil out though, it helps moisturize.", "[title] Wash hair with sulfate free shampoo or something similar (such as pantene relaxed and natural). [step] Sulfate is bad, it gives hair lather and strips it of its natural oils."], "label": 3} diff --git a/labs/lab3/nlp-lab3.ipynb b/labs/lab3/nlp-lab3.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..a4af0af4488975c33e04768424b1615c63bd094e --- /dev/null +++ b/labs/lab3/nlp-lab3.ipynb @@ -0,0 +1,748 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Lab 3: Pretraining a GPT model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This lab is about pretraining large language models. You will work through the full pretraining process for a GPT model, explore different settings, and implement optimisations that make training more efficient. You will also reflect on the impact of data curation on the quality of the pretrained model. By the end of the lab, you will have a solid understanding of how large language models are trained from scratch.\n", + "\n", + "*Tasks you can choose for the oral exam are marked with the graduation cap 🎓 emoji.*" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import math\n", + "import os\n", + "import time\n", + "from dataclasses import dataclass\n", + "\n", + "import numpy as np\n", + "import torch\n", + "import torch.nn as nn\n", + "import torch.nn.functional as F\n", + "from gpt2 import Config, Model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: Pretraining pipeline" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The GPT pretraining pipeline builds on the basic training loop for neural language models you have seen before, but includes several enhancements that improve stability and efficiency when training large models:\n", + "\n", + "* It uses the [AdamW](https://pytorch.org/docs/stable/generated/torch.optim.AdamW.html) optimiser with weight decay instead of vanilla stochastic gradient descent.\n", + "* It implements a cosine decay learning rate schedule with a linear warmup phase.\n", + "* It accumulates gradient updates across multiple batches to allow training with larger effective batch sizes.\n", + "* It uses gradient clipping to prevent exploding gradients." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Training configuration" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We begin by setting up a configuration object that defines the key parameters of the training process. The original 124M-parameter GPT-2 model was trained on WebText, a private dataset with 300B tokens of Internet data. Our training pipeline is configured to train a Chinchilla-optimal version of the same model using the [FineWeb-Edu](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu) dataset and a single A100 GPU with 80GB of memory." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "@dataclass\n", + "class TrainingConfig:\n", + " device: torch.device = torch.device(\"cuda\")\n", + " shard_dir: str = \"data\"\n", + "\n", + " # Training steps and data processing\n", + " n_steps: int = 4768\n", + " n_tokens_per_step: int = 524288\n", + " batch_size: int = 64\n", + " sequence_len: int = 1024\n", + " n_vocab: int = 50304\n", + "\n", + " # Optimisation and learning rate scheduling\n", + " weight_decay: float = 0.1\n", + " max_lr: float = 6e-4\n", + " min_lr: float = 6e-5\n", + " n_warmup_steps: int = 715\n", + " n_decay_steps: int = 4053\n", + " betas: tuple[float, float] = (0.9, 0.95)\n", + " clip_norm: float = 1.0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.01: Explaining the training parameters\n", + "\n", + "Your first task is to explain the purpose of the training parameters. Some of them will already be known to you from the lectures, while others will become clear first as you progress through the lab and see how everything fits together. Because of this, it is best to revisit and complete this task towards the end of the lab when you have a full understanding of the training process.\n", + "\n", + "One parameter to note is the vocabulary size (`n_vocab`). The GPT-2 tokeniser has a default vocabulary size of 50,257, but for training on a GPU, it is helpful to use numbers that are more hardware-friendly. Specifically, numbers with many factors of 2 can lead to more efficient computation. To achieve this, we set the vocabulary size to 50,304, which is slightly larger than needed but has many factors of 2. Note that the extra tokens will not be used in practice — they simply act as placeholders without meaningful embeddings." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, we set up the GPT model. Our goal is to match the original training setup of GPT-2 as closely as possible. To do this, we follow the initialisation strategy outlined in the key research papers about GPT ([Radford et al., 2018](https://cdn.openai.com/research-covers/language-unsupervised/language_understanding_paper.pdf); [Radford et al., 2019](https://cdn.openai.com/better-language-models/language_models_are_unsupervised_multitask_learners.pdf); [Brown et al., 2020](https://arxiv.org/pdf/2005.14165)) as well as the official implementation ([link](https://github.com/openai/gpt-2)). Here is a summary of this strategy:\n", + "\n", + "* Token embeddings → Normal distribution with mean $0$ and variance $0.02$.\n", + "* Position embeddings → Normal distribution with mean $0$ and variance $0.01$.\n", + "* Weights of the linear layers → Normal distribution with mean $0$ and variance $0.02$.\n", + "* Biases of the linear layers → Initialised to zeros.\n", + "* Weight sharing between the final linear layer and the token embedding." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎈 Task 3.02: Initialising the model\n", + "\n", + "Expand the skeleton code below to create a fresh model and initialise it according to the GPT-2 strategy." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def configure_model(config: TrainingConfig) -> Model:\n", + " # TODO: Replace the following line with your own code\n", + " return Model(Config(n_vocab=config.n_vocab))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Scaled residual initialisation\n", + "\n", + "There is one important detail in the GPT-2 initialisation strategy that we have not addressed yet. [Radford et al. (2019)](https://cdn.openai.com/better-language-models/language_models_are_unsupervised_multitask_learners.pdf) write (Section 2.3):\n", + "\n", + "> A modified initialization which accounts for the accumulation on the residual path with model depth is used. We scale the weights of residual layers at initialization by a factor of $1/\\sqrt{N}$ where $N$ is the number of residual layers.\n", + "\n", + "Why is this necessary? One of the challenges in training large language models is controlling the variance of activations. However, there are two points in the GPT architecture where variance can grow uncontrollably: the residual connections after the multi-head attention and the MLP. Since these connections simply add activations from previous layers, their variances increases with depth. To see this, note that if we sum $N$ independent normally distributed variables with variance $\\sigma^2$, the result has variance $N \\sigma^2$. The factor $1/\\sqrt{N}$ compensates for this growth." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.03: Implementing the scaled residual initialisation\n", + "\n", + "**Step 1.** Suppose each summand in a sum of $N$ independent normally distributed variables with variance $\\sigma^2$ is scaled by a factor of $k$. The total variance then becomes $N k^2 \\sigma^2$. What happens to the total variance if we choose $k = 1/\\sqrt{N}$, as in GPT-2?\n", + "\n", + "**Step 2.** Test the mathematical theory with a simulation. Generate normally distributed activations using `torch.randn()`. Sum the activations across $N$ hypothetical residual layers, first without scaling and then with the $1/\\sqrt{N}$ adjustment. Compare the two cases by producing a plot showing the variance at each layer. To compute the variance of a tensor, use `torch.var()`.\n", + "\n", + "**Step 3.** Update your model initialisation from the previous task to include the scaled residual initialisation. The adjustment should only be applied to the linear layer at the end of the multi-head attention and MLP blocks (`c_proj`). Note that a GPT model with $L$ layers has $N = 2 L$ residual layers, because there are two residual connections in each layer (after the multi-head attention and the MLP)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As mentioned before, GPT-2 was pretrained on a 300B non-public dataset collected by OpenAI. Our pretraining data comes from the public [FineWeb-Edu](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu) dataset. The full dataset contains 1.3 trillion tokens, but here, we will only work with a small sample. We have preprocessed the data by tokenising it with the GPT-2 tokeniser and storing the token indices in equal-sized NumPy arrays, which we call **shards**. The function below loads these shards from a given directory and yields them as PyTorch tensors." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def shards(shard_dir: str):\n", + " for shard in sorted(os.listdir(shard_dir)):\n", + " yield torch.from_numpy(np.load(os.path.join(shard_dir, shard)).astype(np.int64))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In total, our training data consists of 300M tokens:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sum(s.numel() for s in shards(TrainingConfig().shard_dir))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.04: Batching the data\n", + "\n", + "Implement a function `make_batches()` that packages the token indices in the shards into pairs of input and output batches suitable for language modelling training. One efficient way to do this is sketched in the cell below:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "shard = torch.tensor(range(15), dtype=torch.long)\n", + "\n", + "# Suppose we want to package the tokens in this shard into batches of shape (2, 3).\n", + "\n", + "# Step 1: Segment the shard into overlapping chunks of size 2 * 3 + 1\n", + "chunk1 = shard[0:7]\n", + "chunk2 = shard[6:13]\n", + "excess = shard[12:]\n", + "\n", + "# Step 2: Create batches from all but the last and all but the first token in each chunk\n", + "x1, y1 = chunk1[:-1].view(2, 3), chunk1[1:].view(2, 3)\n", + "x2, y2 = chunk2[:-1].view(2, 3), chunk2[1:].view(2, 3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The following code cell shows the signature of `make_batches()`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def make_batches(config: TrainingConfig):\n", + " # TODO: Replace the following line with your own code\n", + " yield torch.randn(config.batch_size, config.sequence_len)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Hints and considerations:**\n", + "\n", + "* Batches can stretch across shards. You will have to carry over excess tokens at the end of shards to the next batch.\n", + "* All batches should have the same shape. Drop excess tokens at the end of the last shard.\n", + "* The correct number of batches of shape $(64, 1024)$ for the training shards is $4577$." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Optimiser" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The code in the cell below configures the [AdamW](https://pytorch.org/docs/stable/generated/torch.optim.AdamW.html) optimiser. It uses weight decay on all parameters with two or more dimensions (e.g., weights in linear layers), and no decay on the remaining parameters. If the model is on a CUDA device, the code uses the “fused” implementation of the optimiser for efficiency." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def configure_optimizer(model: Model, config: TrainingConfig):\n", + " params = [p for p in model.parameters() if p.requires_grad]\n", + " decay_params = [p for p in params if p.dim() >= 2]\n", + " no_decay_params = [p for p in params if p.dim() < 2]\n", + " param_groups = [\n", + " {\"params\": decay_params, \"weight_decay\": config.weight_decay},\n", + " {\"params\": no_decay_params, \"weight_decay\": 0.0},\n", + " ]\n", + " return torch.optim.AdamW(\n", + " param_groups,\n", + " lr=config.max_lr,\n", + " betas=config.betas,\n", + " fused=(config.device.type == \"cuda\"),\n", + " )" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.05: Exploring the beta parameters\n", + "\n", + "The AdamW optimiser is controlled by two hyperparameters $\\beta_1$ and $\\beta_2$:\n", + "\n", + "* $\\beta_1$ controls the moving average of past gradients.\n", + "* $\\beta_2$ controls the moving average of past squared gradients, which affects the adaptive learning rate scaling.\n", + "\n", + "Lower values correspond to reduced effect of the respective average, that is, less smoothing and faster adaptation to recent values. In this task, you will explore how different beta values affect the convergence behaviour of the optimiser.\n", + "\n", + "The code below applies the optimiser to the function $f(x) = (x-2)^2 + (y+3)^2$, which has a global minimum at $(2, -3)$. The code yields the trajectories of the parameter values $(x, y)$ visited by Adam when started at $(-4, 5)$ for different values of $\\beta_1$ and $\\beta_2$." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def adam_trajectories(betas):\n", + " def loss_function(x, y):\n", + " return (x - 2) ** 2 + (y + 3) ** 2\n", + "\n", + " for beta1, beta2 in betas:\n", + " x = torch.tensor([-4.0], requires_grad=True)\n", + " y = torch.tensor([5.0], requires_grad=True)\n", + " optimizer = torch.optim.AdamW((x, y), lr=0.125, betas=(beta1, beta2))\n", + " trajectory = []\n", + " for _ in range(100):\n", + " optimizer.zero_grad()\n", + " loss = loss_function(x, y)\n", + " loss.backward()\n", + " optimizer.step()\n", + " trajectory.append((x.item(), y.item()))\n", + " yield trajectory, f\"β₁ = {beta1}, β₂ = {beta2}\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + " Your task is to visualise different trajectories in a plot and analyse the results. Proceed as follows:\n", + "\n", + "* Start by plotting the trajectory for the default values for $\\beta_1$ and $\\beta_2$. (Consult the PyTorch documentation to find these.)\n", + "* Add the plot for the beta values used in our training configuration. For this simple example, do you see a significant difference?\n", + "* Add more plots to see what happens if the beta values are too high or too low." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Learning rate scheduling" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Your next task is to implement the learning rate scheduler. As mentioned before, GPT-2 is trained with cosine decay from a maximum to a minimum learning rate in conjunction with a linear warmup phase." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.06: Implementing cosine decay\n", + "\n", + "Implement a function `get_lr_factor()` that determines the learning for a given `step`. To work with the rest of the implementation, this function should return its result as a factor of the maximum learning rate. In particular, the result at the end of the linear warmup should be $1$. Validate your implementation by plotting the function against the training steps." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def get_lr_factor(step: int, config: TrainingConfig) -> float:\n", + " # TODO: Replace the next line with your own code\n", + " return 1.0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Hint:** For $x \\in [0, 1]$, the relevant cosine decay is described by the term $\\frac{1}{2} \\cdot (1 + \\text{cos}(\\pi x))$." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Training loop" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "At this point, we have everything in place to put together a first version of the training loop. Here it is:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def train(config: TrainingConfig):\n", + " model = configure_model(config)\n", + " model = model.to(config.device)\n", + " batches = make_batches(config)\n", + " optimizer = configure_optimizer(model, config)\n", + " scheduler = torch.optim.lr_scheduler.LambdaLR(\n", + " optimizer,\n", + " lambda lr: get_lr_factor(lr, config),\n", + " )\n", + " n_micro_steps = config.n_tokens_per_step // (\n", + " config.batch_size * config.sequence_len\n", + " )\n", + " for step in range(config.n_steps):\n", + " model.train()\n", + " optimizer.zero_grad()\n", + " running_loss = 0.0\n", + " for micro_step in range(n_micro_steps):\n", + " x, y = next(batches)\n", + " x, y = x.to(config.device), y.to(config.device)\n", + " logits = model(x)\n", + " loss = F.cross_entropy(logits.view(-1, logits.size(-1)), y.view(-1))\n", + " loss.backward()\n", + " running_loss += loss.item()\n", + " nn.utils.clip_grad_norm_(model.parameters(), config.clip_norm)\n", + " optimizer.step()\n", + " lr = scheduler.get_last_lr()[0]\n", + " scheduler.step()\n", + " print(f\"step {step:4d} | loss: {running_loss:.4f} | lr: {lr:.4e}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Most of the steps should look familiar from previous labs or earlier tasks in this notebook. However, a few key aspects will be new:\n", + "\n", + "**Moving the model and data to the training device.** The model and each batch are moved to the training device using `.to()`. In our training configuration, `config.device` is an NVIDIA GPU, which supports fast tensor computations.\n", + "\n", + "**Gradient accumulation.** Instead of taking an optimisation step after every batch, we accumulate gradients over multiple batches (“micro-steps”). Each batch contributes to the gradients using `loss.backward()`.\n", + "\n", + "**Gradient clipping.** Before updating weights, the gradients are clipped using `clip_grad_norm_()`. This prevents excessively large updates that could destabilise training. The clipping threshold is set by `config.clip_norm`." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.07: Fixing the training loop\n", + "\n", + "Try to train a model by executing the code below:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "train(TrainingConfig())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You will run into two problems:\n", + "\n", + "**Memory issues.** As mentioned above, the training has been set up for an A100 GPU with 80GB of memory. If you are using a less powerful GPU, you will see an out-of-memory error. To fix this, reduce the batch size to lower the memory load on the GPU. Start by halving the batch size and keep adjusting it until you find the largest batch size that fits on your GPU. (You may have to restart the Jupyter kernel to reset the GPU.)\n", + "\n", + "**High losses.** The training losses start at very high values. Recall that the model’s goal is to predict the next token. At the start, the model’s weights are random, so we expect it to output a uniform distribution over the vocabulary. This means each token should have a probability of $1/V$, where $V$ is the vocabulary size. Given this, what should the initial loss be? Think about the cross-entropy loss for a uniform distribution.\n", + "\n", + "(You will fix the problem with the high losses in the next task.)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.08: Fixing the gradient accumulation\n", + "\n", + "The gradient accumulation in the `train()` function is not implemented correctly. To see this, consider the following example. We set up a linear layer and pass in some random input of shape $[2, 3]$. First, we compute the loss and gradients in the normal way. Then, we do the same thing using gradient accumulation over two singleton batches, in the way this is implemented in `train()`. As you will see, the two outputs are different." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def accumulation_example():\n", + " # Set up a simple model and simulate some input\n", + " model = nn.Linear(3, 2)\n", + " x = torch.randn(2, 3)\n", + " y = torch.randint(0, 2, (2,))\n", + "\n", + " # Compute the gradient on the complete input\n", + " model.zero_grad()\n", + " output = model(x)\n", + " loss = F.cross_entropy(output, y)\n", + " loss.backward()\n", + " print(model.weight.grad)\n", + "\n", + " # Compute the gradient using micro-batches (flawed)\n", + " model.zero_grad()\n", + " for i in range(2):\n", + " output = model(x[i : i + 1])\n", + " loss = F.cross_entropy(output, y[i : i + 1])\n", + " loss.backward()\n", + " print(model.weight.grad)\n", + "\n", + "\n", + "accumulation_example()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Your task is to fix the flawed implementation of gradient accumulation in the training loop.\n", + "\n", + "1. Propose a fix for the problem illustrated in the example.\n", + "2. Validate your proposal by modifying the example.\n", + "3. Once you are convinced that your fix is correct, apply it to the training loop.\n", + "4. How does the fix affect the loss?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Efficiency optimisations" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Training large language models from scratch is a computationally intensive task. Efficient training not only speeds up model convergence but also reduces hardware costs and energy consumption. As models grow in size, optimising the training process becomes increasingly important to ensure that resources are used effectively. In the second part of this lab, we will look into a few such optimisation techniques." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.09: Profiling the training loop\n", + "\n", + "Before we explore optimisations, we first need a way to measure training speed. We will define training speed as the **number of tokens processed per second**. Your task is to implement this measurement in the training loop.\n", + "\n", + "**Step 1.** Keep track of the number of tokens processed in each optimisation step.\n", + "\n", + "**Step 2.** Add a timer to measure the time taken per step. For accurate results, call `torch.cuda.synchronize()` before stopping the timer. This ensures all GPU computations finish before recording the time.\n", + "\n", + "Once you have added this measurement, train the model for a few steps and answer the following questions:\n", + "\n", + "* Based on your measured training speed, how long would it take to train on all data (300M tokens)?\n", + "* How much data and time would be required to train a Chinchilla-optimal version of the model?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Floating-point representations" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "One of the optimisations we can make when training large language models is choosing an appropriate floating-point representation. A floating-point number is represented using three components: a **sign bit**, an **exponent**, and a **fraction** (also called mantissa). The number of bits assigned to the exponent determines the *range* of the representation, while the number of bits in the fraction determines the *precision*.\n", + "\n", + "The most commonly used floating-point format is single-precision floating point (fp32), which uses 1 sign bit, 8 exponent bits, and 23 fraction bits. However, most deep learning computations do not require the full 23-bit precision of fp32. As a result, modern hardware supports lower-precision formats that improve performance and memory efficiency while maintaining training stability. We are particularly interested in two of those:\n", + "\n", + "**TensorFloat-32 (tf32)** is a precision format introduced by NVIDIA. It keeps the same 8-bit exponent as fp32, preserving the same numerical range. However, tf32 reduces the fraction size to 10 bits, leading to lower precision but faster matrix multiplications on dedicated GPUs.\n", + "\n", + "**Brain Floating Point 16 (bf16)** is another reduced precision format widely used in NVIDIA GPUs. Like tf32, bf16 has the same 8-bit exponent as fp32, and therefore, the same range. However, bf16 has only 7 bits for the fraction. Unlike tf32, which is primarily used for internal computations, bf16 can be directly stored and used for activations, weights, and gradients, which can save memory (16 bits per value instead of 32)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎈 Task 3.10: Exploring floating-point representations\n", + "\n", + "Your task is to rewrite the training loop to take advantage of specialised floating-point representations.\n", + "\n", + "**Step 1.** By default, PyTorch uses the fp32 format for internal computations (“highest precision”). Read the documentation of [`torch.set_float32_matmul_precision()`](https://pytorch.org/docs/stable/generated/torch.set_float32_matmul_precision.html) to find out how to change this default and use tf32 if possible.\n", + "\n", + "**Step 2.** Computing the forward pass and the loss requires even less precision than other parts of the training loop. Read the documentation of [`torch.autocast()`](https://pytorch.org/docs/stable/amp.html#torch.autocast) to find out how to execute these operations using the bf16 format.\n", + "\n", + "**Step 3.** Repeat your profiling experiments with the modified training loop. How much time would be required to train the model now that you have implemented the floating-point optimisations?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Just-in-time compilation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The second optimisation we will explore is **just-in-time (JIT) compilation** – a technique to speed up code by compiling it at runtime, rather than before execution. This allows the compiler to optimise the code dynamically based on actual inputs and hardware conditions.\n", + "\n", + "PyTorch provides a function [`torch.compile()`](https://pytorch.org/tutorials/intermediate/torch_compile_tutorial.html) that uses JIT compilation to automatically optimise deep learning models. Instead of executing PyTorch operations one by one, this function analyses the computation, restructures it, and generates highly efficient machine code. This optimised code can often be run as a single fused operation on the GPU.\n", + "\n", + "The performance boost from JIT compilation is especially noticeable on high-end GPUs like the NVIDIA A100 or H100, but it can still provide smaller speedups on less powerful GPUs." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎈 Task 3.11: Exploring just-in-time compilation\n", + "\n", + "In this task, you will measure how much `torch.compile()` improves the training speed of the GPT-2 model. To enable JIT compilation, add the following line to the training loop:\n", + "\n", + "```\n", + "model = torch.compile(model)\n", + "```\n", + "\n", + "Make sure to place this *after* moving the model to the training device so the optimisation can be tailored to the hardware you are using. Once you have enabled JIT compilation, rerun your profiling experiments and compare the training speed before and efter." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3: Evaluate the pre-trained model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This notebook contains all the code needed to train a GPT-2 model on the FineWeb-Edu dataset. However, training on the full dataset is not practical within the time and resource limits of this lab.\n", + "\n", + "To save time, we provide a pretrained model that was trained using the exact same settings you developed earlier. The only difference is that we used a compute node with 8 NVIDIA A100 GPUs (80GB each). With this setup, a full Chinchilla-optimal training run takes about 30 minutes.\n", + "\n", + "We provide the trained model in the file `gpt-2-fineweb-edu.pt`. You can load it with the following code:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "pretrained = Model(Config(n_vocab=50304))\n", + "pretrained.load_state_dict(torch.load(\"gpt-2-fineweb-edu.pt\"))\n", + "pretrained.lm_head.weight = pretrained.wte.weight" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 🎓 Task 3.12: Evaluating the pretrained model\n", + "\n", + "The next cell contains code for evaluating the FineWeb-Edu model on the same small sample from the [HellaSwag](https://rowanzellers.com/hellaswag/) benchmark you already used in lab 2. How does its score compare to that of the original GPT-2 model? What does this result tell you about the impact of data quality on the downstream performance of language models?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "\n", + "import tiktoken\n", + "\n", + "tokenizer = tiktoken.get_encoding(\"gpt2\")\n", + "\n", + "with open(\"hellaswag-mini.jsonl\") as f:\n", + " n_correct = 0\n", + " n_total = 0\n", + " for line in f:\n", + " sample = json.loads(line)\n", + " prefix = tokenizer.encode(sample[\"ctx\"])\n", + " ending_scores = []\n", + " for i, ending in enumerate(sample[\"endings\"]):\n", + " suffix = tokenizer.encode(\" \" + ending)\n", + " context = torch.tensor([prefix + suffix], dtype=torch.long)\n", + " with torch.no_grad():\n", + " logits = pretrained(context)\n", + " ending_score = torch.nn.functional.cross_entropy(\n", + " logits[0, -len(suffix) - 1 : -1], context[0, -len(suffix) :]\n", + " )\n", + " ending_scores.append((ending_score, i))\n", + " predicted = min(ending_scores)[1]\n", + " n_correct += int(predicted == sample[\"label\"])\n", + " n_total += 1\n", + " print(f\"Accuracy: {n_correct / n_total:.2%}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**🥳 Congratulations on finishing lab 3!**" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/labs/lab4/eval.csv b/labs/lab4/eval.csv new file mode 100644 index 0000000000000000000000000000000000000000..8591f569be1b2267a54a8554336c0ea453cb5bf9 --- /dev/null +++ b/labs/lab4/eval.csv @@ -0,0 +1,501 @@ +index,review,label +23703,"there was some truth to this movie. I remember a story reported 15 to 20 years ago of 4 fisherman finding a body in the water and they chose not to report it until their trip was finished. I also recall they were charged with interfering with a corpse (or some such charge). I'm not sure if it was in Australia. The viewers outside of Australia must think we live in a country full of rapists and serial murders. Wolf Creek and this film would encourage this perception. The film itself reminded me of A Simple Plan. But as far a being one of the best Australian films ever, as someone claimed, I can't be that generous. Put it this way, I wouldn't bother watching it again.",0 +1717,"First ever viewing: July 21, 2008<br /><br />Very impressive screenplay and comedic acting and timing in this film. Now 40 years old, it has lost none of it's power. Neil Simon displays excellent insight into human nature and relationships as well as how to create genuine comedy from unusual situations. Jack Lemmon and Walter Matthau give great comedic performances. Neil Simon was inspired by actual events in his own life to write the play this film is based on.<br /><br />One of the best written and acted Hollywood comedies of all time!<br /><br />Surprisingly, only nominated for 2 Academy Awards: ""Best Adapted Screenplay"" and ""Best Film Editing"". Hollywood rarely awards comedies, no matter how well they are made.",1 +2696,"This film has a lot of raw potential. The script is sharp, the dialogue is (usually) excellent (though it could stand to lose the cheezy voice-overs), the direction and cinematography is surprisingly quite good, though some of the experimentation just doesn't work. The main problem here is David Duchovny. Once a geek-boy, always a geek-boy; and the sad, simple fact is that he's incapable of playing anything but Fox Mulder. He postures, he tries to be slick, he poses, he tries to be macho. In the end he just tries too hard. He overplays his character, he overspeaks his lines, and he's just outplayed in all ways by Timothy Hutton and Angelina Jolie, who are each in a class above him in terms of acting skill. Timothy Hutton was (as always) really good. There was a spotty moment or two where he over-dramatized his role, but you could tell he was having fun with it. He looked the part, and he became the character both physically and atmospherically. Angelina Jolie was also really good. She didn't have much of a role; in fact, I though she could have used a much stronger one...her character wasn't nearly developed enough, though she did remarkably well with what she had. And the chemistry between her and Hutton was apparent (gee, maybe that's why Uma left him...;) All in all, it was rough around the edges, but a solid effort by a good cast and great supporting roles. If David Duchovny hadn't ripped his role to pieces it would've been *that* much better. 7/10.",1 +1848,"THE SECRET OF KELLS is an astonishing first animated feature which will dazzle your eye and move your heart. The shortcomings of the film's limited budget and sometimes limited animation are more than compensated for by the visual poetry of the story of young Brendan's heroic quest to become a master illuminator during the dark ages. Historically this was in the late 8th century, when the centers of Irish learning were over-run by the Vikings. The Vikings appear here as brute antagonists, the equivalent on the North Seas of the plundering Huns and Mongols further East. The film's narrative--- which functions more as a parable--- centers around the conflict between Brendan, who seeks to create beauty in his illuminations during a time of encroaching darkness, and his stern Uncle the Abbot-- who seeks to protect the town of Kells and his nephew with a looming wall as barrier against the Norsemen. The Abbot disregards the value of Brendan's art in his quest for security. This is the movie's outer conflict. Brendan's inner conflict is to find the hidden eye of creative illumination which will allow him to complete the most difficult painting in the Book of Kells. This eye is guarded by a Dragon Ouroboros, who destroys from within those not suited to this quest as surely as the Vikings will kill from without (That's as much of the story as I'll divulge!)<br /><br />What I really like about this film is its creators' imaginative understanding of some of the greatest art work to survive in the West from 1200 years ago. The characters are stylized in flat abstract shapes defined by line just as in the original Book of Kells. (Particularly noteworthy is monk Aidan's pet cat, defined in few lines, yet purely--- and even magically metamorphically feline.) The range of emotion which Brendan and the other animated characters convey given their economy of abstract design is a tribute to the excellent artistry of the director and his animators. The decorative borders on the edge of the picture change to complement the dramatic impact of a given scene, and this characteristic of illuminations from the dark ages is brought to wondrous animated life in THE SECRET OF KELLS. Of course, historical dramas usually tell us more about our own times than the times which these dramas endeavor to depict. However, by introducing archetypal elements into this story, the writers and director of THE SECRET OF KELLS convey a numinous sense of lived-life from that far-off time in Ireland which feels psychologically true, however much the script might stray from pedantic historical fact. (The United Nations' band of illuminators who appear as a rogues' club of artists in The SECRET OF KELLS aren't historically probable, but they're all well-designed, individuated characters who do much to convey the universal appeal of this quintessentially Irish story.) Animation has always seemed the best vehicle to me to better help us understand the visual art of different times and cultures. The magnificent art direction of this movie clearly derives from its historical visual source, but has also been cleverly adapted to the demands of animated storytelling; if animation had existed in the Dark Ages, the SECRET OF KELLS is what it would look like! Finally, Brendan's hero's quest in this film is the artist's perennial quest to convey the spirit of beauty, life and inspiration. (Without being preachy or even particularly Christian, this movie affirms Jesus' dictum that ""Man does not live by bread alone."" ) In my estimation the most inspired movie about the creative process of visual artists is Andrei Tarkovsky's ANDREI RUBLEV, a film about the great Russian icon painter of the 15th century. The SECRET OF KELLS expresses much the same sense of mystery and exhilaration about the artist's visual quest and creative process. It's certainly not as profound as ANDREI RUBLEV, but--- heck--- its a cartoon! (And one which will appeal to young and old alike.) I think this movie will hold up well to repeated viewing: in its own modest life-affirming way, this stylized SECRET OF KELLS is a classic.",1 +10623,"I really liked this movie, it was good, and the actors were brilliant! Leon Robinson, who played Richard, and many other classic singers, is very good at his job, when you see him in a musical movie, you know that it is going to be good! I would suggest that people watch this heart warming, sad, and special movie, if they want to know more about Richard! Outstanding! Fresh!",1 +20267,"<br /><br />I am a big-time horror/sci-fi fan regardless of budget, but after watching countless horror movies late night on cable and video, this has to be the worst of all movies. With bloody special effects (what looked like a roast covered in fake blood or ketchup that kept being shown over and over again) and people running around screaming from left, then to right, then back again. It should have stayed with the beginning convenience store scene and stopped there and been 15 minutes. Instead, it is dragged out very long. It is very, very x5 low budget. Many scenes were way, way too long. Narrator sounded very amateurish like a random person out of junior high was talking. This is the only movie to rate lower in my opinion than Manos, Red Zone Cuba, Benji,and Godzilla vs. megalon despite their higher budgets. 10 snoozes, try to stay awake through whole movie in one setting or better yet, avoid it like you would an undead brain-eating mob. The Why-Did-I-Ever-See-This-Piece-Of-Zombie-Dung-Blues. Epitome of nauseatingly bad made movies etc..ad infinitum. -infinity/10",0 +12852,"Up until this new season I have been a big 'Little Mosque' fan. However, the new season had absolutely RUINED it.<br /><br />The new Christian vicar has destroyed the entire intent of the show. It has always been about living together to overcome prejudice. The new vicar ruins that premise and shows Christians in a very bad light.<br /><br />I am neither Christian or Muslim, but loved watching the show and seeing the camaraderie between Amar and the Reverend. Not any more.<br /><br />Just cancel it and be done with it. It's not worth watching any more.<br /><br />It might still be saved, but a lot of change would need to be made.<br /><br />Bring back the old format.",0 +6622,"As far as parody films go, there are few that are worth time and energy. but with a recent resurgence of horrid parodies such as Date Movie and The Comebacks, it is a breath of fresh air to come back and rediscover a truly funny farce like Johnny Dangerously.<br /><br />After his mother has no end of medical problems, little Johnny goes to work for the mob. What fallows is a series of gags, most of which work, there are, however, the occasional flops. But a foreign gangster who can't master the American language (profanity wise, at least), a rival gangster with a penchant for shooting his mouth off (...once!), a younger brother with the D.A. who is out to get Johhny Dangerously, and a hot young starlet hot for his affections have Johnny busy.<br /><br />And the viewer will be busy laughing, for the most part, as every gangster-movie cliché is skewered by a talented cast and decent writing.<br /><br />Not perfect by a long shot, but definitely good for a smile on a bad day.",1 +3435,Series 2 has got off to a great start! I don't think you need to have watched series 1 to get a grasp of whats happening but like any series its nice to feel some sense of the characters and to care about what happens to them. And this show makes you think like that! These 4 30-something women seem to lead glamorous and exciting lives yet the premise is believable and realistic. So the twists and turns that arrive thanks to their love and sex lives are exciting to watch but you also know that these are problems that happen to real women too. Its about the decisions we make as women and how sometimes we are led down certain paths in our lives rather than consciously making those choices!,1 +20837,"A friend of mine was in the cast as a FEDS agent (a non-speaking part, as I recall). He brought it over on DVD so I could see it. It was ""interesting"", but very much felt like an amateur film. A well made amateur film, though. Really boring and poorly written. It was probably fun to make and be involved in, but it definitely didn't deserve any kind of wide release. Maybe in Omaha they'd enjoy it, but this California girl was bored and honestly kind of embarrassed for my friend's involvement.<br /><br />If this film maker has made or makes any more films, he really should try to have a really interesting story line, and GOOD actors. I'm sure this was a great learning tool for them. I wish them luck in the future, and hope they can improve their film making.",0 +16526,"Actually, they don't, but they certainly did when trying to think of a singular line that adequately summarises how terrible this entry in the series really is. There were some moments that could have been good, but they are mostly outweighed by their own conversion into missed opportunities, and don't get me started on the bad.<br /><br />The wasted opportunities are pretty obvious, but I will recap them here in case anyone cares. Anyone who hasn't seen the film and genuinely gives a toss would be advised to stop reading at this point. The first, and potentially the biggest, wasted opportunity, was the plot with Freddy's long-lost child. Now, the extreme mental illness that Freddy appears to suffer (and I might hasten to add that less than one percent of mental patients are a threat to other people, leave alone to this extent) is HEREDITARY, so why not a mystery-type slasher in which Lisa Zane's character dreams of Freddy murdering the teens, only we later discover it's actually her doing all the killing? Sound like a good plot idea to you? Obviously it was above the heads of Talalay and De Luca.<br /><br />Then there's the trip to Springfield, where the entire adolescent population has been wiped out, and the remaining adults are experiencing a kind of mass psychosis. Funnily enough, said mass psychosis was actually depicted in a realistic and convincing manner, although this has a fair amount to do with the fact that we are never shown too much. We are just given quick visual hints of the massive loss of connection with reality that would stem from the grief of every youngster in town dying for reasons beyond one's comprehension and control. The essential problem with this plot element, however, is that the town is abandoned too quickly, and with no real answers. This collection of scenes would have been far creepier with ten minutes of say... one sane citizen explaining to these visitors why the Springfield fair looks like a horror show.<br /><br />Of course, horror films are never noted for their character development, unless they're the kind of horror films John Carpenter used to direct, but how are we supposed to really care when characters we know next to nothing about die? At least Wes Craven took the time to set up his characters in the original, and used a few cheap tricks to draw the audience in. That, in a nutshell, is probably the biggest problem with Freddy's Dead: it just doesn't try at all, leave alone hard enough.<br /><br />On a related note, I feel kind of sorry for Robert Englund, now that he is more or less inextricably linked with the Freddy character. He has played far better characters in far better productions (the science-fiction miniseries ""V"", for example), and to be forever remembered as ""the man who played Freddy"" is selling him rather short. It seems he will never break the mold of horror films now. As for the rest of the cast, well, I think their performances here speak for themselves. They deserved to be permanently typecast as little more than B-grade horror props. Even Yaphet Kotto doesn't escape this one unscathed, as his character is one of the most childishly written in the history of B-films.<br /><br />All in all, Freddy's Dead gets a 1 out of me. I'd vote lower, but the IMDb doesn't allow for that. FD is really a testament to how a writer's inability to exploit a concept to the fullest extent can ruin not only a film, but an entire franchise.",0 +6771,"Hello Playmates.I recently watched this film for the first time ever and it is also my first experience of Arthur Askey, I have to admit I was very impressed by this film. As a fan of black and white films generally, passport to pimlico, the lavender hill mob and Tommy Trinder (who is apparently a distant relative), this film appealed in that it provided good old fashioned British humour. I notice that there are some on here who have criticised Askey's performance, however in my opinion it stands the test of time as a fine example of forties comic acting and if anything adds to the picture by creating characters that are more than the mere stereotypes which seem to so dominate films now.If you can get hold of this film I would recommend you get hold of it,shame these films generally aren't shown on Sunday afternoons anymore.I am also glad to have had the opportunity to watch another piece of work by Arnold Ridley (Private Godfrey in dad's army).I thank you",1 +21784,"I am not a big fan of horror films, and have only seen a handful of them (and none of the ""Halloween""s or ""Friday the Thirteenth""s) - but I can appreciate a frightening horror film not because of gore. And I'm pretty sure this isn't scary.<br /><br /> What's so spooky about a little plastic skull that pops up everywhere? In all of its appearances there are faraway establishing shots, so there's no real surprise in any of this film. (Not that a skull in of itself is that scary anyway, but . . .)<br /><br /> The plot concerns Claus Von Bulow's third cousin (John Hudson), who marries a Donna-reed look-a-like (Peggey Webber, giving one of the worst performances ever) who begins seeing skulls and hearing the mysterious screams of a group of peacocks on her husband's mansion. Did I mention that her husband lost her first wife in a mysterious drowning incident? OOOOH!!!! Wonder who did it!!!!<br /><br /> This is the same old plot about a rich boy trying to kill and/or drive their wife insane. If you want to see a well-done version of this stuff, try ""Reversal of Fortune"". And BTW, Jeremy Irons is one hundred times more talented than John Hudson.<br /><br /> The MSTing was okay but nothing special; paired with the ""Gumby"" short, however, it makes for good viewing.<br /><br /> Two stars for ""The Screaming Skull""; eight stars for the MST3K version.<br /><br /> And now, to paraphrase Mr. Von Bulow himself: ""How bad is this film?"" ""You have no idea!""",0 +6992,"A very promising directorial debut for Bill Paxton. A very dark thriller/who-really-done-it recommended by Stephen King. This is a strong, well-conceived horror tale about a devout, but demented man in Thurman, Texas that goes on a murdering spree after getting orders from God to eliminate demons trying to control mankind. A couple of plot twists and an eerie finale makes for your moneys worth. Most of the violence you don't really see, but still enough to double up your stomach.<br /><br />Director Paxton plays the twisted man to be known as the Hand of God Killer. Matthew McConaughey is equally impressive as the demented man's eldest son that ends up telling this story to a Dallas FBI Agent(Powers Boothe). Boothe, as always, is solid and flawless. Suspenseful white knuckler! Highly recommended.",1 +20270,"This movie was horrible, simply put. It was so bad I registered with IMDb to warn you of its dangers.<br /><br />I am a campy horror film expert, per se. I have watched ""Redneck Zombies"", ""House of the Psychotic Women"", ""Slumber Party Massacre II"" and many others. I know my schlock. And I know this movie sucks.<br /><br />Three fourths of the film is comprised of scared individuals running from one side of the screen to the other. When they are not running, they are spouting non-sequitur lines, devoid of emotion or motivation. When the actors begin to be acceptable, the direction falls to pieces. There were so many jarring low-angle shots; I figured Leif Jonker had a 3 foot tall tripod. He used what I call the ""Leif Maneuver"" several millions times: that is, zooming out from an object of interest like an amateur. Apparently the film crew couldn't get up early enough to film a sunrise, so they filmed a sunset... and played it in reverse. With direction this lazy, you are actually impressed with the final gory scene. The only thing you can figure is that the last five minutes was filmed before the first eighty-five minutes.<br /><br />If you want a good (bad) gory movie, rent ""Riki-Oh"" or the foundational ""Dead Alive."" If you are a schlock buff, and are looking for a challenge, give ""Darkness"" a go.<br /><br />Quote o' the movie-<br /><br />Vampire: It's die time!",0 +20582,"I watched about 30 minutes into this film before I finally got sick of getting bludgeoned over the head with this movie. The soundtrack, the so-called 'plot', and each and every actor. It's like they all think they're the main part of the movie and scream ""NOTICE ME!"" over and over again. The bad guy has his bad-guy music going on and says sinister bad-guy-like things, just in case you didn't quite catch on. The good guy does brave and noble things just in case you didn't know he was the good guy. And oh lord, the plane scene. ""MY HUSBAND IS MISSING! OH MY GOD! IT'S IMPOSSIBLE THAT HE GOT UP TO STRETCH HIS LEGS OR GO TO THE TOILET OR ANYTHING, HE MUST BE MISSING!"" (And yes, I know, his clothes were still there, but honestly, she woke up and started to panic before she even had time to look at the damn seat he'd been in.)<br /><br />As a religious girl, I want to apologize to the world for wasting the film this was printed on.<br /><br />And I want my 30 minutes back.",0 +22708,"From the decrepit ranks of the already over-saturated 'Hillybilly Horror' sub-genre comes this woeful tale of a vacationing family terrorized by inbred rednecks. Sound familiar? Well it most definitely should to anyone with even a cursory knowledge of the horror genre. There is absolutely new here. The film seems content to recycle all thee old worn out clichés (deformed hicks, a peaceful family turned gun-toting killers when push comes to show, the rebellious daughter, the one 'freak' who's good at heart, etcetera...), but does even that half-heartedly enough to make this an utter waste of time. This is forgettable dreck, but humorously enough lead J.D. Hart once starred in a movie called ""Films that Suck"" earlier in his career, quite an ironic omen indeed.<br /><br />My Grade: D-",0 +21376,"...let me count the ways.<br /><br />1. A title-only 'remake' that pulls out every cliché in the slasher handbook.<br /><br />2. A plot so predictable that it becomes quite pathetic.<br /><br />3. A completely weak execution of all attempts at suspense or thrills.<br /><br />4. A PG-13 rating that insures no gore, violence, or sex.<br /><br />5. A villain that is not frightening or even mysterious.<br /><br />6. A cast of characters that are so thinly written and stereotyped that we couldn't possibly care about them.<br /><br />7. A lack of any effectively creepy atmosphere (much unlike the original Prom Night).<br /><br />8. A script of dialog that's beyond poor - it's mind numbing. <br /><br />9. A series of cardboard performances (not sure whether to blame the actors or the lousy aforementioned script for that).<br /><br />10. A completely inept teen-targeted slasher remake that's not brave enough to attempt to have an imagination - or even to show a puddle of blood.<br /><br />It's a no-brainer horror fans, save your money.<br /><br />BOMB out of ****",0 +11601,"Let's start this review out on a positive note -- I am very glad they didn't decide to wimp out with Tony being shot and do a retrospective season like some people were rumoring. Actually, creator and writer of this episode David Chase did quite the opposite. We don't actually know if Tony will live or die. He's in a coma and his chances of recovering are very slim to none. This episode seemed to move very slow, and the coma induced dream Tony was in involving mistaken identity and robed Asian monks slapping the sh*t out of him was absolutely, flat-out weird. After 45-minutes I got a little sick of everyone grieving, but that shouldn' t be a reason to slam this episode. It was a weird and unpredictable episode, but it was still well-written and intense. Edie Falco gave an astounding career-defining performance in this episode as the conflicted wife having to face with her husband's could-be demise. I also found it interesting AJ dropped out of school and swore a vendetta against Junior, which AJ most likely won't have the balls to pull off. Silvio is now acting-boss which opens numerous doors to problems in later episodes. There were a lot of great quips in this episode, also, and I think Vito 'Pole-Smoker' Spadafore may meet his demise if he keeps being a greedy S.O.B.<br /><br />This wasn't a great episode and disappointed only because even though Tony kills people, we as an audience adore him and feel he is our hero of the show. This was a necessary episode for the series, even though it was a little snore inducing towards the conclusion. Kudos to Edie Falco's performance, and David Chase and the writers for creating this wholly original and unpredictable plot twist. This is the only season of 'The Sopranos' where I haven't a f*cking clue where it is going to go. I can't wait for next week's episode. My Rating: 7.5/10 <br /><br />Best Line of the Episode: (Paulie to AJ): ""Let's go, Van Helsing!""",1 +1117,"This is a superbly imaginative low budget Sci-fi movie from cult director Vincenzo Natali. The film plays out like a crossing of Phillip K Dick with Hitchcock and Cronenberg and the film takes on a unique feel like nothing you would have seen. The film is superbly shot, I love the cinematography in this, it feels fresh and original. Plot-wise the film explores similar themes to films like Total Recall, Dark City and the Matrix and its pretty staple Sci-fi stuff. Morgan Sullivan (Jeremy Northam) is a suburbanite who is bored with his life and has decided to take a job as a company spy for Digicorp, a large technological corporation. He meets up with a recruitment officer at the beginning who brings Sullivan on board and instructs him on what he has to do. It basically involves going to conferences of rival companies and recording them via a satellite transmission device disguised as a pen. It also means that he must take on a different persona and keep it a secret from his wife. After his first job things become strange, his habits change, his personality begins to differ and he suffers pains in his neck and headaches as well as nightmares. He encounters a beautiful woman named Rita Foster (played by an intriguingly cast Lucy Liu.) he takes an instant attraction to. However when he goes in his next job and sees her again she reveals herself to be an agent of some sort who reveals that his job is not quite what it seems. He finds out later on that he and the rest of the people attending the conference all work for Digicorp. The conferences are all covers to allow the company men to brainwash their spies. Sullivan, whose alternate name is Jack Thursby has been given an antidote to Digicorps drugging and while the rest of the spies at the latest conference drift off into what seems like a brain-dead day dream while the speakers drone on (the speakers send all the attendants to sleep via subliminal messages.) suddenly the rooms lights turn off and workers at Digicorp come in shining lights in all the occupants eyes to ensure they are not conscious and then in a fairly nightmarish situation they bring in head sets for each member which send messages into the brain and brainwash the precipitants into believing they are someone else. Digicorp are using these people as puppets and creating personalities and lives for these people while wiping their own existence. Sullivan now must pretend that he entirely believes he is now Jack Thursby. Digicorp want to steal information from their rivals Samways and they want their own puppets to do it, they now effectively control what these spies do, except for Sullivan. When Samways get a hold of Sullivan and discover he has not actually been brainwashed they decide to use him as a pawn to spy on Digicorp, make Sullivan a double agent. They know that Digicorp have sent Thursby to them to work his way into Samways and work his way up the system until he can get into a situation to download important company information that could shut the company down. Samways realises he had been planted and decide they will play along with Digicorp and allow Thursby to infiltrate their databanks but they will give Digicorp a dodgy disc that will ruin their system. The plot begins to twist and turn as both companies are using Sullivan as a pawn. He is stuck in the middle and Rita Foster is a mystery as he tries to work out why she is helping him. When a mysterious third party becomes involved, the person it is revealed that Foster works for, Sullivan must decide whether to go to this freelance agent, who could guarantee him a new life and safety or to stick with one of the companies he works for. The tension all builds to a stonking climax as it seems just about everyone wants to dispose of him once his usefulness has expires. The cast are great. Northam is superb and the subtlety in his performance is excellent. He brings a great visual aspect to his performance, his eyes tell a story and we see a great subtle change as his character changes from Sullivan to Thursby. Lucy Liu is just sexy beyond belief and her presence gives a great dynamic to the film because it seems strange casting but works because of that fact. The rest of the cast are also good.<br /><br />Director Natali whose previous film was the cult classic sci-fi flick Cube, has a real visual flair. He paces the film superbly as well and has given it a great look. For a low budget film it features some imaginative visual effects and although the CGI isn't great it never begins too much of a centre piece to effect the film negatively. The film really does bring feelings of The Matrix and other great sci-fi films, it is up there with them. The plot nearly becomes too convoluted at times but in truth that helps in a film like this, that is where the Cronenberg and Lynch influence is evident. The film has you constantly working out what is going on and genuinely surprises as it goes along. This is overall an obvious cult classic and I can see this being incredibly popular when it is released in the states. ****1/2<br /><br />",1 +1756,"It sounds a bit awkward to call a film about war and holocaust shocking since many of us will know only too well of the horrors that war and violence brings. By using the adjective 'shocking' I do not intend to imply that I am surprised about the things told about in this film or that I was formerly unaware of them, it is just that I am very much impressed by the way in which this film shows how crazy and incomprehensibly horrific it is to kill each other off, either with or without a 'reason'.<br /><br />The first part of the film focuses on Hanna's successful participation in the Hungarian resistance. Maruschka Detmers would never have won an Oscar for this performance, due to inconsistent directing, but still her acting is solid enough and she has enormous charisma. She is cast very well as Hanna and immediately has our sympathy. Her very beautiful looks help, of course, but that has nothing to do with her being simply a good actress, playing a good part.<br /><br />Certain inconsistencies keep occurring in Hanna's War. I sometimes get the idea director Menahem Golan (often despised for The Gianni Versace Murder) was in a rush and should actually have allowed a few more takes per scene. On the other hand, I am very thankful he made this impressive and thought-provoking film and as I am very positive about it, I think he did a good job.<br /><br />The second half of the film is the most interesting and tragic one. It focuses on Hanna's suffering (beware of Donald Pleasence's scary portrayal of the cruel and sardonic captain Rosza) and intensely shows the injustice and horror that comes with hate and violence and war. I receive Hanna's War, especially the second half, as a strong anti-war film and for that alone Golan deserves credit. It is also this second half in which Maruschka Detmer's talent comes out, creating a character which goes into film history as one of the most speaking, strong and tragic ever portrayed. It is also great to see Ellen Burstyn, whose appearance and acting style always remind me of Romy Schneider, who -had she been alive and cast- would have made a similar effective contribution to Hanna's War.<br /><br />The tragic impact of the second half and the desperate tension which is sometimes replaced by hopeful prospects and good news lead to a number of final scenes which show something so unexpected, so moving and poetic in its tragedy that it hit me like a bomb and left me in tears. And when I realized once more it wasn't even fiction, it all actually happened, I found myself in even more tears. The image of Hanna portrayed by Maruschka Detmers will be in my mind forever.",1 +16881,"warning:It contains spoilers. If a movie starts with a sex scene then it's a bad movie. (see for example 300). This one confirms the above lemma. The second scene constitutes the spinning center of all the action. The fact that we know the end makes the movie boring. Even more, other plots are revealed as the story goes back and forth several times. And this made more frustrated. To compensate the consequent lack of suspense, we learn more and more about how unbalanced are the characters. And oh yes, they have lots to show. Andy (P.Hoffman), for example, is a drug addict, more?, he is cheating his wife, more?, he plans to rob his father, more?, his wife is cheating with his brother, more?, he doesn't regret his complicity to his mother's death, more?, he is a serial killer, more? etc etc it's not enough space to write here... I wonder how could he have a top job. And why his wife didn't leave him before. On the other hand I enjoy much the performances of the actor Hoffman.<br /><br />Even here PSH saves what is left from my 7$ spent for this absurdity. Why absurdity? Because it doesn't have sense, why should I care for the despicable characters? Another broken lemma is that a movie should have a sympathetic( at least pleasant) character. <br /><br />Also it's a lot of sentimentality, for example we are supposed to care for the sufferance of the widowed father without knowing anything about the parents'lives before the crime.",0 +6751,"And that's why historic/biographic movies are so important to all of us, moreover when they are so well done, like this one!<br /><br />Before I saw ""The Young Victoria"", I knew a few things about Queen Victoria, but in the end I got much more knowledge about it. <br /><br />Emily Blunt is simply GREAT as Victoria (Who would guess that!) and She probably will get a nomination at this years Oscar's. Personally, I'm cheering for her...<br /><br />For technical issues, I am pleased to say that is a very successful production, with wonderful Art Direction/Set Decoration and, of course, like It was expected to be, a terrific periodic Costume Design! <br /><br />The one drawback is that I want to see more and know more about this interesting queen, but foremost, incredible woman and mother! <br /><br />BRAVO: 9 out of 10!",1 +870,"Though not in the whole film, Andy Griffith again plays his role best in this CBS tv-movie. The plot is easy-Griffith's character dies and his last wish is that his wife and kids scatter his ashes is the place he named (Mountains Somewhere). Though it will never be seen on TV and never be released on video, if you do get the chance to watch this--TAKE IT.",1 +19741,"The ending of this movie made absolutely NO SENSE. What a waste of 2 perfectly good hours. If you can explain it to me...PLEASE DO. I don't usually consider myself unable to ""get"" a movie, but this was a classic example for me, so either I'm slower than I think, or this was a REALLY bad movie.",0 +9104,"My favorite movie genre is the western, it's really the only movie genre that is of American origin. And despite Sergio Leone, no one does them quite like Americans.<br /><br />Right at the top of my list of ten favorites westerns is Winchester 73. It was the first pairing and only black and white film of the partnership of director Anthony Mann and actor James Stewart. It was also a landmark film in which Stewart opted for a percentage of the profits instead of a straight salary from Universal. Many such deals followed for players, making them as rich as the moguls who employed them.<br /><br />Anthony Mann up to this point had done mostly B pictures, noir type stuff with no real budgets. Just before Winchester 73 Mann had done a fine western with Robert Taylor, Devil's Doorway, that never gets enough praise. I'm sure James Stewart must have seen it and decided Mann was the person he decided to partner with.<br /><br />In this film Mann also developed a mini stock company the way John Ford was legendary for. Besides Stewart others in the cast like Millard Mitchell, Steve Brodie, Dan Duryea, John McIntire, Jay C. Flippen and Rock Hudson would appear in future Mann films.<br /><br />It's a simple plot, James Stewart is obsessed with finding a man named Dutch Henry Brown and killing him. Why I won't say, but up to this point we had never seen such cold fury out of James Stewart on screen. Anthony Mann reached into Jimmy Stewart's soul and dragged out some demons all of us are afraid we have.<br /><br />The hate is aptly demonstrated in a great moment towards the beginning of the film. After Stewart and sidekick Millard Mitchell are disarmed by Wyatt Earp played by Will Geer because guns aren't carried in Earp's Dodge City. There's a shooting contest for a Winchester rifle in Dodge City and the betting favorite is Dutch Henry Brown, played with menace by Stephen McNally. Stewart, Mitchell and Geer go into the saloon and Stewart and McNally spot each other at the same instant and reach to draw for weapons that aren't there. Look at the closeups of Stewart and McNally, they say more than 10 pages of dialog.<br /><br />Another character Stewart runs into in the film is Waco Johnny Dean played by Dan Duryea who almost steals the film. This may have been Duryea's finest moment on screen. He's a psychopathic outlaw killer who's deadly as a left handed draw even though he sports two six guns. <br /><br />Another person Stewart meets is Shelley Winters who's fiancé is goaded into a showdown by Duryea and killed. Her best scenes are with Duryea who's taken a fancy to her. She plays for time until she can safely get away from him. Guess who she ultimately winds up with?<br /><br />There are some wonderful performances in some small roles, there ain't a sour note in the cast. John McIntire as a shifty Indian trader, Jay C. Flippen as the grizzled army sergeant and Rock Hudson got his first real notice as a young Indian chief. Even John Alexander, best known as 'Theodore Roosevelt' in Arsenic and Old Lace has a brief, but impressive role as the owner of a trading post where both McNally and Stewart stop at different times.<br /><br />Mann and Stewart did eight films together, five of them westerns, and were ready to do a sixth western, Night Passage when they quarreled and Mann walked off the set. The end of a beautiful partnership that produced some quality films.",1 +721,i just got puzzled why damn FOX canceled the season3 although season2 was not as good as season1 which is excellent indeed!!!i like it so much that i even thinking about buying DVD on Amazon.(failed! :_(i am a Chinese student and it's inconvenient for me to get a international credit card and $).i just hope FOX can bring back DA someday somehow!,1 +10997,"I bought this a while ago but somehow neglected to watch it until last night. I do like Juliette Lewis although I'm indifferent to Brad Pitt. After this viewing I have to admit he's a perfectly fine actor - his character was entirely believable, and I didn't think ""Brad Pitt"" at all.<br /><br />Unfortunately I can't say the same for David Duchovny. I'm an X-Files fan and I had to look twice to confirm the date of this movie, as I'd thought it was made a few years later. I like Duchovny but found his character a little two-dimensional here, except where he's doing voice-overs. That part was strong, seemed in character, good intonation, etc. Otherwise I kept thinking ""Agent Mulder"", which is a pity.<br /><br />Michelle Forbes was a treat. Why haven't I noticed her before? (I'll be looking up to see what other roles she's done and seeing those asap) I am slightly concerned about stereotyping re Lewis, this film, and ""Natural Born Killers"" (a firm favourite). Interesting though to see a contrast of characters - in NBK she's a willing accomplice, whereas here she abhors the violence and tries very hard not to acknowledge Early's dark side until it's thrust in her face.<br /><br />I enjoyed this film almost unreservedly. Apart from Duchovny's character not seeming fully-formed (and perhaps being ""washed out"" somewhat by Pitt's), it was perfect. I was also pleased with the ending - glad that the innocent heroes did not die, yet they had to suffer first. It was realistic, tense, disturbing.<br /><br />If you like NBK you may well like this movie, and vice-versa.",1 +17270,"This movie is supposed to be a ""lighthearted"" tale about Santa Claus and his ""magical and mystical"" wonders. But instead it comes off as being downright creepy. Two things in this movie that stand out in my mind as horrifying are 1) the way Santa looks.- Have you ever seen a more horrible looking Santa Claus? and 2) the ""evil rep. of Satan"" Pitch's just plain odd dances are just sickening to watch. Only watch this movie if it happens to be the MSTed version or if you like a very good laugh. I can't believe this is a children's movie.",0 +19727,"Visually speaking, this film is stunning. It has some delightful black comedic moments. But on the whole, the plot is very clichéd, as is its seeming message. If you're a fan of over-the-top violence in mainstream movies like hostel or saw, you'll love it. If you're looking for something at all high-brow, steer away. I saw it as part of the edinburgh film festival 06, and I only chose it because I was looking for something disturbing. Ultimately, it isn't disturbing. Just grinding and unpleasant to sit through. If you genuinely want to be challenged, go see something like The Lost. If you want to be grossed out, or tell your friends about a really messed up film, then this is for you.",0 +21461,"I have to say that there is nothing wrong with low budget films, so that was not my problem with it. My problem with it is that I felt like I was watching my next door neighbor's home movie. IMO everything about it just seemed like a guy wrote out a quick story, grabbed a camera, and started shooting. I understand how hard this must be to do effectively, but when I pay to rent a film, I expect to feel like I am watching some type of professionally made movie.<br /><br />John Schneider has a huge resume, is a great actor, and was fine in this film. The other people in it were not. I understand how it must be fun, and cheaper to use friends, and relatives as the cast, but it doesn't make for convincing acting. It seemed like the way it was shot, he was trying to give many of the scenes a more interesting look, but when the writing, plot, and acting are there to begin with, that type of style isn't necessary, and it is a distraction.<br /><br />Also on a technical level, it had digital artifacts all over the place. In the first scene of all of those fine cars, when they did a slow scan of them, they appeared to jerk back and forth just a little bit. The problem isn't in my viewing equipment, (Benq PE-8700 84"" diagonal) but somewhere in the production. I've never seen that kind of artifact in a professionally made film before. Then there was the sound. It sounded like they didn't do any voice-overs, which may be o.k. unless it sounded like the track in this film. It sounded like the built in microphone on the camera.",0 +22820,"This mindless movie is a piece of crap and boring like the full house repetitions. For all the people who want to see a great, exciting and cool horror movie shouldn't even think about watching this bunch of mindless work. a F- in my opinion. I have one question, what were they thinking? Let's make a list: 1) bad script 2) bad script 3) bad script 4) bad acting 5) bad directing and last but not least a bad script. I mean I am not like grumping about every movie, but I was disappointed when I watched it. This movie should be banned into a box, locked and sunk down into the sea. So please don't do something like this again, please, please, please!!!!",0 +8347,"The first collaboration between Schoedsack & Cooper is a compelling documentary on the migration of the Bakhtiari tribe of Persia. Twice a year, more than 50,000 people and half a million animals cross rivers and mountains to get to pasture. You'll feel like a pampered weakling after watching these people herd their animals through ice cold water and walk barefoot through the snow to cross the mountains while trying to get their animals to walk along steep and narrow mountain paths.",1 +15588,"You may consider a couple of facts in the discussion to be spoilers.<br /><br />I'm sorry, but Spielberg didn't deserve to win any Oscar for this piece, and I think the Academy was right in that vote. (Other Oscars for best actor nominations and such... that I don't know about. But it would be hard to justify, given what they were told to do and what you see in the final product.) The way Spielberg directs this is so contrived, so meddlesome. While watching this movie a distinction made during a Film as Art course I have taken was screaming at me: ""Sentiment is honest emotion honestly rendered. Sentimentality is sugary and unreal, a false view of life."" This is over-the-top sentimentality. When in real life to two people ever begin to read out loud in synchronicity, as Celie and Shug Avery do when sitting on the bed going over the letters from Nettie they have found? There are examples of this type of faux behavior throughout the film: all the men crowding around Miss Millie's car and then jumping in unison like a flock of birds taking off when she goes to drive away; Harpo falling through the roofs of various buildings he's working on (a cheap slapstick gag); the whole troop of revelers heading from the Jook Joint en masse to the chapel, as if magically entranced by the choir's singing... on and on. Nothing rings true. I even wondered if Harpo's name was chosen purposefully because it's his wife Sophia's real name, ""Oprah,"" backwards. Spielberg isn't above such ""cuteness.""<br /><br />It's not that Spielberg is incapable of honestly rendered action and emotion. Schindler's List was amazing, deeply touching for me, and I greatly admire Saving Private Ryan too for its realism, even if the story is a bit contrived.",0 +10938,"I thought that The sentinel was going to be a mediocre movie.When I finally saw it,I took a good surprise.The movie isn't great thing but it's very fun and the action scenes are very well done.This movie reminded me TV series like 24 or Alias.It's very similar to that series and it reminded me too,to the Wolfgang Petersen's thriller In the line of fire.If you're going to expect one of the most original and and one of the greatest thrillers in the history of movies,you will be disappointed.But if you go with little expectations,you will enjoy The sentinel.<br /><br />Rating:7",1 +20703,"Kurt Thomas stars as Jonathan Cabot some kind of a gymnast who trains for a special game which involves being hunted by a group of ninjas, but those ninjas won't stand a chance, especially since Cabot is a gymnast! Taken as a whole Gymkata is one helluva bad movie, the atrocious acting, the god-awful script and really incompetent directing make the quality below human standards, however this movie is so terrible it becomes really, really funny. I mean with dialog such as ""I know I'll outsleep them!"" or ""Ha!, your through!"" only add to the mock value that Gymkata more then obtains. Besides it's (Wisely) the only movie that has are hero a gymnast who finds things to swing on in the heat of the moment.",0 +20784,"Thomas Clay has been mixing with the wrong types. That's the trouble with young people these days, they have no respect.<br /><br />Seriously this film should be avoided at all costs. The action in the main body of the film is slow and rather stodgy and ambles to the drug crazed ending as if, like it's director, it has no where better to go. We are introduced to the main title character who is a bit of an outsider, we see him at school and at home not quite fitting in, feeling awkward in himself as so many adolescents do. Robert falls in with bad lads and starts missing school and taking drugs and before you know it he is a psycho rapist.<br /><br />The film is really about Clay's total failure to understand the links between violence imagery and violent acts. Clay seems to think a generation of crazed youth are made evil by scenes of war on our TVs. yet he has filmed the most disgusting piece of SIMULATED violence. Is this guy for real?<br /><br />If Clay has not seen YouTube perhaps he is naive and unaware of will be done with the brutal climax scene from his film? All anyone will want to see is the most hideous scene from the end of the film and I am sure that will be what sticks with people. <br /><br />The rest of the film is pointless for in committing such an act of violence to film Clay not only damns young people who are actively engaged in preventing war, he also damns himself as perpetrator of extreme, tasteless violence for no better reason than his own personal celebrity status.<br /><br />Shame on all involved.",0 +314,"House of Games is a wonderful movie at multiple levels. It is a fine mystery and a shocking thriller. It is blessed with marvelous performances by Lindsay Crouse and Joe Montegna, and a strong, strong cast of supporting players, and it introduces Ricky Jay, card sharp extraordinaire, prestidigitator and historian of magic. Its dialogue, written by David Mamet, is spoken as if in a play of manners and gives the movie (in which reality is often in question) an extra dimension of unrealness.<br /><br />On the face of it, House of Games is a convincing glimpse into the unknown world of cheats and con men, diametrically different from The Sting, which was played merely for glamour and yuks. At this level it does succeed admirably.<br /><br />However, you cannot escape the examination at a deeper level of the odyssey of a woman from complacent professional competence to incredible strength and self realization. The only movie I know of which treats the theme of emergence of personal strength in a woman in as worthy a way is the underrated Private Benjamin. That thoroughly enjoyable movie unfortunately diffuses its focus, hopping among several themes and exploiting the fine performance of Goldie Hawn to chase after some easy laughs. House of Games sticks to its business. As Poe once said of a good short story, it drives relentlessly to its conclusion.<br /><br />There is another strain of movies-about-women, epitomized by Thelma and Louise, a big budget commercial money maker with the despicable theme that women are doomed, whether or not they realize their inner strengths. What tripe.<br /><br />As usual you really ought to see this film in a movie theater. It should be a natural for film festivals. Nominate it for one near you if you get the chance.<br /><br />I bought the original version of House of Games and gave it to my 23 year old daughter. Better she should see it on a TV than not at all.",1 +23665,"I have read all of the Love Come Softly books. Knowing full well that movies can not use all aspects of the book,but generally they at least have the main point of the book. I was highly disappointed in this movie. The only thing that they have in this movie that is in the book is that Missy's father comes to visit,(although in the book both parents come). That is all. The story line was so twisted and far fetch and yes, sad, from the book, that I just couldn't enjoy it. Even if I didn't read the book it was too sad. I do know that Pioneer life was rough,but the whole movie was a downer. The rating is for having the same family orientation of the film that makes them great.",0 +20680,"I was thirteen years old, when I saw this movie. I expected a lot of action. Since Escape From New York was 16-rated in Germany I entered the movie as fallback. It was so boring. Afterwards I realized that this was just crap where a husband exhibits his wife. I mean today you do this via internet and you pay for instant access. It is more then 20 years ago, but I am still angry that I waste my time with this film. This is a soft-porno for schoolboys. Undressing Bo Derek and painting her with color - nice. But then they should named the film Undressing Bo and painting her.",0 +21666,"From the beginning of the movie, it gives the feeling the director is trying to portray something, what I mean to say that instead of the story dictating the style in which the movie should be made, he has gone in the opposite way, he had a type of move that he wanted to make, and wrote a story to suite it. And he has failed in it very badly. I guess he was trying to make a stylish movie. Any way I think this movie is a total waste of time and effort. In the credit of the director, he knows the media that he is working with, what I am trying to say is I have seen worst movies than this. Here at least the director knows to maintain the continuity in the movie. And the actors also have given a decent performance.",0 +5850,"One of the more satisfying Western all'italiana, Johnny Yuma has the freshness of many WAI made during the heyday of the genre and is highly recommended for fans of the genre or offbeat, intelligent cinema.<br /><br />Johnny Yuma is, in most respects, not terribly original, but this actually does not count against it. The success of a genre film depends on how well it meets the audience's expectations as well as provides surprising variations on these expected elements. Earlier, pleasing experiences are recreated but with subtle (or major) twist that provide continuing interest. The quality of the execution is also, obviously, important. A tired retread will be less successful than a sincere attempt to entertain or move the audience.<br /><br />Given these criteria, Johnny Yuma succeeds. There are numerous reprises of elements from earlier films. The setting is the brutal, twisted semi-feudal twilight world of shared by many of the best ""Gothic family"" westerns made 1964-1968 such as Tempo di massacre (1966). The plot is a combination of the basic Fistful of Dollars (1964) plot and the Ringo films, a fact not surprising as screenwriter Fendiando di Leo was involved in both. Di Leo was one of the best screenwriters in the popular cinema coming out of Cinecitta in the 1960s-70s and his work helped provide much of the thematic continuities and coherency to the genre (Along with a couple of other personalities in a few distinct circles of actors, directors, and screenwriters). In the FOD plot, the protagonist arrives in town, stirs up a tense situation, then undergoes a near-death followed by a resurrection (in some films, like Quella sporca storia nel west (1968) it is quite literally a crucifixion). The Catholic undertone to the narrative and the symbolism is intriguing, especially given the implicit populist/explicit socialist leanings of the filmmakers and their films. The Ringo plot, developed more fully by screenwriter Ernesto Gastaldi in a series of films starring Guliano Gemma, a egoistic protagonist chooses the interest of a community over his own through the medium of a relationship with a member of that community (with a healthy dash ironic uncertainty).<br /><br />The relationship between Carradine and Johnny is clearly based on that of Manco/Mortimer from a Fistful of Dollar (1965). The two scene of the exchange of the gun belts provides a clever dialog and understanding between the two. Numerous films, including Da uomo a uomo (1968) or even El Chuncho, quién sabe? (1967), use this relationship between an older and younger man (father/son, older/younger brother, Anglo adviser/adversary and peasant revolutionary) as a central dynamic to the plot.<br /><br />Additionally, there is the focus on deception and misdirection, mazes and mirrors, that recur throughout the best early WAI. The canons and pueblos of Almeria become literal mazes through which protagonist and antagonist play shifting games of cat and mouse.<br /><br />What distinguishes Johnny Yuma from other WAI is the quality of director Romolo Guerriri's use of visual/psychological space together arrangement with the script's intelligent mechanisms to forward the plot. Dialogue was never very important to the WAI and often absurdly unintelligible (thought there are exceptions, such as the cynical commentaries in Django (1966) or Faccia a faccia (1967).<br /><br />Psychological depth of character is created almost entirely through iconic imagery, it's juxtapositions, and it's description of the overall narrative situation. See how the presence of the deadly Samantha is felt during the beating scene watching from the roof or from the background of the action. Or how Johnny strips Samantha and Pedro of their security and confidence in their power through his stealthy invasions of their ranch, hotel, even bedroom (this, again, is a theme from FOD). Finally, note how there is a focus on the search for information. Like many elements, this is borrowed from FOD which was ultimately based on the hard-boiled mystery novel Red Harvest. It is through incidental contacts, wanted posters, overheard conversations, glances out of windows, watches left in the dust, or mistaken identities and movements through the ripples created by the actions of Pedro and Samantha within this surreal and absurd reality that the narrative tacks forward to it's conclusion.<br /><br />The movie was notable in it's time for what were perceived of as excesses in violence. Of course, these films were hardly more violent than many American westerns. What was different was the psychological intensity of the violence and the causes to which it was attributed, which is to say that it was not the violence but it's meaning that had changed. Johnny Yuma is distinct and interesting in it's use and portrayal of violence and this is another interesting aspect of the film.<br /><br />What I personally find most interesting about most of this genre is the link it provides to the anonymous, nameless audiences in Italy and Spain to whom these recurrent narratives held some significance and interest. The artifact may have no intrinsic worth in and of itself some flint debitage from a prehistoric site, a shard of cruse pottery, or a moldering piece of leather and rusted metal but it is reference to some nameless presence, lives, that were significant simply because they existed. While Johnny Yuma has intrinsic worth, much of it's interest for me derives from this connection and mystery.<br /><br />Top spaghetti western list http://imdb.com/mymovies/list?l=21849907<br /><br />Average SWs http://imdb.com/mymovies/list?l=21849889<br /><br />For fanatics only (bottom of the barrel) http://imdb.com/mymovies/list?l=21849890",1 +6129,"During a Kurt Weill celebration in Brooklyn, WHERE DO WE GO FROM HERE? was finally unearthed for a screening. It is amazing that a motion picture, from any era, that has Weill-Gershwin collaborations can possibly be missing from the screens. The score stands tall, and a CD of the material, with Gershwin and Weill, only underscores its merits, which are considerable. Yes, the film has its problems, but the score is not one of them. Ratoff is not in his element as the director of this musical fantasy, and Fred MacMurray cannot quite grasp the material. Then, too, the 'modern' segment is weakly written. BUT the fantasy elements carry the film to a high mark, as does the work of the two delightful leading ladies - Joan Leslie and June Haver. Both have the charm that this kind of work desperately needs to work. As a World War II salute to our country's history - albeit in a 'never was' framework, the film has its place in Hollywood musical history and should be available for all to see and to find its considerable merits.",1 +5447,"Why a good actress like Elizabeth Berkley stars in this commonplace movie???!!! The cast gives some good performance (Elizabeth Berkley as a Barbie girl, Ele Keats as a girl without mother and Justin Whalin, a guy eternally lessened by his bother), but the direction is extremely boring and the story is NOT so interesting and original. I can NOT believe that a movie like this was produced for the big screen! Julie Corman (the producer): are you CRAZY???!!!",1 +3129,"It's not too bad a b movie, with Sanders, Barrie, Hale, Cowen, Hamilton, Gargan, Fitzgerald and even Willie Best we could be either with Charlie Chan, Moto, the Falcon, Blackie, Holmes or the Saint etc. In other words you get the chance to spend another hour in the company of some old friends, from plain to urbane, murdering and being murdered - always a pleasure in my book.<br /><br />Barrie's a hard-boiled dame out to avenge and clear her framed and dead father, a police detective by planning and carrying out with her coterie a string of underworld assassinations. Which would surely have had the opposite effect! Sanders joins in the fun simply by dancing in the right club in the right place in the right city at the right time with the right lighting falling on both him and the first killer (at the right time!) and killing him.<br /><br />The story and acting's OK, the only gripe I've got is near the end with the hurried and almost laughable discovery of who the evil genius (Waldeman) was - did they almost forget about his relevance in the plot? That said, a solid entry in the series.",1 +16279,"This is an hybrid creature born at Carl Macek mind. With Robotech the second generation (Robotech Masters) and Megazone 23 into one miserable movie, that have no logic! The story is very, very bad, and you cannot forgive the action of Megazone when have nothing to do with Robotech. If this movie have so high rank is for the TV series and not for itself!! I did said it, the name cannot save this!",0 +15632,"Zu Warriors most definitely should've been an animated series because as a movie it's like watching an old anime on acid.The movie just starts out of nowhere and people just fly around fighting with metal wings and other stupid weapons until this princess sacrifices herself for her lover on a cloud or something.Whether this princess is a god or an angel is beyond me but soon enough this flying wind bad guy comes in and kills her while the guy with the razor wings fights some other mystical God /Demon/Wizard thing.The plot line is either not there or extremely hard to follow you need to be insanely intelligent to get this movie.The plot soon follows this Chinese mortal who is called upon by this god to fight the evil flying,princess killing bad guy and soon we have a very badly choreographed Uwe Boll like fight scene complete with terrible martial arts on a mountain or something.Even the visuals are weird some might say they are stunning and colorful but i'm going to say they are blurry and acid trip like (yes that's a word!).I watched it both dubbed and with subtitles and both were equally bad and hard to understand....who am i kidding i didn't understand it at all.It felt like i was watching episode 30 of some 1980's anime and completely missed how the story began or like i started reading a comic series of 5 at number 4 because i had no clue how this thing started where it was going or how it would end i was lost the entire time.I can honestly say this was one of the worst film experiences ever it was like watching Inu-Yasha at episode 134 drunk...yeah that's right you don't know what the hell is going on.Don't waste your brain trying to figure this out.",0 +18380,"This film is beautiful to look at, but is like watching really bad experimental theater. The plot (if there was one) doesn't make any sense. But it is very ""artistic"". Lots of shots of half-dressed actors wrestling and looking deep into each other's eyes. Lots of arty shots through windows and with people out of frame. Mumbling and people wandering wistfully. Lingering close-ups of faces and bodies. By the time you get to the threesome on the roof with the cat, you'll be ready to throw a bottle of KY at the screen.<br /><br />It is supposed to be about a father and son's relationship, but you will just be wishing the two of them would just f*$& each other and get it over with. If you have always wanted to see bad Russian gay porn without any money shots, your wish has been granted.",0 +910,"One of the great classic comedies. Not a slapstick comedy, not a heavy drama. A fun, satirical film, a buyers beware guide to a new home.<br /><br />Filled with great characters all of whom, Cary Grant is convinced, are out to fleece him in the building of a dream home.<br /><br />A great look at life in the late 40's.<br /><br />",1 +3968,"Here's the kind of love story that I do enjoy watching. And mostly, it's for two reasons. One, it concentrates of young people, VERY young people. People who are still in their teens and are experiencing love for the first time, or at least think they are. All of us have been there in our lives and ""The Man in the Moon"" is a magnificent reflection upon our memories, maybe adding on a few more details and enhancing it further than any of us have experienced. The second reason is that is a love triangle. And I do believe that as teens, it's the most dramatic. And the story is so well developed that you believe the characters could really be in love, or are just so new to love that they just strongly believe they are and after a tragedy or so occurs, will believe it for the rest of their lives.<br /><br />The cast of ""The Man in the Moon"" is full of great talented names. It stars Sam Waterston, who is truly a versatile actor, well capable of playing tough district attorneys as well as strict, yet caring and wise fathers as in this film. Also there is Tess Harper, Jason London, and a young, young Reese Witherspoon. You look at the young, talented actress as she is at age fourteen and you think that about ten years down the road, she's going to win the Academy Award. All members of the cast pull off great performances and with the dialogue of the compelling screenplay, they are enhanced into looking like real people in real situations. As if it all really happened. This the kind of movie that I would like to see come out more often. Love story or not. I would love to see films that make everything look real and is not phony or disbelievable in any way.",1 +20759,"Brainless film about a good looking but brainless couple who decide to live their dream and take people on diving tours. The pair almost instantly make the wrong choice of customers and get mixed up with some people seeking to recover the items that we see falling to the ocean floor during the opening credits sequence. Great looking direct to video movie could have been so much better if it wasn't so interested in primarily looking good. Performances are serviceable and the plot is actually not bad, or would have been had the director and producers not redirected the plot into making sure we see lots of shapely people in bathing suits (or in what I'm guessing the reason for the ""unrated"" moniker a few fleeting bare breasts). The film never generates any tension nor rises above the level of a forgettable TV movie. If you get roped in to seeing this you won't pluck your eyes out since the eye candy is pleasant but we really need to stop producers from making films that are excuses to have a paid vacation.",0 +22306,"This is only somewhat attractive for fans of ""bad movie"" entertainment. It is more worthwhile for students of 1970's pop culture: the fashions, the furniture, the attitudes, and that great ""women's lib"" moment of the early 1970's, when it was still fresh and novel for a self-employed, independent woman to exist.<br /><br />""Superchick"" (Joyce Jillson) had a monetarily rewarding if stultifying career (after all, what is a flight attendant but a waitress at 30,000 feet -- that goes for the male ones too), she slept around with multiple men, could protect herself and others (with karate) and wasn't tied down to anything. This is the kind of emancipated woman that scared the juices out of anti-feminists, those retrograde idiots who believe that no woman is complete without a husband.<br /><br />The ""sexy stewardess"" was a potent archetype of the late 1960's to 1970's, (geez, even on ""The Partridge Family,"" I remember swinging bachelor Ruben Kincaid constantly hooking up with stewardesses) and from that point of view, this silly film is an important pop culture time capsule of the pre-AIDS, free-love, women's lib, swinging Seventies. The plot is quite awful though. And for those cavemen in the audience, there are few bare breasts to look at.",0 +10165,"Even though it has one of the standard ""Revenge Price Plots,"" this film is my favorite of Vincent Price's work. Gallico has that quality that is missing in so many horror film characters- likeability. When you watch it, you feel for him, you feel his frustration, the injustices against him, and you cheer him on when he goes for vengeance, even though he frightens you a little with his original fury. As the film goes on, his character becomes tragic. He's committed his murder, but now he must kill to cover that up. And again to cover that one up. And again... your stomach sinks with his soul as it goes down its spiral- like watching a beloved brother turn into a hood. Even if the revenge story is of old, the plot devices themselves are original- Gallico uses his tricks to kill in more and more inventive ways. A shame this one isn't available for home veiwing.",1 +336,"This film is the best film Jim Carrey has ever made. Carrey did not have his usual face making stuff in this film. He was both funny and sad. Carrey played a reporter named Bruce Nolan. Nolan blames God(Morgan Freeman) for everything that goes wrong in his life. Then, God comes down from heaven and gives Bruce his powers. As I said before, Carrey did an excellent job. I also thought that Morgan Freeman and Jennifer Aniston were great as supporting actor/actress. The plot was good because it had many subpoints in the main point. This movie can be funny(Bruce's dog) as well as sad(the ""break-up""). The script worked well, too. I am glad they made a sequel to this film. I rate this film a 9/10.",1 +22307,"Suggesting nothing less than a movie-length version of the 1970s TV hit ""Love, American Style,"" decked out with flashes of nudity, ""Superchick"" (1973) is a lighthearted piece of fluff that somehow still manages to entertain. And the lead character here, Tara B. True, really IS some kind of superchick. A stewardess (not flight attendant) who's so good-looking that even her plane's autopilot has made a pass at her (!), and with a hunky boyfriend in every port, this wingin', swingin' gal really does put the ""lay"" in ""layover."" What with her germaphobe surgeon beau in New York, her playboy with gangster problems in Miami, and her creatively challenged rock star dude in L.A., Tara sure does keep busy. And when she's not draining these guys of all their manly energies, as the viewer learns, she's liable to be taking a karate class, mile-high clubbing, fending off flashers and rapists, attending groovy pot parties AND stopping a hijacking attempt on her airplane. As I said, lighthearted fun, and surely good for a night when you're feeling somewhat brain-dead and just want to veg out in front of the tube. Future astrologist Joyce Jillson does bring some vacuous charm to her role as Tara, and the film looks handsome enough to please. Disappointingly, buxom '70s faves Uschi Digard and Mary Gavin (aka Candy Samples) are wasted here in very small roles, but still get to do what they do best--show off their chesticles! Though the picture is never laff-out-loud funny and doesn't really have many thoughts in its metaphorical head, it does succeed in being consistently amusing, and I suppose that is something. Strange that the end credits should call attention to Ms. Jillson's body double, however; don't think I've ever seen THAT before!",0 +22913,"Painful to watch, and not entirely for empathy with the struggles of the characters. Two of the main characters, Cynthia the mother and Monica the acknowledged daughter, spend the great bulk of the film pathetically mewling and bitterly bitching respectively. Their characters are so firmly established that their redemption into tolerable personalities after a quick family catharsis is unbelievable. It wasn't worth the wait. I wish a worthy pitch for honesty among families was less of a headache to view.",0 +20859,"i'm being generous giving this movie 2 stars. the line about ""have you even seen the wizard of oz"" was the best part for me! with terrible writing and acting like displayed in this movie it's no wonder so many are taken in by worthless tv reality shows. do yourself a favor and get out of the house and hit a royals baseball game, your gonna be glad ya did!",0 +2985,"We often see movies about undesirable things going on in politics, but I still recommend ""City Hall"". In a role he was born to play, Al Pacino stars as New York's mayor who has to deal with the shooting of a boy. But it turns out that nothing that he does will really have any effect. In this movie, the characters are as gritty as we would expect of anyone involved in a political scandal. No matter how much you trust any given politician, you may have your doubts after watching this movie.<br /><br />I understand that I can't name any specific example of something similar to what this movie portrays, but that's not the point. If we had idealistic impressions of those at the top, this movie tears such ideas down. Certainly one that I encourage you to see. Also starring John Cusack, Bridget Fonda, Danny Aiello, Anthony Franciosa and David Paymer.",1 +10878,"I know, that's not what you expect from a film with this sort of<br /><br />lineage- it's a direct descendant of The Best Years of Our Lives<br /><br />and The Men... films dealing with men who are in the hospital<br /><br />dealing with tragic circumstances. But this film is full of wonderful<br /><br />surprises and performances. It features stellar performances from<br /><br />Eric Stoltz and Helen Hunt (including a rather risque nude scene)<br /><br />and Wesley Snipes and William Forsythe. As Emanuel Levy wrote<br /><br />in his book Cinema of Outsiders (about the Independent film<br /><br />movement) ""The Waterdance is coherant, attentive to detail, and<br /><br />unsentimental with a wicked down to earth humor- it' s at once<br /><br />funny and sad, and the entire cast is impressive."" I was<br /><br />extraordinarily moved by this film, it's hard hitting yes, but also has<br /><br />very tender moments and laugh out loud moments. A rare gem.",1 +15916,"I'm not sure what. I just couldn't laugh at it. I had an open mind. I didn't want to be a tight-@ss about it. But I seriously just couldn't laugh at this film. It was just not funny to me. Some parts it seemed like Ben Stiller and Jack Black tried too hard. Just because you put two very funny men together doesn't mean that this is going to be an excellent comedy. Some movies just shouldn't be made. This is one of them. Because it does a lot of old jokes and the acting was just stupid. I know, I know it's a comedy. Sort of at least. But I was just not impressed. I'm sorry, but I cannot give this anything lower than a two. And that's all I'm giving. <br /><br />2/10",0 +11669,"Well, the movie isn't exactly ""funny.""<br /><br />Okay, I admit, there are a few HUMOROUS lines, but definitely nothing that is laugh-out-loud funny. For example: Right before a steamy sex scene between Eleniak and one of her male costars, sh is handcuffed to the bedpost and he cannot remove her shirt. Before leaving the room to retrieve the key, he tells her, ""Okay, don't go anywhere.""<br /><br />See, humorous, but not funny.<br /><br />The plot and acting are pretty good.<br /><br />But Erika Eleniak definitely steals the show. She's hot and sexy and there is a really steamy scene with her that one can't help but rewind and re-watch.<br /><br />There are also some other very sexy scenes with her and she has some very provocative lines.<br /><br />Overall, 5 stars. I'd only give it three if not for Erika Eleniak.",1 +19942,"The idea is to have something interesting happening in the first ten minutes to keep the audience hooked. Late Night Shopping manages to avoid interest for much longer than that. When we do get to a point, it is so monumentally moronic that I kept thinking I must have misunderstood it. But I didn't.<br /><br />Sean tells the story of an Osaka landlord who rented the same apartment to two people at the same time who worked different shifts and so didn't realise they were sharing. His friend asks ""But what about the weekends?"" Sean doesn't have an adequate explanation. Sean then tells the story of his own similar problem, which is that he isn't sure his girlfriend is still living at home as he works during the night and she works during the day so they never see each other. This has been going on for three weeks. But his friend doesn't ask: ""Yes, but as I said before, what about the weekends? You must see her then. It doesn't make sense. What are you going on about, Sean? Are you on medication or something?"" But let's be generous and assume that they both work seven days a week.<br /><br />We see Sean checking to see if the soap and towels have been used. (In fact, bizarrely, he starts to carry the soap around with him.) But what about his girlfriend's conditioner and shampoo, sanpro and moisturiser, toothpaste and toothbrush. Let's go to the kitchen. What about food and drink? Is any missing? Has any been bought? In the bedroom, has the shared bed been made or not? Are her clothes being used and exchanged for clean ones? Is the laundry basket fuller? In the toilet, is the seat up or down? I mean, good grief!<br /><br />And to cap it all Paul arranges to leave work early to see if his girlfriend is still living at home. Why doesn't he just phone her?<br /><br />But it gets worse. In the last act although no-one told Vincent where the rest of the group are going he manages to find them. Lenny's love interest and Sean's girlfriend conveniently appear to be best friends and also manage to find the group. There isn't even the slightest attempt to explain any of these extraordinarily unlikely coincidences.<br /><br />To be fair the dialogue is OK but not nearly good enough to make up for the weak characters or annoyingly lame story.<br /><br />I heard one of actors interviewed and he promised ""no guns, no drugs, no corsets."" I thought, ""great"". But after half-an-hour of tedium I was yelling at the screen: ""I want guns! I want drugs! I want corsets!""<br /><br />It wouldn't have taken much to sort these problems out but on the official website the director boasts that the film wasn't script-edited. That's all you need to know.",0 +13907,"Okay. So there aren't really that many great movies around. Recent gems like American Dream, The Straight Story and even Toy Story 2 don't normally come so close together. But boy (!) does this film counter-balance the quality.<br /><br />I have NO idea what these people thought they were doing. Are the financiers in this world so easily convinced to fund such a crock of ****? I can just see it now...<br /><br />Producer - ""So we've got Joe Fiennes. He's cute as a button and was pretty good in Shakespeare in Love. And we've got Rhys Ifans, who isn't cute but was cool in Notting Hill. We'll mix in a really mediocre score, a few forgettable post-Britpop tunes, hemlock root and lizard brains and hey presto you've got the worst film of the new millennium.And believe me, it's gonna be a hard job to make anything as bad as this in the next thousand years.""<br /><br />The Bank - ""I like it! Any unnecessary sex? Bad camera movements? And what about the worst accents this side of Devil's Own?""<br /><br />Producer - ""Yeah, we got plenty of those.""<br /><br />The Bank - ""Sounds great, where do we sign?""<br /><br />Please.",0 +11001,"I had seen 'Kalifornia' before (must be about 10 years ago) and I still remember to be very impressed by it. That's why I wanted to see it again and all I can say is that it still hasn't lost its power, even though I'm used to a lot more when it comes to movies than that I was ten years ago.<br /><br />'Kalifornia' tells the tale of the writer Brian Kessler and his girlfriend Carrie Laughlin, a photographer, who want to move to California. But instead of stepping on a plain and flying right to the state where they say it never rains, they choose to make a trip by car. He wants to write a book about America's most famous serial killers and she will make the matching pictures. But because their car uses an enormous amount of petrol, they decide to take another couple with them, so they can spread the costs of the trip. Only one couple has answered the add, so they will automatically be the lucky ones. But they haven't met each other yet and when seeing the other couple for the first time, when their trip has already started, Carrie is shocked. Without wanting to be prejudiced, she can only conclude that Early Grayce and Adele Corners are poor white trailer park trash. She definitely doesn't want them in her car, but Brian doesn't really mind to take them with them and decides to stop and pick them up anyway. At first the couple doesn't seem to be that bad after all, but gradually Early Grayce changes from a trashy hillbilly into a remorseless murderer...<br /><br />Not only is the story very impressive, so is the acting from our four leads. Brad Pitt is incredible as Early Grayce. His performance in this movie may well be his best ever. The same for Juliette Lewis. She plays the childish and naive girlfriend that doesn't want to hear a bad word about her Early and does that really very well. But David Duchovny and Michelle Forbes are a surprise as well. They both did a very good job and I really wonder why we never heard anything from Forbes again since this movie, because she really proves to have a lot of talent.<br /><br />Overall this is a very good and impressive psychological thriller with a very powerful story, but because of the graphic violence, I can imagine that it may not be to everybody's taste (although I don't really see another way how to portray a serial killer in a believable way). Personally I really liked this movie a lot and the violence never bothered me (it's a part of the story that's too important to be left out). I reward this movie with an 8/10.",1 +4820,"I got hooked on this as apparently ABC has licensed this show to Pearl TV in Hong Kong. It caught be my surprise, as it was a break from listening to anything Chinese. But i started getting reeled in, as the cast and the story lines are just NYC enough and thoughtful. Nothing too unbelievable, though I think it's very very stereotypical of them to write Damien as a potential black man with a sheet!!!! That has been the most disappointing aspect. The rest is great and I'm sad to learn on IMDb that i can't look forward to watching season 2 when i get back to the US. I'm am just as disappointed as the other commentators that this showed much promise and quality and taste. But just as shows that show characters getting closer, it's probably harder for people to watch if the start watching several episodes in. Which is apparently a bit too late for the eager networks.",1 +19800,"This is a dry and sterile feature filming on one of most interesting events in WWII and in history of warfare behind the front line. Bad drama composition is worst about this film as plot on killing Hitler suppose to be pretty dramatic event. There is no character development at all and idea that Tom Cruise suppose to play a high rank commander that questions his deepest inner thoughts on patriotism and treason is completely insane. I believe that Mister Bin would play it better. Generally speaking, film pretty much looks as a cheep copy of good German TV movie ""Stauffenberg"" from 2004, but can't get close to that film regarding any movie aspect whatsoever. However, movie obviously gets its financial goal with pop-corn audience that cherishes Hollywood fast-mood blood and shallow art values.",0 +16691,"What an awful movie! The Idea of robots fighting each other is cool, but the storyline is ridiculous, real human action laughable, acting non-existent and special effects (on which, this type of movie must depend) are archaic. I thought it must have been made around '80-'84 and was amazed to see it was from 1990. That's 5 years after Aliens! OK, lots of people said it was good considering the low budget, but I just think 'what's the point?'. it looks totally unbelievable. I wouldn't mind seeing a remake with modern special effects and a completely re-written story because I still like the idea of huge robots beating crap out of each other.",0 +12100,"The plot of the story and the performance of the lead actors are very much down-to-earth! The romance between two teen-age boys on the screen was done in good taste. You can easily relate to their emotions if you are one but if you are not one, you can appreciate the kind of love the film is trying to impart.",1 +16732,"Are you familiar with concept of children's artwork? While it is not the greatest Picasso any three-year-old has ever accomplished with their fingers, you encourage them to do more. If painting is what makes them happy, there should be no reason a parent should hold that back on a child. Typically, if a child loves to paint or draw, you will immediately see the groundwork of their future style. You will begin to see their true form in these very primitive doodles. Well, this concept of children's artwork is how I felt about Fuqua's depressingly cheap and uncreative film Bait. While on all accounts it was a horrid film, it was impressive to see Fuqua's style begin emerging through even the messiest of moments. If you have seen either Training Day or King Arthur, you will be impressed with the birth of this director in his second film Bait. While Foxx gives a horrid, unchained performance, there are certain scenes, which define Fuqua and demonstrate his brilliance behind the camera. Sadly it only emerged in the final thirty minutes of the film, but if you focus just on those scenes, you will see why Fuqua's name appears on so many ""Best Of "" film lists.<br /><br />I will never disagree with someone that Fuqua's eye behind the camera is refreshing and unique. His ability to place a camera in the strangest of places to convey the simplest of emotions is shocking. I am surprised that more of Hollywood hasn't jumped aboard this bandwagon. Even in the silly feature Bait, you are witness to Fuqua's greatness. Two scenes that come directly to mind are the explosion scene near the middle of the film and the horse scene close to the end. In both of these scenes I saw the director Fuqua at work. Alas, in the rest of this film, all I saw was a combination of nearly every action film created. The likable hero down on his luck that suddenly finds his life turned around by some unknown force is a classic structure that just needs to die in Hollywood. We have seen this two often, and no matter who you are (unless you are Charlie Kaufmann), you cannot recreate the wheel. It is just impossible with this genre, and it is proved with Bait. I was annoyed with Fuqua for just sitting back and allowing this to happen, which could explain why it took me three viewings to finish this film. I was just tired of the structure, and while I hoped that Fuqua would redefine it, he did not.<br /><br />Then, there was the acting. While Jamie Foxx has never impressed me as an actor, I was willing to give this helmed vehicle a try. I wanted to see if he could pull off another dramatic role similar to Collateral. I was under the impression that perhaps this was the film chosen to show producers that Foxx could handle the role in Collateral. Again, I was disappointed. Foxx was annoying. Not in the sense that it was the way that his character was to be, but in the sense that it felt as if neither Fuqua nor Foxx took the time to fully train Foxx on what should be ad-libed and what should be used to further the plot. Instead, we are downtrodden with scene over scene of Foxx just trying to make the audience laugh. Adding second long quips and culture statements just to keep his audience understanding that he was a comedian first, an actor second. Fuqua should have stopped this immediately. Foxx's jokes destroyed his character, which in turn left me with nothing solid to grasp ahold of. Instead of character development, he would crack a joke. Neither style worked, no joke was funny. The rest of the cast was average. By this I mean I have seen them all in similar roles. They were brining nothing new to the table, nothing solid to the story, and nothing substantial to the overall themes of the film. They were pawns filling in dead air space. Fuqua had no control over this mess, and the final verdict only supports that accusation.<br /><br />Overall, this was a sad film. With no creativity in sight and unmanaged actors just trying to upstage themselves, what originally started as a decent story eventually sunk faster into the cinematic quicksand. Foxx was annoying, without character lines, and a complete bag of cheese. In each scene I saw no emotion, and when emotion was needed to convey a message, he chose to take his shirt off rather than tackle the issues. Are my words harsh? I don't think so. When you watch any movie you want to see some creativity, some edible characters, and themes that seem to hit close to home. Bait contained none of these. While I will give Fuqua some credit for two of the scenes in this film, the remaining five hundred were disastrous. Apparently, I took the bait when renting this film, but now having seen it, hopefully I can stop others from taking that curious nibble.<br /><br />Grade: ** out of ***** (for his two scenes that were fun to watch)",0 +23460,"This movie was so bad, outdated and stupid that I had rough times to watch it to the end. I had seen this Rodney guy in Natural Born Killers and I thought he was funny as hell in it, but this movie was crap. The ""jokes"" weren't funny, actors weren't funny, anything about it wasn't even remotely funny. Don't waste your time for this! Only positive things about this were the beautiful wives :) and Molly Shannon who I'm sure tried her best, but the script was just too awful. That's why I rated it ""2"" instead of ""1"", but it's definitely one of the worst films I've ever seen.",0 +7243,"If ever anyone queries whether cinema is an art form, you can do worse than pointing them at this movie.<br /><br />Quite simply it is the perfect combination of story, script, actors and cinematography ever committed to celluloid.<br /><br />The story of a doomed bomber pilot who is missed by his heavenly conductor in the English fog during the second world war, and his subsequent brushes with the celestial authorities (or is it in his head) is played with panache by David Niven and Kim Hunter and is incredibly touching - especially in the opening scenes when the doomed pilot (Niven) describes his plight to the ground radio operator (Hunter).<br /><br />The sense of otherworldliness is heightened by Jack Cardiff's photography and the incredible production designs.<br /><br />The supreme touches extend to the heaven shots appearing in black and white and earthbound scenes presented in Technicolour - this is even mentioned by the celestial conductor (a fantastic Marius Goring).<br /><br />Not only a highpoint in British cinema, but a highpoint in cinema, period.",1 +24782,"I never quite understood the popularity of Saban's Power Rangers show which was quite simply a second rate Americanized version of Japan's ultra popular super sentai series of the past three decades! What was cool about the Japanese version gets completely lost in the American version, characterization, special effects, etc.<br /><br />Of course many kids will say that power rangers are the greatest but they would be incorrect.<br /><br />I'm sure if they spoke Japanese, they would learn how much better super sentai is over the American version.<br /><br />Power Rangers is completely awful, try Super Sentai instead! Looking for a better show, try Voltron The Third Dimension instead!",0 +14079,"I'll probably get a lot of flack for hating this movie- guess I didn't approach it with the proper dewy-eyed nostalgia of the generation before me. But suffice it to say- St Elmo's Fire was pretty crap-freaking- tastic, even as far as Brat Pack films go.<br /><br />Here is yet another lovely example of the smug, self-indulgent neurosis that is everything 80s (RENT, anyone?) The plot is virtually non- existent and the philosophies are kitchy at best, poorly delivered the rest of the time. The complete lack of anything resembling sympathetic characters doesn't help the situation. There really was no growth, no forward movement at all. Even the climactic suicide scene was effectually neutered by once again refusing to let death or anything resembling reality or adult life enter in. <br /><br />Each cookie cutter figure simply goes about making you hate them in the blandest, most predictable way possible. The Stalker is a creep for no discernible reason other than he is a Stalker and Andie MacDowell is gorgeous. The Jackass does everything in his power to constantly remind you he is, well, a jackass. The Gorgeous Slut hides really soulful, deep pain with a wild lifestyle. The Poet moods and mopes around for a full 3/4 of the film until he can reveal (!) he actually is full of teddy bears and sunshine and rainbows. The Virgin finally becomes a whole, happy human being after getting every Virgin's desire of one hot roll in the sack with a Jackass before he ditches her to really change (for real this time). The Cheating Bastard cheats until it is time for him to get caught. And finally The Feminist go around dousing holy water on any soul that utters ""commitment"".<br /><br />Which brings me to my final beef- what bond of super-cement was holding these people together as friends? I can't imagine being with just one of them- Now think of the vortex created by all that narcissism centered in one bar. And they were all so terrible to each other- heads in toilets, near rape, and sleeping around with everrrryone. The cherry was after two BFFs act like total baboons after screwing the Feminist, she's like, ""umm, actually I don't want to be with either of you anymore. Let's be friends! And we can hang out in a totally unawkward way every day knowing that I may hook up with one or the other at any given point, but neither of you are satisfying enough for commitment (NOT THAT WORD!)."" And they all smile as if to say, ""Golly gee, I never thought of that! What a great idea!""<br /><br />Only it's not. Kinda in the way that watching this movie is not.",0 +11874,"This is one of the greatest films ever made. It's an all-time classic. The character played by Ned Beatty undergoes one of the greatest on screen transformations ever portrayed. He is a shallow, almost useless, overweight insurance salesman. He is proud of his ignorance, and yet judges the ""backwards hicks"" to be the ignorant ones. When he compliments the old man on his hat, and the old man responds, ""you don't know nothing',"" the tone is set. It's true. He really doesn't ""know nothing'."" But one backwoods anal rape later, the man is practically a warrior. His shallow fake bravery is toned down into serious resolve. The old self is forever dead, left in some far off woods, soon to be under hundreds of feet of water. And what of Lewis, our intrepid guide? Lewis is a philosopher/hunter/warrior, and he's just about nuts. Burt Reynolds proved himself as an actor way back in 1972 in this film, completely giving himself in to this wonderful role. Who wouldn't want to have a friend like Lewis if one was to venture into the dangers of a forgotten/soon to be left behind world like the one our hapless travelers find themselves in. This film speaks to us on so many levels. The story feels real. It works as a complete action/adventure, with wonderful cinematography, and deliberate, grinding pacing. It works as a bit of a horror film, with the danger and almost surrealism of the encounter with the vile rednecks who objectify their ""sow"" Ned Beatty. But it also works as an art film, using incredible amounts of symbolism to convey truths that go to our very core. I have seen this film at least fifty times, and every time it comes on, I find I have to watch it. You have to watch it quite a few times to even begin to comprehend it. This is one deep movie. This is one well-acted movie. And this is one hell of a story. I gave it a 10 out of 10, and put it in my 10 all time greatest films ever made, along with Schindler's List, Casablanca, Taxi Driver, and Sling Blade, among others. Movies that make you think. Movies that take you beyond having to think. Movies that use a STORY to make their point, without trying to preach to you. If you think you know Deliverance, you might, but again, you might not. It really is that good.",1 +14520,"Despite unfortunately thinking itself to be (a) intelligent, (b) important and (c) interesting, fortunately this movie is over mercifully quickly. The script makes little sense, the whole idea of the sado-masochistic relationship between the two main characters is strangely trite, and John Lydon shows us all, in the space of one movie, why he should never have let himself out of music. His performance is one-note and irritating.<br /><br />The only positive thing to be said is that Harvey Keitel manages to deliver a good turn. His later Bad Lieutenant would show just how badly good actors can act, but mercifully his performance here is restrained.",0 +8263,"A Murder investigation goes on back stage while The Vanities, on its opening night, plays on to an unknowing audience. Odd combination of musical and murder mystery is worth a look for its cast, its production numbers, and the sheer novelty of the film.<br /><br />Gertrude Michael has the showy role of a bitchy actress intent on stopping the marriage between the show's stars, Kitty Carlisle and Carl Brisson, as well as starring in the infamous ""Sweet Marijuana"" number (which was also on a 70s Bette Midler album). So while the chorus girls shuffle around backstage, bumbling detective Victor McLaglen ogles the girls while he tries to solve the backstage murder of an unknown woman.<br /><br />We quickly learn that the maid (Dorothy Stickney) loves Brisson from afar, that the wardrobe lady (Jessie Ralph) is Brisson's mother, and that the stage manager (Jack Oakie) butts into everything. Lots of plots twists among the musical numbers. The show's best-known song is ""Cocktails for Two."" Kitty Carlisle also sings the haunting ""Where Do They Come From?"" And there's a weird rhapsody that erupts into a Harlem specialty number featuring Duke Ellington! Quite the cast.<br /><br />Some terrific acting here, especially Gertrude Michael and Dorothy Stickney. Kitty Carlisle is quite good as well. Brisson is a total zero though.<br /><br />Charles Middleton plays Homer, Toby Wing plays Nancy, Donald Meek plays the doctor, and also see if you can spot Ann Sheridan and Lucille Ball among the show girls.",1 +18678,"This movie is about a very sexy Olympic track star who is hired to coach a high school boys' basketball team. Similar to Goldie Hawn's WILDCATS, it stars Cathy Lee Crosby in the title role, and she does as about as well as the script allows. I think Racquel Welch would have been a better choice, but considering the film's apparent TV movie budget, they probably couldn't afford her. Cathy Lee does look great in every shot, but we never get to see her completely nude. The story is pretty predictable, to say the least, offering no surprises. A young and lucky Michael Biehn has the male lead role. He is the star on the team and also the love interest for Cathy Lee. Keenan Wynn has a few amusing scenes as the rich old man who runs the athletic program and doesn't think a woman should coach sports. This point is brought up throughout the film, and, needless to say, is dated. Ironically, Cathy Lee doesn't put her team through any unorthodox practice sessions; she doesn't do anything a male coach wouldn't do. There is a funny subplot involving a tall and not-so-bright player who undergoes hypnosis in order to pass his classes and play like pro basketball player Sydney Wicks. It looks like everyone had a good time making this film, but the only real reason to see it is for Cathy Lee Crosby. She's not that great an actress, but she has a dazzling smile, beautiful hair, and a very tan body.",0 +6855,"No, not really, but this is a very good film indeed, and is sadly a forgotten gem. Black and white suits the film.<br /><br />Straight forward formula, a guy had the plague and the authorities have to track down everyone he came in contact with before they die.<br /><br />Very well directed, and the acting is great. Richard Widmark as the male lead is good but is completely over shadowed in the acting stakes by Paul Douglas as the police captain, and Jack Palance (never better than this) and Zero Mostel as the baddies. Sadly Palance went on to play similar characters in some really second rate gangster or war movies.",1 +8597,"i watched this series when it first came out in the 70s.i was 14 years old and i watched it at my best friends house as my dad didn't want to watch it.it became a weekly ritual every Sunday, and as anyone will tell you for two fourteen year olds to watch a documentary in almost reverential silence must mean that this was something special.<br /><br />the broad sweep of the events of world war 2 makes for a difficult subject to document.so the makers broke it down into what they considered to be the most significant key happenings and devoted one episode to each.some episodes covered long periods such as 'wolf pack' which covered nearly all six years of the battle of the Atlantic.while the battle of Stalingrad had one episode to itself.<br /><br />this documentary could not be made today quite simply because most of those interviewed are dead.the list of significant players appearing gives an amazing insight into the thinking at the time.Anthony eden the foreign secretary,Carl donnitz,head of the u-boats,Albert speer,pet architect confident and later armament minister for Hitler.in one of the later episodes we see traudl junge, Hitler's secretary,who was with him in the bunker and it was to her that he dictated his last will and testament-she left the bunker after Hitler's suicide and escaped through the Russian lines.these and many others play a major role in the realism of the events portrayed.<br /><br />if i have any criticism of the series it is that the code-breakers of bletchly park are not included but the revelations of their part in the war only emerged after the series had been made so i cannot blame the programme makers.<br /><br />the opening titles and music are magnificent,and Lawrence Olivier's narration lends a natural gravity to the script.<br /><br />the best documentary series ever made? without doubt.unmissable",1 +21203,"Being the only movie I was able to see at this year's ""Nordische Filmtage"" at Lübeck, this year's festival will be remembered as a all-time low for me.<br /><br />This movie, which was announced as an erotic thriller, is nothing more than a sick piece of crap! Excuse the language, but there aren't any decent words to describe it.<br /><br />First of all, the actors are not the best. But even better actors would not have rescued the movie. E.g. the plot: after the first 15 minutes it was quite clear that John was sick, the neighbour girls were not real and that he killed his first girlfriend. The so called ""sex-scene"" was nothing else but disgusting (hitting each other until blood flows for me hasn't anything to do with sexuality), but unfortunately that were not the only disgusting images to be shown. Everything else was copied by other directors like e.g. Lynch, but of course without their geniality.<br /><br />So, to summarize the whole film and to save other viewers time and money: guy loses girlfriend, girlfriend turns back home, guy kills girlfriend and becomes mad afterwards, guy imagines hot, but crazy neighbour girls, guy has very disgusting sex with one of them (or so he thinks), in the end he realizes, he is crazy and his girlfriend and her new lover lay in his apartment all the time... bad story, bad actors, pictures, that make you want to vomit...<br /><br />1 out of 10 (1 point for the fact, that you realize how good you can understand Norwegian if you learned Swedish - at least one benefit of the evening - and you can't choose 0 points here).",0 +22808,"Please! Do not waste any money on this movie. It really is nothing more than a boring German Blair Witch ripoff made by some high school kids. I couldn't finish watching it, and usually I like watching all kinds of B-movies. How on earth could they find a distributor for it?!!! Funny however: Check out Wikipedia for ""dark area"". The guy who wrote the entry must be completely out of his mind. Maybe he got loads of money from the producers. Money that should have been spend on actors, camera and editing. Even that wouldn't have helped, since there is absolutely no interesting idea behind this film. Unfortunately ""dark area"" has already gotten too much attention. Please, director, producer and author of this movie, STOP making movies like that...you are not doing yourself a favor. The world would be a better place without this film.",0 +6901,"""The Brak Show "" is good .Probably not in the same level than ""Aqua Teen Hunger "" or ""Space Ghost Coast to Coast "", but definitely it have many brilliant moments .Basically it follows the life of Zorak and Brak that have normal lives and go to the school ,living in a neighborhood on the style of the 50 'sitcoms . The humor and the animation of this show it's very much as ""Aqua Teen Hunger "" (and in one episode you could see Meatwad) with bizarre situations and strange characters .But it is good ,it have funny parts . Some of the songs are great ,others not very much but I like this show . The funniest character is the father of Brak . (that is a human ,nobody knows why )",1 +18050,"As hard as it is for me to believe, with all of the awful reality shows out there over the past few years, this one has to take over the top spot for worst one yet. I am still wondering if this was actually just a spoof done by the SCTV gang. If Andy Kaufmann were still alive I'd be sure he was behind this. Can a rock band stoop any lower than has INXS to do such a shameful thing as this? The premise is simple and moronic. Audition a bunch of karaoke rejects to become the new lead singer of INXS, to take the place of Michael Hutchence (who committed suicide in 1997). Eight years and no hits later, the band commit the ultimate act of patheticness by subjecting themselves to auditioning a bunch of talentless wannabes to be the new lead singer of a band that is 20 years past its prime. So they trot all of these awful singers (I thought American Idol had its share of doozies) who do atrocious renditions of just about every classic (and predictable) rock song imaginable. And then they cut to the INXS band members who are seriously discussing the merits of each of these candidates. You could see better (and more original) rock performers at just about any night club in any city in the world.<br /><br />It has all the usual uncreative elements of every other reality show. Lame reality participants, lame interviews, lame host/emcee, lame ""judging"" of performances, and the lame booting of one participant at the end of each show. Can these shows get any more predictable? It's clearly a publicity stunt on the part of the band; a last gasp of hope at rekindling their lost stardom before they are finally buried into oblivion. Michael Hutchence, if he had any shred of dignity when alive, has to be rolling over in his grave. Not that INXS were ever a great band, but I had no idea they were this pathetic. If INXS are at all representative of what rock and roll has become, this show would be the final proof that rock and roll is once and for all, dead.",0 +9949,"I've now seen this one about 10 times, so there must be something about it I like!<br /><br />50's US sci-fi movies were pretty much a mixed bunch: they were either intelligently made and/or thought provoking or cheap and laughable cheese. Forbidden Planet is a bit of both, but in that rarity for the genre, colour.<br /><br />It also had a head start with the script - although Shakespeare might not have recognised it, it was based on his timeless play and thus guaranteed a certain amount of longevity itself if made well.<br /><br />It's the story of one mans murderous id artificially magnified infinitely by machines a dead race left switched on 200,000 years before. Along the way the plot bristles with 50's stereotypes and corn so pure you wonder sometimes why you're watching it, but always do. That love triangle thing...yuk! Disney's cartoonery still holds up well, and the cartoon backgrounds straight off the covers of Galaxy magazine etc look good even after 50 years. Robbie driving the car over the desert in the far distance is a hoot though!<br /><br />All in all, with all faults, the best of its kind and we should be grateful that such a pristine print survives.",1 +16436,"If this series supposed to be an improvement over Batman - The Animated Series, I, for one, think it failed terribly. The character drawing is lousy... (Catwoman, for instance, looks awful...) But what really annoyed me is that it made Batman look like a sort of wimp who just can't take care of himself in a battle, without the help of two, even three sidekicks. I mean, he's Batman, for God's sake! I know the comic books, I know that Nightwing and Batgirl are supposed to be Batman's allies, besides Robin, but still... making Batman say that he needs help from them... What, he can't handle a few punches? In BTAS, he could face a dozen adversaries without any problem... He's getting old? Come on...<br /><br />And another thing: I really don't think that Batman would allow a kid like Tim Drake to go into battle that soon, without years of hard training. One, it's irresponsible (and Batman is everything, but irresponsible), and two, it's not what happened in the comics, if we are to remain faithful to them.<br /><br />Batman - The Animated Series made history, with its animation, its stories and its characters... That really was a legend of Batman. The New Adventures series turned the legend into just another Batman flick.",0 +1445,"Ossessione<br /><br />Luchino Visconti's debut film, this Italian noir is generally credited with launching the Neorealist movement--well, it says so right on the back of the box--and is a sometimes penetrating, sometimes lugubrious portrait of lonesome individuals in moral flux. Set in Fascist Italy, an assortment of supporting characters--including an ingenuous drifter who espouses Communist virtues--embody the remote desperations of a country searching for its identity from without, drifting phantasms longing for a soul. Although Visconti's compassion for the disenfranchised and his ability to express their lamentable conditions was already well-developed, the spider web of deceit is tenuous--although a staple of noir is to posit a protagonist manipulated by fate and the femme fatale, Gino here is so unhinged to begin with that you fear he might deserve it--the cosmic irony too didactic, the illicit relationship strained with bathos. All the same, it's incisive and essential, although its actual impact on film history is certainly debatable.",1 +20283,"This should be a great film... Meryl Streep and Jack Nicholson co-starring as two newspaper writers. Mike Nichols directing. Uh uh. It's dull dull dull! Pointless and predictable! Slow and unfocused!<br /><br />It's a cookie cutter 'boy meets girl, boy marries girl, boy has affair, girl leaves boy' story. Now theres an original concept! After squirming through two hours (was it only two? It felt like six.)I wasn't sure whether it was a comedy, a romance, a tragedy or a soap opera. It was done in 1986. I'm sure all of us did things sixteen years ago that we rather would forget. I hope the damage to the reputations of Streep et al is beginning to heal and that the emulsion on the master is beginning to fade. It's not that it's such a bad picture. It's just that it's such an un-good one.",0 +14821,"OK, if you're a woman who's got aggression issues, you might like this movie. Hate your significant other? This movie is for you. For the guys, it will be a bag of laughs.<br /><br />It's sad when former award winning actresses have to do cut rate movies.<br /><br />The only really good part is the last 10 seconds. Even that was a load of cheese.<br /><br />My wife is picking the worst movies lately. This is what you get (I) for letting my wife pick movies based on reading reviews on movie rental sites.",0 +20661,"Sometimes a film comes along that is unique. The Nostril Picker is one such film, The Nostril Picker is like no other film I have ever seen, unfortunately for The Nostril Picker & myself it's unique for different reasons than what the filmmakers had originally intended. Read on & all shall hopefully become clear... The Nostril Picker, as it's commonly know although it was apparently filmed under the title The Changer, starts with some extremely dull shots of an American town somewhere, streets & factory's that sort of thing, as the opening credits play. When The Nostril Picker begins proper we, the viewer that is, are introduced to a real loser named Joe Bukowski (Carl Zschering) who is in his 40's, he lives on his own in a crappy little apartment where he watches T.V., eats beef flavoured dog food & listens to old vinyl records as he dances with a blow up rubber sex doll. Joe likes teenage girls, he has various porn magazines but enjoys the real thing even more. However, being an ugly git Joe can't tempt any young ladies to go out with him, or do anything else with him for that matter. One fateful day an old homeless Vietnam vet (Horace Grimm) sees the agony & pain that Joe has to go through (actually he sees Joe being spoken to by the cops for hassling a teenage girl) & decides to help him out. He tells Joe about an incantation that he learned from the 'gooks' in Vietnam that will transform Joe's appearance into whatever he likes. A process he calls morphosynthesis, but at the same time he warns Joe that 'it makes you crazy if you do it too much'. That night Joe decides to give it a try, in a public place on a podium for some reason. Joe says a few words, does an extremely silly dance & starts yodelling. Joe finishes off by whistling London Bridge is Falling Down, listen yeah, I ain't making this up either. At first Joe is visibly disappointed when nothing significant happens. To console himself Joe tries to buy a porn mag but is shocked when the clerk (Kevin Devoy) refuses to sell it to an underage girl. Joe, the bright spark that he is, realises what has happened & talks his/her way out of it by claiming his/her dad had sent him/her to buy it. Joe, who now calls his alter-ego Josephine (Ann Flood), senses the possibilities & heads straight for the local high school. Joe befriends four teenage girls, Jennifer Armstrong (Laura Cummings), Crisi Stroud (Gail Didia), Tracy Harper (Heidi M. Gregg) & Brenda Kearn (Aimee Molinaro) while under his disguise, oh & Joe manages to become a pupil at the school simply by asking the sports teacher Miss Van Dyke (Vicki Hollis). At first Joe seems harmless enough, he just likes to hang around the girls toilets & stuff like that. But things soon change as Joe brutally murders Brenda. Jennifer's dad, Vince Armstrong (Edward Tanner) is a detective so along with his partner Ed Simpson (Clyde Surrell) & Walt Spencer (Bruce Alden) the pathologist is determined to catch the sicko responsible for killing his daughter's friends, but will they succeed before Joe strikes again? The IMDb listing for The Nostril Picker is wrong, I watched it mere hours ago & it clearly states that it's directed by Mark Nowicki who was also a co-producer & definitely not Patrick J. Matthews who was credited as a co-producer & the cinematographer, not that it makes much difference & I'd have though that Nowicki would have been more than happy for Matthews to take the 'credit' for making this piece of crap. No one involved in the making of The Nostril Picker should be allowed to go anywhere near a camera again, ever. The Nostril Picker is easily one of the worst films I've ever seen, & that's saying something. It's absolutely terrible in every possible way imaginable. The script by Steven Hodge is atrocious, there's no narrative structure, excitement, tension, drama, character development & the things that do happen are so mind numbingly dumb it's untrue. The plot devices & chain of events in The Nostril Picker are totally incomprehensible. The scene where Joe finds out the prostitute (Steven Andrews) he hired is in fact a man & Joe starts to chase him around his apartment with two squirting dildo's is simply jaw dropping stuff. The subsequent scene when the transvestite reports the incident to the police is hilariously written & had me psychically laughing at the dialogue. I hated the ending as well, not only was it predictable but it leaves the door open for a sequel, I psychically shudder at the mere thought! On a technical level The Nostril Picker is awful, point & hope photography, bland & inappropriate music, forgettable locations, poorly edited (Brenda is killed in the kitchen yet her blood splashes on the T.V. screen that was clearly in the opposite room), some of the worst acting I've sat through & very unimpressive special effects which consist of a few cut off rubber fingers, a slit throat & a quick scene where Joe eats some flesh. It comes as no surprise that the cast & crew who worked on The Nostril Picker have virtually no IMDb credits for anything before or after. Even at 76 odd minutes The Nostril Picker is far to long & really boring to sit through. I could go on & on all day long about how bad The Nostril Picker is, I really could. One thing I can't quite work out is was all this intentional by the filmmakers? The Nostril Picker is indeed a unique film, unique in it's awfulness & incompetence. In the the case of The Nostril Picker I hope it remains unique too, having said that it's still not the worst film I've ever seen but it comes close that's for sure. Definitely one to avoid.",0 +1695,I rented this movie from blockbuster on a whim .. i like alan arkin and the cover was catching ... i read the back and knew right away it was going to either be the best or the worst movie i have ever seen ... i guess i got lucky .. i laughed from beginning to end .. alan arkin brings a great character to this movie. i have since bought a used rental copy for my own collection and watch it all the time .. i have recommeded this movie to loads of people and they all enjoyed it as much as i did ... i see complaints about the menus and dvd functions .. but it doesn't take away from the movie .. the disk was authored for Blockbuster exculsivley which is why they didn't allow you to skip past the previews .. aside from that you shouldn't let the functions of the DVD to deterr you from watching the excellent film.,1 +11084,"Bugs life is a good film. But to me, it doesn't really compare to movies like Toy story and stuff. Don't get me wrong, I liked this movie, but it wasn't as good as Toy story. The film has the visuals, the laughs, and others that Toy story had. But the film didn't feel quite as... I don't know, but I thought it was still a pretty good film. <br /><br />A bugs life... I don't want to say this, is a film that I don't remember. I saw it years ago. Of course, I haven't seen Toy story in years, but I still remember it. I shouldn't have reviewed this film, but I am. I am giving it a thumbs up, though it's not exactly the best work Pixar has done.<br /><br />A bug's life:***/****",1 +16152,"If I could give it a zero, I'd change my mind and give it a -10 instead. Absolutely horrible movie with no movie plot, doesn't make sense of what is happening. Just PLAIN BORING. Please don't waste your money on this one. Pleaseee!!! This movie could have done so well if it truly depicted the real zodiac killer's story, but nopes, I didn't feel anything but disgust while watching it. Do yourself a favor and rent some classic movies instead, its better to watch a movie you've already seen like 3-4 times than watch this crap! I don't understand why people even bother to make such movies when they know its not going to do well. Zodiac killer should be called 'Boriac killer' instead!!!",0 +13383,"This film proves that the ""commercial"" cinema ,or else,the Hollywood movies are in a serious crisis.There is absolutely no reason that this movie should have been produced apart from the fact that somebody expected success based on Shaquille's name.There is no worth referring to the plot :it is a bit more perplexed than a knot.What else?The screen is somewhat dim,O'Neal is a bad actor but Francis Capra is even worse.<br /><br />Rating: 1 / 10.",0 +17958,"Spanish horror icon Paul Naschy stars in this, one of his weakest werewolf films... but bear with me for a moment. Most people will be familiar with it under its most common television title, THE FURY OF THE WOLF MAN, and there have been many home video versions of it over the years. If you want to be serious about giving it a fair shot though, the most workable edition I've seen of it goes by the title THE WOLF MAN NEVER SLEEPS, and it's an unedited and complete European version which restores a couple of disturbing scenes and contains the original nude shots which are missing from FURY's print. It is also letterboxed.<br /><br />Naschy plays Waldemar Daninsky, returning home from a trip to Tibet only to find out that he's contracted a werewolf curse and that his wife has been having an affair. He takes care of her and her lover while in animal form, but then becomes a guinea pig for a sexy woman doctor and her female assistant. Apparently, the doc attempts to ""tame"" the werewolf, and there is a very strange sado-masochistic love scene between her and the hairy and fanged Daninsky who is under her trance, at least in the original version. Ultimately we get two werewolves for the price of one as Daninsky battles a she-wolf! <br /><br />The biggest problem with the movie is that the director (according to Naschy's claims) was often drunk, and the results are indeed rather incoherent. When watching THE WOLF MAN NEVER SLEEPS copy, it's not quite as difficult to make out what's going on, though the editing remains atrocious in spots. Worst of all is occasional non-matching footage of Naschy's ravenous werewolf swiped straight from another previous film (LA MARC DEL HOMBRE LOBO, aka ""FRANKENSTEIN'S BLOODY TERROR"") and mixed into this one without any sensible reason! The wolf's clothing changes from black shirt to white and back again, as does his demeanor; one moment the wolf is walking around lethargically in a hypnotic trance from FURY, next he is growling and running around savagely from BLOODY TERROR. Really bizarre.",0 +1630,"I am frankly surprised how little has been done in film on the Columbine Massacre. There isn't a major documentary, very puzzling. Fortunately we are graced with the talent of Ben Coccio who directed ZERO DAY, and Gus Van Sant who did the equally fine ELEPHANT. Two different takes on the event, which have in common the idea that the real cause of the massacre will always be a mystery, that there's something ultimately baffling and unknowable about the motivations of the two killers, and what actually drove them to carry it beyond fantasy into horrible reality. ZERO DAY, purportedly made up of videotapes made by the shooters and found after the event, is absolutely riveting. Even if you know where it's going, you still harbor hope that it WON'T ""go there"" ... and the tension in the final minutes of the movie is excruciating. The film is terrific from top to bottom, from director to script (not much improvised, though it appears very spontaneous) to the two lead actors, and the supporting players as well. There is only one aspect of ZERO DAY that troubled me. Okay, so we can't fathom why the shooters would do what they did, but certainly one of the contributors was their ANGER. Yet these boys don't really seem angry. They may say some things to indicate that they are, but in fact they didn't convince me that they had SOMETHING inside them that compelled them to kill innocent people. But this still leaves me with the sense of ""why???"" that director Coccio wants me to have. Anyway, rent or buy this movie, it will creep up on you and stay with you for a long time. The BLAIR WITCH folks could only WISH for the kind of success these guys had at making a mock documentary.",1 +269,"I saw this when it first came to video, my little sister got it as a gift and I was probably 12 at the time... What stood out for me was the lack of mid-movie conflict that so many movies have, where the main characters get mad at each other because when it comes time to explain themselves they just don't say the one thing that you're shouting at the screen that would make sense of the whole deal, that any person of reasonable intellect would know to say. This is what I like the most about the movie I guess, that the main characters don't do mean things to each other halfway through... they don't break up and make up, they just grow to like each other more as the movie goes on.<br /><br />These two kids team up and though they seem at first to be from opposite sides of the track, they're not that different. Loui is actually just some middle class kid that needed to realize how lucky he was to have a loving family, and Cecelia was an upper class kid that just needed to prove to her family that she existed and they would miss her if she was gone. Anyway, I saw this movie posted on Hulu and had to watch it again... sure there's plot holes if you analyze the script and no, Woog and Dweeb shouldn't be eating hot dogs since they would have been herbivores in reality.<br /><br />Now, what detracts from the film is it's unexpected scariness. Little kids under the age of 5 would probably be frightened by the scenes with Dr. Screweyes. And, the addition of him halfway through the movie (though it's blatantly obvious in the first scene that he will make an appearance) is too abrupt... there should be a glimpse of him doing his show earlier in the movie, perhaps to show that it's not that scary without the the dinosaurs. I guess it just lacked any real present danger for the entire first half of the movie, so that it lacks a little continuity when he appears for the second half.<br /><br />Considering the target audience, who I'm sure can overlook the not so mind blowing animation and dialog issues... I think I'll give it a pass on those factors too, and just enjoy the story. It's a great flick for kid and it does stick in your mind... makes you kinda think about how you treat people and it should be revisited every 10 years I think.",1 +1881,"Chris Rock stars in this remake of Warren Beatty's Heaven Can Wait (itself a remake of the 1941 film Here Comes Mr. Jordan), a comedy about a man who dies before his time, before he can realize his dreams, and his adventures in his new (albeit temporary) body. In the Beatty version, the protagonist was a backup quarterback for the then-Los Angeles Rams. In Rock's hipper version, our lead character is a struggling young - and decidedly low-talent - standup comedian.<br /><br />It's very funny to see the razor-sharp Rock playing a bad comedian. It's kind of like seeing Tom Hanks play a bad actor. Lance Barton's dream is to play the legendary Apollo Theater on a non-amateur night. But every time he tries out his material, he's booed off the stage lustily - so much so that his nickname becomes ""Booie."" His jokes are lame, his delivery painful. In short, Lance is everything that the real Chris Rock isn't.<br /><br />Lance is also a bike messenger, and he's riding the streets on his way to try out even more material when BAM! He's hit by a truck. Ok, so maybe he was taken from his body a tenth of a second early by a slightly incompetent angel (Eugene Levy), but hey, he was going to get hit anyway. No dice, it appears Lance isn't due in Heaven until 2044. So what to do? Mr. King (Chazz Palminteri), the ""manager"" of Heaven, reluctantly agrees to find a new body for the not-quite-dead Mr. Barton. Trouble is, the body they find is of a greedy, old white man. Turns out this fella (a Mr. Wellington) owns all kinds of things - he's the 15th richest man in the country! What luck! You can imagine how Lance will turn things around. <br /><br />But of course, while in the body of the affluent Mr. Wellington, Lance falls for a gorgeous hospital worker (Regina King). We males know how tough it is to find a female given our own body, but try winning one over while you're an dumpy, old white guy! And it's even worse when she's not impressed by your money. <br /><br />This is Rock's first shot at a lead role, and in my opinion he performs admirably. There's still a lot of the standup comedian in him - and, of course, if he ever wants to get diverse roles, he might have to stop incorporating standup routines into the script - but this isn't really a bad thing. Rock's personality - his drive, his delivery, his demeanor, and his passion - are what fuel this film. He's clearly having a lot of fun in the role, and he seems bent on making sure you have fun watching him.",1 +14523,"Encouraged by the positive comments about this film on here I was looking forward to watching this film. Bad mistake. I've seen 950+ films and this is truly one of the worst of them - it's awful in almost every way: editing, pacing, storyline, 'acting,' soundtrack (the film's only song - a lame country tune - is played no less than four times). The film looks cheap and nasty and is boring in the extreme. Rarely have I been so happy to see the end credits of a film. <br /><br />The only thing that prevents me giving this a 1-score is Harvey Keitel - while this is far from his best performance he at least seems to be making a bit of an effort. One for Keitel obsessives only.",0 +13900,"This movie should be called ""plan 9 from joseph smith."" i think its weirdness is underappreciated. the playwright seems to have read paul ehrlich's ""the population bomb (1968),"" and crafted a musical response made especially for mormons. the whole point of the play is that having as many children as you can is part of ""heavenly father's"" (god's) plan. and anything that stands in the way of having more babies is very bad. get it?<br /><br />This version was filmed in 1989, which is confusing. it's utah, so it looks and feels like 1983, the play was actually written in 1973, and of course, the theology is part 1840's, part battlestar galactica. some of the action takes place on earth and some in the ""pre-existence, an aimless romper-room where annoying kids wait to get their bodies so they can come down try not to slam the door on the missionaries, losing their shot at celestial glory.<br /><br />it is as stagey as they come, but don't let the poor theatrics spoil your appreciation for this demented mormon universe where the 'cool kids' are all into population control, (presumably) counseling their parents not to have any more children!! having big families was, at the time the play was written, the cultural norm in the lds community, and more importantly, considered part of God's plan. the church has since done a 180, and have made family planning a choice of the parents, and large families are much less the cultural norm now. making the entire doctrinal premise of the movie for a modern-day mormon moot!<br /><br />ahhh but it's really only as good as the music. there are some catchy tunes here that just won't let this movie die the 1970's death it was pre-destined for. the brother and sister sing some love songs to each other that make you wonder if maybe something else was going on there --wink. and the tough, cool kids make new kids on the block look like metallica. so cheers to all that! gather the family around, make some jell-o shooters and enjoy the show!<br /><br />",0 +5074,"Bette Midler is again Divine! Raunchily humorous. In love with Burlesque. Capable of bringing you down to tears either with old jokes with new dresses or merely with old songs with more power & punch than ever. All in All Singing new ballads, power-singing the good old/perennial ones such as ""The Rose""; ""Stay With Me"" and yes, even ""Wind Beneath My Wings"". The best way to appreciate the Divine Miss M has always been libe - since this is the next best thing to it, I strongly recommended to all with a mixture of adult wide-eyed enchantment and appreciation and a child's mischievous wish for pushing all boundaries!",1 +5509,"Any screen adaptation of a John Grisham story deserves a mainstream Hollywood approach, and Robert Altman is about the last director I would go to for a mainstream take on anything. But this southern-fried pot-boiler is pretty good. While it's not among Altman's best, it certainly isn't among the films he's made that leave you scratching your head and wondering what he was thinking.<br /><br />Altman had tipped his hat to the mystery thriller with noir overtones before, in his 1973 film ""The Long Goodbye."" ""The Gingerbread Man"" is nowhere near as good as that film, but it holds up fairly well on its own. Kenneth Branagh is a cocky attorney who finds himself framed for murder after he gets involved with a client (Embeth Davidtz) who has enlisted his help in protecting her from her cuckoo father (Robert Duvall). The film is set in Savannah, Georgia during the approach of a tropical storm, which lends the film an oppressive atmosphere that I very much liked. The twists and turns toward the film's end become clunkier and clunkier, and Altman proves himself to be not all that adept at staging shootouts, but overall the film is not a bad addition to Altman's canon.<br /><br />Also starring Robert Downey, Jr., Daryl Hannah, Tom Berenger and Famke Janssen.<br /><br />Grade: B",1 +23510,"This is possibly one of the worst giant killer animal movies I have ever seen. It follows the typical premise of a laboratory experiment gone wrong and a giant crocodile with a rapid growth chemical in it escapes. The monster looks way to much like a dinosaur, having big Tyranosaurous-like hind legs, when it should just look like an over-sized crocodile. Everything about this movie is unoriginal and it constantly oozes ""cliche"", minute after minute. Why are there always two drunken redneck hunters out after dark who separate? Plus, there's always a guy and girl who share a lame, obvious love interest while they are in life threatening situations. To much has already been said by me and I feel as if I'm wasting my time writing this...",0 +20629,"SLIGHT SPOILERS (but it doesn't matter anyway).<br /><br />An exercise in gobblygook of catastrophic proportions not even worthy of the l0 lines I need to put these remarks on the netwaves. This is the single worst episode of the Masters series to date and the first that qualifies for the defunct Mystery Science Theatre treatment. Even if it took me a full half hour to realize the intended ironic angle, it was still a very lame mess. Its sole value lies in the perspective that forces one to realize that in addition to gore and ugly masks the genre only succeeds when the classic cinematic notions of photography and lighting, dialogue and acting, editing and timing are put to use. Here they are absent and John Carpenter is no master. Period. And no trite analysis of the easy social comment herein will change that. Oddly, Carpenter never has been anything more than a B director, but at least such films as 'Fog' and 'The Thing' had terrific atmosphere (the latter is one of my cult favorites).<br /><br />Abominable acting. Camera angles stuck in cement. Tensionless rhythm. Yet perhaps the single most obnoxious element of the episode is the storyline which of course JC cannot really be blamed for (unless the writers were buddies of Cody.) The initial two minute slo-mo of a girl running through a forest only to be nearly run over by a would be Scully-Mulder duo is the first and last thing that works in the film. But come on, a girl hurtling through a deserted woods to nowhere in particular in desperate need of an abortion fortuitously rendez-vous with the fender of a pair of 'women's rights' MDs whose clinic just happens to be at the end of the road around the corner. Oh, and I won't even nitpick about how the doc whips the accidentee into the car and speeds away at 0 to 60 in six seconds. Does wonders for possible broken ribs or concussion.<br /><br />Then things fall apart real quick. The vacuous dialogue ""I just want to help you"", the interminably sluggish back and forth at the gate, grandiose battle tactics like cutting the telephone line (in the age of cell phones?) followed by the the shoot-out: a born-again Ramboesque clinic director vs Ron Perlman and the high school bullpen out for a few kicks at Easter break. Another lovely line: ""So what are we going to do?"" from the kid who had just been sitting on a pile of assault rifles in the back of the van. Er, no it isn't yet pheasant season. So who needs those teen boys anyway. What about the good old tried and true method of the lone lunatic who bashes his way through the gate with his all-American SUV?<br /><br />As for the exchange of bullets scenes themselves, the cuts here were as stiff as the staccato of a DC comics strip. All that was lacking were the Wham, Bam, and Whiz of the balloon titles. And all to the tune of a soundtrack worthy of an old Mannix episode.<br /><br />At one point we learn that Daddy isn't really the daddy, but at this point we haven't been led to care much any more either. This story's single source of drama is the conflict between the pro-life father and his pregnant daughter who is only thankful she's not having twins. Yet there is not a single scene, flashback or not, where they are actually ever found together. They remain mere abstractions to each other throughout.<br /><br />With the exception of the gatekeeper every single one of the characters is absolutely dislikeable. Bland, hysterical, dull-headed, macho. As perfectly flat as human wallpaper can be. None of the doctors seem to have anything medical about them. And there's that bickering Dad who rails at his pregnant daughter as though he himself were the stressed out boyfriend. He fortunately got his. There are two great MST-worthy comic moments: the gusher when Angelica's plumbing goes out and later the new-born lobster with a glued on baby's head. Also cute was Angelica's rugby ball belly before she finally popped the right-to-life little monster from Hell. As for that audacious male abortion scene...well, they should have retained Miike's episode and banned this one instead.<br /><br />In short, a 3rd rate Rosemary's Baby meets Alien set on the turf of a M.A.S.H. episode. This stinker alone, appreciable only to today's permissive under-16 generation, will assure as someone else said here, that this series will not be renewed for a third season. A real shame, since there have been a number of brilliant productions, including such really decent spoofs as Dante's 'Homecoming' or McKee's deliciously quirky 'Sick Girl'. Not to mention the superb imagery of Malone's 'Fairhaired Child'.<br /><br />Sorry John Carpenter, I believe your directing days are over. It's time to run for President.",0 +21130,"The movie is pretty funny and involving for about four dates, then it becomes a blatant commercial for some guy you (and even his ""friends"") really can't stand. It is a pretty interesting concept; film dates on a quest to find true love in modern LA. The problem is that it feels incredibly (and badly) scripted at times and blatantly self-promoting. It is difficult to care about and be drawn into any of the characters because the writer/actor is so egotistical, uncool, untrue, and simply unlikeable. You end up feeling sorry for his dates.",0 +2535,"At first I didn't didn't like it that much, although I did. They didn't include the third Trueba generation, the love between Blanca and Pedro wans't well explained and some actors were too different from what I had imagined.<br /><br />Later I realized that, had the movie been more loyal to the book, it would have been like five hours long, and would be kind of tedious. Now I like it very much, because my favourite characters are there as I portraited them. Clara really looks like an Angel in live, and her introduction to the story at the beggining of the film was fantastic, loyal and short. Glenn Close is Ferula. I pictured her just like that, only not in mourning throughout the whole thing. Esteban is find enough. I never really liked his character, and, although I was interested in him, I hated him a lot, more specially when he hit Clara. As in the book, the very last part is the most exciting one, and it has real history too there.<br /><br />The movie is really good, specially considering that it was a gringo film based upon a latin american book. Its amazing how many famous stars are there, don't you think so?",1 +11069,"<br /><br />This movie is full of references. Like ""Mad Max II"", ""The wild one"" and many others. The ladybug´s face it´s a clear reference (or tribute) to Peter Lorre. This movie is a masterpiece. We´ll talk much more about in the future.",1 +23308,"Okay, when I came on the board for this movie, I was really expecting people to be making fun of it. I was surprised to see that people over the age of 7 liked it. I enjoyed the movie... but only b/c me and my little sister (who is, in fact only 10) made fun of the whole thing.<br /><br />I am sorry Jordan, but that acting was awful. You know a movie is headed for the toilet when the lead cannot act. And it didn't even have a good script or plot to redeem it. I also thought that the character of Pamela was very very lame... border-lining pathetic.<br /><br />Even with that being said, I thought there were a few good actors, such as gorgeous Spencer, Hollywood, and Ronnie. Still, not enough to redeem the movie.<br /><br />Two things about this movie that I just can't get over:<br /><br />1.) That that Spencer guy would fall for her. Okay, eww. I looked up the dates and while in reality, he is only about four years older than her, the difference in ""Go Figure"" seemed much larger. Jordan is a very pretty girl, but in GF, she seemed like 10 or 12... she seemed like a little kid! Jake Abel (Spencer) seemed like a college student.<br /><br />2.) That there is any way that Kristi Yamaguchi would come just to skate for one girl. I mean, I know that Katelin is good and everything, but it still just seemed kinda unlikely that Kristi would go to a boarding school that didn't even have scholarships for skating, or that a school would have employed a skating coach with such connections.<br /><br />That all being said... it wasn't the worst movie ever known, but it wasn't very good even by DCOM standards, which I consider quite low.",0 +14680,"I like Billy Crystal, and I thought it would be fun to watch this film, since I know he admired Alan King and they would be funny together. I thought I had seen all Billy's movies but couldn't remember this one, and now I know why. It's so full of clichés and phony emotion; you can smell each scene coming (and going!). Billy doesn't even get to be funny very often. He's too busy trying to cry fake tears or show his angst at how badly his father let him down. Alan King himself is fairly likable, as is the subplot about being an extra in the movies. But what a coincidence that Billy just happens to visit his father just as a major health crisis takes place, etc. etc. Or that two busy doctors can just shut down their practices to moon around in LA. And when the end comes, boy, does it come quickly! Almost as though the writers realized they had painted themselves into a corner and the only way out was to do a death scene. Mostly disappointing with a few glimmers of good humor.",0 +186,"Look it's Eva Longoria and Paul Rudd in a movie about a dead girlfriend haunting the new girlfriend. It's Gabrielle from Desperate Housewives and the guy who wore ""sex Panther cologne"" in Anchorman. If you are expecting a Golden Globe nominated movie then you need to rethink how you look at movies. However, if you are willing to suspend reality for 90 minutes and want to watch a funny movie then you've come to the right place. The characters are all funny. They work together very well. The real match up is Paul Rudd and Lake Bell. He's as funny as he was on Friends and she was funny and good looking all at the same time. I went with my wife, she enjoyed it and so did I.",1 +11971,"ROAD TO PERDITION can be summed up by Thomas Newman's score . It's haunting and beautiful but you're aware that this music is similar to Newman's other work and while listening to the soundtrack you're reminded of SCENT OF A WOMAN , MEETING JOE BLACK and THE SHAWSHANK REDEMPTION you're reminded of other films as the story unfolds on screen . As the Sullivans drive round America trying to escape from a psychotic hit man you think of THE GETAWAY , Irish gangsters is MILLER'S CROSSING whilst the subtext of guilt and redemption can be summed up by Coppola and Leone's gangster epics. Despite having a seen it all before feel this shouldn't be taken as a heavy criticism of Sam Mendes film which I repeat is haunting and beautiful and the only flaws that work against it is a very slow opening twenty minutes and I was slightly confused as the events that caused Michael Sullivan to be betrayed . But if you stop to consider how much of a sentimental mess Spielberg might have made with the story that revolves around a father and his twelve year old son running for their lives you can't help thinking what a superb director Mendes is <br /><br />ROAD TO PERDITION is a film where the entire cast give flawless performances . I've never been all that keen on Tom Hanks but he's every bit as good here as he has been in any starring role , probably better . Paul Newman plays a character with an Irish accent but at no point did I believe I was watching an American screen legend putting on a false accent - Newman's performance works due to the subtle body language , his character is torn up by guilt but Newman never milks it or goes over the top . While never upstaging Newman who gives the best performance in the movie the two Brit supporting actors Craig and Law are also very memorable as American gangsters and while Law will still have a long career as a leading actor one wonders how Daniel Craig might have progressed as a character actor if he hadn't decided to become James Bond , a role which heralds the end of an actors career",1 +5558,"This short film that inspired the soon-to-be full length feature - Spatula Madness - is a hilarious piece that contends against similar cartoons yielding multiple writers. The short film stars Edward the Spatula who after being fired from his job, joins in the fight against the evil spoons. This premise allows for some funny content near the beginning, but is barely present for the remainder of the feature. This film's 15-minute running time is absorbed by some odd-ball comedy and a small musical number. Unfortunately not much else lies below it. The plot that is set up doesn't really have time to show. But it's surely follows it plot better than many high-budget Hollywood films. This film is worth watching at least a few times. Take it for what it is, and don't expect a deep story.",1 +24479,"So this guy named George is sitting home alone on his birthday when two women show up. George's wife is at a hospital taking care of their son so when the wife is away George gets in the bubble bath and makes love to both of the girls. It isn't that great of a scene because it really doesn't show anything. After that the birthday boy wakes up the next morning and the girls are still at his house. They make him a nice breakfast but George isn't hungry. George isn't very happy and he tries to ditch them but when he gets home the girls are still at his house. The girls have had enough with old George and no longer want to cook for them. They both turn out to be major psychopaths and use George in their little crazy game. I liked that the girls just did what they wanted and messed up George's house. George wasn't really that great to his two guests. When George said he was a married man, he really didn't seem to mean it. George looked like Tom Tucker on Family Guy. I was for the two girls the whole time.",0 +21984,"<br /><br />Back in his youth, the old man had wanted to marry his first cousin, but his family forbid it. Many decades later, the old man has raised three children (two boys and one girl), and allows his son and daughter to marry and have children. Soon, the sister is bored with brother #1, and jumps in the bed of brother #2.<br /><br />One might think that the three siblings are stuck somewhere on a remote island. But no -- they are upper class Europeans going to college and busy in the social world.<br /><br />Never do we see a flirtatious moment between any non-related female and the two brothers. Never do we see any flirtatious moment between any non-related male and the one sister. All flirtatious moments are shared between only between the brothers and sister.<br /><br />The weakest part of GLADIATOR was the incest thing. The young emperor Commodus would have hundreds of slave girls and a city full of marriage-minded girls all over him, but no -- he only wanted his sister? If movie incest is your cup of tea, then SUNSHINE will (slowly) thrill you to no end.",0 +6587,"This film is one of the few quality films of 2000 and definitely one of my best. The scenario is based on the novel by Vladimir Nabokov and the transfer to the big screen is absolutely brilliant. <br /><br />The photography of the film is excellent as is the acting of both Turturro and Watson. Turturro definitely gives his best performance to date proving he's worth much more than what we thought. Watson also performs brilliantly.<br /><br />The story is about a phenomenal chess player (Turturro) which is also extremely eccentric in his everyday life. The film is presented in a non linear time, with multiple flashbacks of Luzhin's childhood. Through those, the complex character of Luzhin is described. <br /><br />I have nothing more to say, but to suggest this film to anyone.",1 +17618,"How viewers react to this new ""adaption"" of Shirley Jackson's book, which was promoted as NOT being a remake of the original 1963 movie (true enough), will be based, I suspect, on the following: those who were big fans of either the book or original movie are not going to think much of this one...and those who have never been exposed to either, and who are big fans of Hollywood's current trend towards ""special effects"" being the first and last word in how ""good"" a film is, are going to love it.<br /><br />Things I did not like about this adaption:<br /><br />1. It was NOT a true adaption of the book. From the articles I had read, this movie was supposed to cover other aspects in the book that the first one never got around to. And, that seemed reasonable, no film can cover a book word for word unless it is the length of THE STAND! (And not even then) But, there were things in this movie that were never by any means ever mentioned or even hinted at, in the movie. Reminded me of the way they decided to kill off the black man in the original movie version of THE SHINING. I didn't like that, either. What the movie's press release SHOULD have said is...""We got the basic, very basic, idea from Shirley Jackson's book, we kept the same names of the house and several (though not all) of the leading character's names, but then we decided to write our own story, and, what the heck, we watched THE CHANGELING and THE SHINING and GHOST first, and decided to throw in a bit of them, too.""<br /><br />2. They completely lost the theme of a parapyschologist inviting carefully picked guest who had all had brushes with the paranormal in their pasts, to investigate a house that truly seemed to have been ""born bad"". No, instead, this ""doctor"" got everyone to the house under the false pretense of studying their ""insomnia"" (he really invited them there to scare them to death and then see how they reacted to their fear...like lab rats, who he mentioned never got told they are part of an experiment...nice guy). This doctor, who did not have the same name, by the way, was as different from the dedicated professional of the original movie as night from day.<br /><br />3. In direct contrast to the statement that was used to promote both movies ""some houses are just born bad"", this house was not born bad but rather became bad because of what happened there...and, this time around, Nel gets to unravel the mystery (shades of THE CHANGELING). The only problem was, the so-called mystery was so incoherently told that I'm sure it remained a mystery to most of the audience...but, then there was no mystery in the first place (not in the book), because the house was bad TO BEGIN WITH. It's first ""victim"" died before ever setting eyes on it.<br /><br />4. The way the character of Luke was portrayed was absolutely ridiculous. He was supposed to be a debonair playboy who was someday to inherit the house (and was a true skeptic of it's ""history"")...and in this one he was just a winey-voiced, bumbling nerd who couldn't sleep(insomnia remember) and was a compulsive liar.<br /><br />5. I was also annoyed with the way the movie jumped from almost trying to recreate original scenes word for word (the scene with Nel's sister's family, and Mrs. Dudley's little opening speech...) to going off into flights of fancy that made me think more of these other movies than THE HAUNTING. It's like it couldn't make up its mind what it wanted to do.<br /><br />6. I missed Nel's narrative through the whole movie. The original was so like a gothic novel in the way that the story was mostly told in the first person, through Nel's eyes, and we always were privy to her thoughts. That totally unique touch was completely lost in the new version. They also tried to make Nel much more of a heroine. The original Nel was not a bad person, but she was a bitter person (could she be otherwise after sacrificing 11 years of her life to a selfish old woman and a spiteful sister?) and she liked to moan, and she lost her temper... This one was almost too good to be true. This was never more apparent than in the climax of the movie where the writer's had obviously been watching GHOST one too many times.<br /><br />7. They changed the history of the house and it's occupents too much. There was no Abigail Crain (the daughter of Hugh whose legend loomed large in the original versions), there was no ""companion"", and there was no nursery. There was also no ""Grace"" (wife of the original doctor) and Hugh Crain's wives died in totally different ways. These changes, changed the story WAY too much. I don't know whether the producers of this movie should be glad Shirley Jackson no longer walks this earth or whether they should...BE SORRY (if ya get my drift!!! The hauntings she could envision are not something to be trifled with!!!).<br /><br />In conclusion, let me just leave you with some words from the original Luke (appropriate substitution of the word ""house"" for ""movie""!): ""This 'movie' should be burnt to the ground, and the ground sprinkled with salt!"" My favorite movie of all time remains so. No competition from this one.",0 +23231,Eddie Murphy for best supporting actor??? What an insult to Alan Arkin and Djimon Hounsou. <br /><br />Jamie Foxx (who can act) walks through this film like a zombie. <br /><br />Beyonce ??? That was acting??? <br /><br />This movie pales in comparison to CHICAGO or just about any other recent musical. <br /><br />If it were not for the great singing and performance of Jennifer Hudson I would have given this a ZERO.<br /><br />And no I never saw the stage play so I am not making the typical Broadway vs. Hollywood rap.,0 +24940,"Ice-T stars as Mason a homeless African-American who finds himself hunted by wealthy hunters (Rutger Hauer,Gary Busey,Charles S. Dutton, F.Murray Abraham,William McNamara and John C. McGinley) however Mason proves to be much harder prey then the usual targets in this ridiculous and slow paced actioner which takes too long setting up actionscenes and then totally botching them.",0 +3915,"Although I like Kurt Vonnegut, I'm not particularly interested in spy stories and I didn't know this one. The only reason I watched it was Nick Nolte, who is one of my favorite actors since I saw ""Breakfast of Champions"" and ""Hotel Rwanda"". But the film brought me a pleasant surprise. Of course Nolte was great, but so was the plot. There was relatively little political intrigue, and much more focus on the moral question: by reading his anti-Semitic radio commentaries with hidden secret messages to Americans, he in fact contributed to the general attitude of Germans (and, as it later turns out, Americans) towards Jews or Hitler. Which carries more weight, his service to his country or his unconscious contribution to anti-semitism? The dilemma is even more prominent as these words are never spoken, not even as narration. Howard Campbell Jr. (Nolte) is a person who learnt to hide his feelings so perfectly that he doesn't open up, not even in his memoirs. The inner conflict of such a character is almost impossible to portray - but with the help of excellent acting and photography, this film manages. <br /><br />There are other points to it, such as the humor or the ironical use of romantic clichés (like the song White Christmas), that make it real different from average American movies. I recommend it to everyone who is bored with Hollywood spy movies.",1 +446,"Words can hardly describe it, so I'll be brief. ""The Thief of Bagdad"" was my favorite movie as a child, and it has never ceased to astound or enchant me. I loved this film from the first moment I saw it, when I was a boy of six who had started reading ""The Arabian Nights."" I remember walking into the TV room in the middle of Sabu's battle with the giant spider and being instantly beguiled.<br /><br />Rarely has so much beauty, magic, and wonder been captured on film. Sabu and John Justin are superb as the dashing heros, Conrad Veidt is throughly delightful as the wicked villain Jaffar, and Rex Ingram is a joy to watch as the sardonic genie. Georges Perinal's photography is some of the best use of Technicolor. One of the three credited directors is Michael Powell, a filmmaker who has been rightfully heralded by the critics but is often overlooked by audiences for his remarkable films, including ""A Matter of Life and Death"" (aka ""Stairway to Heaven"") and ""The Red Shoes."" He is one of the true masters of the camera, right up there with David Lean, Akira Kurosawa, and Orson Welles.<br /><br />As with all great works of art, the beauty of ""The Thief of Bagdad"" lies in the detail. Every frame has its own magical charm. The story never lags, and the characters and their actions are always involving. Here is a film that will never grow old.",1 +23527,Avoid the USA version. It is with added US footage and the worst dubbing you've ever heard probably done by New York amateurs. The dubbing is so bad that it sounds like Mystery Science Theater 3000. I think a black guy from the Bronx does Chiba's voice. I couldn't watch the entire film it was that bad. Instead of this Americanized version watch Chiba's other greats like The Streetfighter or Karate Warriors.,0 +14031,"When I first saw a small scene of it in some announcements, I thought the show would be entertaining to watch. The little robot guy does look kinda cute. The style of animation does look sort of familiar to some classic shows. Before the show aired, I studied it through some sources. There, I did became slightly dismayed. The three children (Tommy, Gus and Lola) are voiced appropriately but Robotboy is an exception. It would have been a lot nicer if he were to be portrayed by a young lad. One good example is Robot Jones, a robot character from ""Whatever Happened To Robot Jones?"" The show isn't bad really. But the way Robotboy is inappropriately portrayed is my only criticism. Thus, I don't watch it much.",0 +17228,"Slaughter High is intrinsically your emblematic 80s slasher flick. A prank goes out of hand leaving a geeky guy horribly burnt. A few years later the geeky guy returns and starts killing the people who hurt him. Now the story might sound intriguing and very entertaining, but what makes this horrible film so different from the rest of the 80s slasher flicks is that it has some humorless flaws and continuation errors.<br /><br />The acting is horrendous, however, actually not as bad as one would suspect. Though it doesn't help that every character in the film are so grody and unlikable. The lead, Carol Manning (Caroline Munro) is the easily the biggest tormentor of them all and she's the one that we are ostensibly supposed to share compassion and root for. Not to mention, the geeky guy is almost too geeky and I think that even stereotypical geeks themselves would be rudely maddened and just downright antagonized by how geeky he his, so when he gets mauled, does anyone really care? <br /><br />There is much unintentional laughter potential. Munro's lack of acting talent is quite apparent, which puts her down at the same level as the rest of the awful cast. However, the most amusement is easily when the film poorly attempts to pose Munro, who is in her mid 30s at the time, as a teenager amongst a cast of teenagers. And then when it comes to later life and Munro is playing around her real age, the rest of the cast do not pass as adults. This all goes well with a theme song that is a hilariously pose of heavy metal thrash accompanied by maniacal laughter and a voice shrieking ""I'll get you."" With that being said, Slaughter High really isn't a very good slasher flick, but it does have a bad cheesy entertainment value to it. Perhaps an essential for hardcore slasher fans, but don't expect dilemma, suspense, or any credibility from it. Horrible!!!",0 +7124,"The penultimate episode of Star Trek's third season is excellent and a highlight of the much maligned final season. Essentially, Spock, McCoy and Kirk beam down to Sarpeidon to find the planet's population completely missing except for the presence of a giant library and Mr. Atoz, the librarian. All 3 Trek characters soon accidentally walk into a time travel machine into different periods of Sarpeidon's past. Spock gives a convincing performance as an Ice Age Vulcan who falls in love for Zarabeth while Kirk reprises his unhappy experience with time travel--see the 'City on the Edge of Forever'--when he is accused of witchcraft and jailed before escaping and finding the doorway back in time to Sarpeidon's present. In the end, all 3 Trek characters are saved mere minutes before the Beta Niobe star around Sarpeidon goes supernova. The Enterprise warps away just as the star explodes.<br /><br />Ironically, as William Shatner notes in his book ""Star Trek Memories,"" this show was the source of some dispute since Leonard Nimoy noticed that no reason was given in Lisette's script for the reason why Spock was behaving in such an emotional way. Nimoy relayed his misgivings here directly to the show's executive producer, Fred Freiberger, that Vulcans weren't supposed to fall in love. (p.272) However, Freiberger reasoned, the ice age setting allowed Spock to experience emotions since this was a time when Vulcans still had not evolved into their completely logical present state. This was a great example of improvisation on Freiberger's part to save a script which was far above average for this particular episode. While Shatner notes that the decline in script quality for the third season hurt Spock artistically since his character was forced to bray like a donkey in ""Plato's Stepchildren,"" play music with Hippies in ""the Way to Eden"" or sometimes display emotion, the script here was more believable. Spock's acting here was excellent as Freiberger candidly admitted to Shatner. (p.272) The only obvious plot hole is the fact that since both Spock and McCoy travelled thousands of years back in time, McCoy too should have reverted to a more primitive human state, not just Spock. But this is a forgivable error considering the poor quality of many other season 3 shows, the brilliant Spock/McCoy performance and the originality of this script. Who could have imagined that the present inhabitants of Sarpeidon would escape their doomed planet's fate by travelling into their past? This is certainly what we came to expect from the best of 'Classic Trek'--a genuinely inspired story. <br /><br />Shatner, in 'Memories', named some of his best ""unusual and high quality shows"" of season 3 as The Enterprise Incident, Day of the Dove, Is there in Truth no Beauty, The Tholian Web, And the children Shall Lead and The Paradise Syndrome. (p.273) While my personal opinion is that 'And the children Shall Lead' is a very poor episode while 'Is there in Truth no Beauty' is problematic, ""All Our Yesterdays"" certainly belongs on the list of top season three Star Trek TOS films. I give a 9 out of 10 for 'All Our Yesterdays.'",1 +2440,"This could be well have been THE definitive film noir of all time, had not the Columbia Studios cut so much of Orson Welles's original. What we are left with is a flawed, yet brilliant film that showcases the overwhelming talent of Welles as an actor/director and Rita Hayworth as a serious dramatic talent.<br /><br />'The Lady From Shanghai' is film noir at it's most sizzling and confusing. Welles, with an uneven accent, portrays Michael O'Hara, a journeyman Irishman, who, after a fateful encounter with the seductive, dangerous Elsa Bannister (Hayworth, in a GREAT performance)finds himself virtually coerced into accepting a job as a crewman on her and her crippled husband's (Everett Sloane) yacht. Elsa, or 'Rosalie' as Michael likes to call her, plays the innocent, helpless doll very well, ensnaring O'Hara in her web. As the lovers conduct a not-so-secret affair at sea, Arthur Bannister's partner in his law firm, George Grisby (Glenn Anders)comes aboard. He is a weird, untrustworthy figure who offers Michael a unique proposal: He will get $5000 to assist Grisby in the faking of Grisby's death, so it looks murder. The plan is for Michael to get off a technicality, and run off into the sun with Elsa. But things do not go to plan.<br /><br />Hayworth delivers us one of the best femme fatales of all time in a very ambiguous portrayal. At times she seems genuinely vulnerable and child-like, at others brutal, world-weary and hard. Always she is brilliantly beautiful, whether he situation calls for her to be dripping wet in a swimsuit or dressed in black, brandishing a gun. Hayworth is beautifully photographed here, and she is a far-cry from her famous 'Gilda' role. Her then-husband Orson Welles cut off her trademark auburn locks for a dyed blonde crop (angering Columbia boss Harry Cohn). It was a terrific marketing ploy, and he change suits her changed attitude wonderfully. She is not the sympathetic femme fatale that 'Gilda' is, here- instead she is a predatory, black-hearted dame who sees murder as a very useful option.<br /><br />The Welles and Hayworth pairing came at a time when the couple were having extreme difficulties in their marriage. They would divorce after the film was made, so this is also a curiosity for providing some view into the complicated relationship. They are hateful, not romantic, lovers in this, so it's hard to gauge whether or not they had real chemistry on screen. Certainly every encounter is potent and filled with raw sexuality, with Welles as the 'fall guy' (he even admits it himself in the film!) and Rita as the double-crossing babe.<br /><br />Welles character is the typical noir 'drifter' with not much sense. As Welles voice-over proves to use, O'Hara indeed does not use his brain very much 'expect to be thinking of her (Elsa)'. Welles usually played intelligent, charismatic fellows, so his turn here as the dim-witted Michael is unusual and very interesting. Indeed, Welles was an actor of fine talent and he pulls off it well.<br /><br />Everett Sloane is suitably slimy as Hayworth's crippled husband. One wonders why he hires Michael. It is obvious that his wife is interested in him romantically, so why does he invite a 'threat' on board? One interpretation could be that Michael provides the 'service' to his wife that Bannister cannot in his crippled state. There is definitely something to that theory, with a lot of implications toward Elsa's behaviour before she met her husband (was she some sort of prostitute?)and Grisby's knowledge of Bannister's most intimate secrets being hinted at in several scenes.<br /><br />This is a jumbled, convoluted film with a plot that is ultimately flawed. We are more interested in the love triangle than the murder plot, as with most noirs. Welles provides us with many of his usual brilliant cinematic touches, including the justifiably famous 'hall of mirrors' climax. It's a terrific scene, one ending that can almost obliterate the faults earlier on in the movie and lift it into greatness. This fun house scene is visually stunning, with a Dali-like feel to the painted sets (apparently Orson painted them himself). Subtle visual imagery utilized throughout the film by Welles enhances the plot and makes this a thought-provoking experience.<br /><br />The dialogue is scorching and confusing, delivered superbly by Rita's alternately breathy low voice and helpless, high-pitched little-girl voice. Hayworth proves her acting capabilities in this one, and proves that SHE is the ultimate femme fatale of 'noir'. It's a pity (only a slight one , as Rita was a brilliant dancer) that she did so many delightful yet frothy and often forgettable musicals for Columbia in the 40's instead of darkly-themed noir like this. She was a brilliant actress when given the chance to show off her talent.<br /><br />9/10.",1 +3103,"I remember seeing this film years ago on, I think, BBC2. I would very much like to view it again - does anyone know how I can obtain a copy? As I remember, it was an especially powerful movie, in particular the scene that stands out is of the horses wearing gas masks. Apart from that I really can't recall too much about the story - which is why I want to view it again! I have trawled the web but am unable to find a copy, which is unusual in my experience - perhaps there is no DVD or VHS of this film on the market. Would appreciate any help anyone can give me on this. Thanks very much in advance for your assistance. Best regards, Albany234@googlemail.com",1 +11088,"Many of the American people would say...What??? to my opening comment. Yes I know that my comparison is without doubts an insult for the fans of the Master Akira Kurosawa, but if you analyze this movie, my comment is right. We have the peasant who goes to the town searching for help against a band of grasshoppers who wants to steal the harvest of the village. The great difference is the way that the story takes. Our samurais, a band of circus performers as in the original are a very complex mixture of personalities but at the end are what the village needs, HEROES. Please watch again this incredible movie (the Seven Samurai, obviously) and find another movies who has stolen the story and tried to get the same magic effect than the Masterpiece of Akira Kurosawa. A tip is The 13th Warrior with Antonio Banderas, Michael Crichton copied the story to wrote his Best seller's, but he didn't found the third foot of the cat.",1 +7692,"This time around, Blackadder is no longer royal(or even particularly close to being any such thing)... instead, rather a butler to the Prince Regent, portrayed by Hugh Laurie(who replaces Tim McInnerny, who presence is sorely missed, and that hole is never filled... his character had an innocent charm... while he was a bumbling and complete moron, we can't help but care for him, which isn't at all true of his replacement) as being intolerably daft(which he apparently was, according to the Trivia page), not to mention loud-mouthed and utterly non-threatening. Edmund can now do just about what he pleases, and does so. Why is he so frustrated and angry(honestly, it gets depressing at times)? Yes, his master is a buffoon, they always are. He doesn't seem to lack money, nor is he in any danger. In the second series, the Queen was mischievous and childish, and would cut off someone's head - or marry them - on a whim. Here there is simply never enough at stake for any of the conflict to be exciting and interesting. There is still commentary and even a little satire. Too often, it seems as if they thought that the history was funny enough on its own, so they merely restate it, not bothering to actually turn the facts into jokes or gags. And I can't tell you how many of them I figured out before they were done, literally more than a minute away. It's not usually a positive when you know the punchline before it is delivered. Baldrick doesn't change from last season... he's still rather pathetic and stupid, leading to ""silly"" humor. Frankly, the amount goes through the roof. Don't get me started on the gross-out stuff. The sarcastic, verbal wit can still be great, though much less of it is than before. I'd say about half of the episodes were rather amusing and downright funny, while the other three didn't really get me into them at all. I was disappointed in how predictable some of the plots and developments thereof were... I could see many of such coming a mile away. Some of the material tries way too hard to be funny and winds up coming across as incredibly forced. This continues with the tradition started by ""II"" of letting the plans work out occasionally. The theme is the worst of the bunch, the credits sequences the least creative. All in all, this is, by far, my least favorite of the four. I recommend it to fans of the franchise and of British comedy in general. 7/10",1 +6094,"....after 16 years Tim Burton finally disappoints me!!!! Whatever happened to the old Burton who read ""The Dark Knight Returns"" by Frank Miller as research for his preparation to direct Batman back in 1988-89? By the looks of it Burton didn't research the book nor the movie cause he got everything WRONG! This movie sucks! It's not as good as the original and it doesn't deal with the same subject as the original. If you want a good ape movie watch the original.<br /><br />**out of****stars",1 +9486,This was one of the first CREEPY movies I ever saw...I was about 5 at the time. It scared me GOOD! But that night I put chewing gum in one eye to be like the monster...and my mom got very upset. She had to clean my eye with alcohol and the next day my eye smelled like DOUBLE MINT! NOW THAT'S A MOVIE! Hey for it's time it was a great movie. That Head sitting on the lab counter top was as real as it got back then. And IF your 5 it is VERY SCARY! Kids now a days are spoiled by special effects that show too much and leave NOTHING for your minds imagination. Your mind can imagine things more scarier than special effects! (IMO),1 +18537,"Bloodsuckers has the potential to be a somewhat decent movie, the concept of military types tracking down and battling vampires in space is one with some potential in the cheesier realm of things. Even the idea of the universe being full of various different breeds of vampire, all with different attributes, many of which the characters have yet to find out about, is kind of cool as well. As to how most of the life in the galaxy outside of earth is vampire, I'm not sure how the makers meant for that to work, given the nature of vampires. Who the hell they are meant to be feeding on if almost everyone is a vampire I don't know. As it is the movie comes across a low budget mix of Firefly/Serenity and vampires movies with a dash of Aliens.<br /><br />The action parts of the movie are pretty average and derivative (Particularly of Serenity) but passable- they are reasonably well executed and there is enough gore for a vampire flick, including some of the comical blood-spurting variety. There is a lot of character stuff, most of which is tedious, coming from conflicts between characters who mostly seem like whiny, immature arseholes- primarily cowboy dude and Asian woman. There are a few character scenes that actually kind of work and the actors don't play it too badly but it mostly slows things down. A nice try at fleshing the characters out but people don't watch a movie called Bloodsuckers for character development and drama. The acting is actually okay. Michael Ironside hams it up and is as fun to watch as ever and at least of a couple of the women are hot. The space SFX aren't too bad for what is clearly a low budget work. The story is again pretty average and derivative but as I said the world created has a little bit of potential. The way things are set up Bloodsuckers really does seem like the pilot for a TV series- character dynamics introduced, the world introduced but not explored, etc. <br /><br />The film does have a some highlights and head scratching moments- the kind of stuff that actually makes these dodgy productions watchable. -The scene where our heroes interrogate a talking sock puppet chestburster type creature. Hilarious. - The ""sex scene."" WTF indeed. -The credit ""And Michael Ironside as Muco."" The most annoying aspect of it all though is the really awful and usually inappropriate pop music they have playing very loud over half the scenes of the movie. It is painful to listen to and only detracts from what is only average at best.<br /><br />Basically an okay watch is you're up for something cheesy, even if it is just for the ""chestburster"" scene.",0 +22440,"Can I give this a minus rating? No? Well, let me say that this is the most atrocious film I have ever tried to watch. It was Painful. Boringus Maximus. The plot(?) is well hidden in several sub-levels of nebulosity. I rented this film with a friend and, after about thirty minutes of hoping it would get better, we decided to ""fast forward"" a little to see if things would get any better. It never gets better. This film about some dude getting kidnapped by these two girls, sounds interesting, but, in reality, it is just a bore. Nothing even remotely interesting ever happens. If you ever get the chance to watch this, do yourself a favor, try ""PLAN NINE FROM OUTER SPACE"" instead.",0 +13223,"Want to know the secret to making a slasher film set at a fitness center work? Just pad the film out with lovely ladies in super tight workout outfits and have them bump and grind the floor like they are at a gentleman's club. That's what the makers of this horrid slasher film did and that little gimmick kept me watching till the bitter end. This is the worst slasher film I have ever seen, but every time I was ready to switch the channel, they'd add another scene with the workout girls and I'd stay put. As a slasher film, Killer Workout fails in every category I can think of. As a showcase for beautiful girls working out, it is a success. Strong recommendation to avoid, unless the thought of half the film being a big T&A show appeals to you.",0 +16913,"For the big thinkers among us, ""The Intruder"" is a maddeningly incoherent movie from France that gives so-called ""art films"" a bad name. The story is something about a bitter old coot, Louis Trebor (Michel Subor), who goes searching in Tahiti for a heart transplant, but beyond that, I have no idea who any of the people in the movie were or why they were doing what they were doing. With no coherent storyline to boast of, the movie loses us early on, though I'm perfectly willing to admit that there might be SOMEBODY out there who actually gets some deep message out of this film. <br /><br />This muddled, snail-paced drama runs a full two hours and five minutes - though I seriously doubt anyone with any kind of a life will still be hanging around by the closing credits.",0 +687,"Los Angeles TV news reporter Jennifer (the beautiful Barbara Bach of ""The Spy Who Loved Me"" fame) and her two assistants Karen (the appealingly spunky Karen Lamm) and Vicki (the pretty Lois Young, who not only gets killed first, but also bares her yummy bod in a tasty gratuitous nude bath scene) go to Solvang, California to cover an annual Danish festival. Since all the local hotels are booked solid, the three lovely ladies are forced to seek room and board at a swanky, but foreboding remote mansion owned by freaky Ernest Keller (deliciously played to geeky perfection by the late, great Sydney Lassick) and his meek sister Virginia (a solid Lelia Goldoni). Unfortunately, Keller has one very nasty and lethal dark family secret residing in his dank basement: a portly, pathetic, diapered, incest-spawned man-child Mongoloid named Junior (an alternately touching and terrifying portrayal by Stephen Furst; Flounder in ""Animal House""), who naturally gets loose and wreaks some murderous havoc. Capably directed by Danny Steinmann, with uniformly fine acting from a sturdy cast, a compellingly perverse plot, excellent make-up by Craig Reardon, a nicely creepy atmosphere, a wonderfully wild climax, a slow, but steady pace, likable well-drawn characters, and a surprisingly heart-breaking final freeze frame (the incest subplot packs an unexpectedly strong and poignant punch), this unjustly overlooked early 80's psycho sleeper is well worth checking out.",1 +5208,"The film was very outstanding despite the NC-17 rating and disturbing scenes. In reality things like this do happen and that is why this movie shows a lot of it. It all starts with Maya (Rosario Dawson in superb performance) whose recently started attending college has everything going well for her. She meets Jared (Chad Faust in a terrific performance) at a frat party who turns out to be a real gentleman and sweet. He invites her out to dinner. They look at the stars from a bridge and they end going to his apartment. They talk and takes her to the basement were they become flirtatious with each other. She tries to put an end to it, but he rapes her. This incident scars her. She goes to a club meets a bartender/DJ Adrian (greatfully played by Marcus Patrick) who sees that she is getting to drunk and helps before she goes to far. They strike a friendship. He also does drugs and Maya starts using as well. In other words introduces her to a different world. She starts going back to school and working as TA (Teaching Assistant) and spots Jared as one of the students. While the students are taking a Midterm, she catches Jared cheating. Jared tries to smooth talk Maya, but she still has the upper hand decides to invite him to her place. Will history repeat itself? Or Will Maya have a surprise for Jared? You watch the movie. Excellent A. Rosario Dawson portrays the role with focus and endurance. Chad Faust does not like he can be a rapist, but he does a terrific job as Jared. Marcus Patrick is very brilliant the man who saves Maya and coaches her into a new world. This film deserves an award.",1 +17160,"I watched this movie when Joe Bob Briggs hosted Monstervision on TNT. Even he couldn't make this movie enjoyable. The only reason I watched it until the end is because I teach video production and I wanted to make sure my students never made anything this bad ... but it took all my intestinal fortitude to sit through it though. It's like watching your great grandmother flirting with a 15 year old boy ... excruciatingly painful.<br /><br />If you took the actual film, dipped it in paint thinner, then watched it, it would be more entertaining. Seriously.<br /><br />If you see this movie in the bargin bin at S-Mart, back away from it as if it were a rattlesnake.",0 +8417,"Having first watched the movie at 14, I remember being struck by hearing the word 'govno' (sh*t) for the first time ever on the then-still-Soviet TV (I bet it really was *the* first time in history anyone wants to add this to trivia section?:)... What an open boldness and freedom, I thought! As years passed, I was more and more impressed with the movie and the incredible acting, but my feelings turned to a kind of mixture of enjoyment from a genuine piece of cinematographic art and a bitter realization of a concept diametrically opposite to my 14-y.o. impression: helplessness. There's an air of inevitable catastrophe looming throughout the movie, of primitive degenerate tide (embodied by Sharikov) sweeping the lives of the finest minds advancing humanity in their areas... It's a great metaphor of Russian revolution in general, inspired by intellectuals ashamed of their superiority and hoping to 'upgrade' the lower classes, only to unleash the power of mediocrity and get swallowed by it... An extremely fine and talented piece, wrapping a truly sad idea in a brilliantly satiric and elegant form. Symbolically enough, the movie itself marked the end of the Soviet movie traditions era before the Hollywood tsunami had knocked them over for good, it seems, judging by most current Russian movies (most of them labeled 'blockbusters' in prerelease!!! trailers and posters:).<br /><br />Funnily, that 'govno' episode is in no contradiction to Efenstor's comment above re rude language of current generation... From what I've already said it could seem that this might be the movie that showed the way for this, but it was not. A mild word by current standards, it was way too rude back then, and just rude enough to show the true nature of all Sharikovs... BTW, re Efenstor's lament, it is sooo naive to juxtapose being intellectual and using rude lexicon, especially for Russian speakers, where a single cussword could have meanings that take sentences in translation! But I join in regret that ALL the meaning in today's teenager's talk may be expressed by cusswords. I feel that this is the bigger problem than their choice of the medium that's most efficient for the task:) Well, this movie and the book are great food for thought that might change them, or anyone who might have a luxury of watching it.",1 +10345,"Victor McLaglen's performance is one of the finest in film history.<br /><br />I think we can all feel for ""Gypo"" because we've all struggled with what is right and what isn't and been wrong. This was one of the first art-house pictures to be released by a major American movie studio (RKO Radio Pictures).<br /><br />Joseph H. August's cinematography is at its very best here. However, August's stunning portion was mostly overlooked; he didn't receive the Oscar nomination he rightly deserved.<br /><br />This is a psychological drama, with thought, philosophy, sadness, all conveyed with as little words as possible.",1 +4920,"Who made this film? I love this film? Somebody has a wacky sense of humor...<br /><br />This Zany, Surreal style of film making is appealing, but it is hard to create - or easy to forget - that substance, and characters who actually have souls, are what give such a film depth. Without that a comedy is just a bunch of ideas. Who cares. It may get laughs, but it goes through you like a half-good hamburger...next...<br /><br />Crosseyed may not intend to change anybody's life, but I appreciate the depth and substance. They sneak up on you. I started this film thinking ""Oh, I get it - indie comedy - off the wall - gonzo...yup."" And it is that - but if you pay attention there is sub text and character moments filling it out. In this sense the film breathes. It makes propositions that give pause - if you're available to see them - and then, of course, it goes on its insanely merry way.<br /><br />You will miss the point if you don't sign the contract to suspend belief at moments in the film. Stepping between reality and surreality IS one of the points of this movie.<br /><br />Crosseyed isn't perfect, but smart people made it. I want more.<br /><br />The dining room scenes are an absolute HOOT.<br /><br />Put on your seat belt.",1 +23349,"I was so disappointed by this show. After hearing and reading all the hoopla about it, how it was a ""ground breaking show"" and all sorts of wild promises if quality, I tried to watch it.<br /><br />What a letdown!! The acting was way forced and exaggerated. The story made very little sense. As for any hint of the vaunted ""look into teenagers' lives"", I could only see a paltry attempt that had as much reality to it as a reality show.<br /><br />Some are wondering why there are so many negative comments about this show. The reason is that it's really not all that good and beating the drums over quality on this show only serves to attract attention to how poorly made it is.",0 +24372,"Unhinged follows the typical plot of the early 80's slasher trend. Pretty Young Girls In Peril. I have to give it up for the filmmaker who used a helicopter for some of the early road-trip shots, you actually think for a second there's going to be quality in the production. Watching ""Unhinged"" was like seeing an amateur acting class go through it's warm-up. Some of the most awkward, badly lit, overlong scenes are played out with the gusto of a Valium overdose. I wondered why they didn't just put the cue-cards on camera so the actresses wouldn't have to constantly shift their gaze. The two main girls were obviously chosen for their T&A factor rather than talent. Laurel Munson as the main chick Terry is as exciting as watching paint dry. Two nude scenes make for an adolescent thrill. Janet Penner and Virginia Settle as the crazy/creepy daughter and mother the chicks find themselves stranded with compete for Worst Acting Ever. Long pauses, weird expressions, emphasis on the wrong word, it's all there and is a delight for those of us out there who love bad films. The scenes shift suddenly with long black-outs you could drive a Mack truck through. Cartoon lightning crashes across shots without even bothering to show the sky. Eighties eyeshadow assaults the viewer. But ya know, it grew on me. I felt sorry for it. I wanted to hug it, kiss it's boo-boos and make it better. The ending doesn't make up for the damage it's caused but I grinned anyway. I have my own theories regarding the whole ""banned"" hype and hope that anyone who chooses to view this film does so with substantial substance abuse and a sense of humor. Otherwise pass.",0 +21058,"There's hardly anything at all to recommend this movie. Chase Masterson is always nice to look at and actually can act, though her role in this clunker is a waste. Unfortunately the rest of the cast ranges from bad to mediocre. In a lot of films like this someone will shine through the material and you make a note of them for future reference. No such luck here. Creature Unknown"" a clichéd monster-on-the-loose flick with the kids getting knocked off one after the other. The monster is a man in a rubber suit which hearkens back to the days of Paul Blaisdell. So bad it's good! The rest of the show is just so bad it's bad. A little humor might have made this more palatable, but everyone plays the deadly dull material straight up. There is a twist or two at the end, but by then you won't care anymore.",0 +19520,"I have a severe problem with this show, several actually. A simple list will suffice for now, I'll go into more depth later on: superficial characters, a laugh-track and boring humour.<br /><br />If you don't wish to look at the rest of this review and are only reading it so you can feel superior (as if you see anything in this show I didn't) to a frequently irked teen from Canada I'll summarize: Friends sucks, not only because it is unfunny but because it destroyed the TV audiences for new, good shows (Arrested Development, Dexter etc.). Friends is as much to blame for reality TV, ""Two And A Half Men"" and ""The King Of Queens"" as the television executives. Now then, on with the review.<br /><br />These characters have no soul, they are exactly the same in every way (outside of gender and hair colour). They react the same way in boring situations and are completely secure in their own bodies. Where is the conflict and the humour that comes with it? Why isn't Rachel storming out on Monica after Monica starts hanging out with Rachel's enemy? Why doesn't Joey contemplate suicide because nobody seems to take him seriously? Oh right, cause he's the dumb one and he's comfortable with that. This is the curse of having perfect characters: lasting conflict and (god forbid) personality becomes an impossibility.<br /><br />The laugh-track is the one thing that should have died out right after it was born. Any show that has one is almost certainly the opposite of funny. How can I make such a broad generalization? When a show that claims to be ""comedy"" requires laughter from someone BESIDES THE AUDIENCE it must mean that the audience would not laugh without it. Laughtracks destroy humour by preventing quick comebacks. Humour becomes a construct rather than a free flowing entity (see The Office, Arrested Development).<br /><br />This leads to my next point: the humour is boring. There is no way to make a perfect character anything more than slightly humorous (without a laugh-track apparently) simply because our everyday humour comes from recognition of our flaws. So what if Monica dated a 17 year old? She immediately recognizes that what she is doing isn't right and breaks up with him. There has to be some sort of conflict rather than an immediate solution. Maybe her mother finds out or one of her friends tries to get rid of him and ends up seducing him. That would be great, it would be like a custody battle! So now I've provided evidence for my position. Many of my friends love this show because they haven't heard of Curb Your Enthusiasm or Arrested Development, many of my friends hate this show because they recently started watching Curb Your Enthusiasm or Arrested Development. <br /><br />I have watched very little of ""Friends"" in my life, but I have watched enough to spot huge flaws that make the show, in my opinion, completely unwatchable. If you've read this far, thank you, and I hope you at least start watching some of the shows I have mentioned.",0 +19600,"Demer Daves,is a wonderful director when it comes to westerns and ""broken arrow"" remains in everybody's mind.As far as melodrama is concerned,he should leave that to knowing people like Vincente Minelli,George Cukor or the fabulous Douglas Sirk. The screenplay is so predictable that you will not be surprised once while you are watching such a tepid weepie.Natalie Wood 's character was inspired by Fannie Hurst's ""imitation of life"" (see Stahl and Sirk),but who could believe she's a black man's daughter anyway?Susan Kohner was more credible in ""imitation of life"")and Sinatra and Curtis are given so stereotyped parts that they cannot do anything with them:the poor officer,and the wealthy good-looking -and mean- sergeant.Guess whom will Natalie fall in love with?France is shown as a land of tolerance ,where interracial unions are warmly welcome.At the time(circa 1944) it was dubious,it still is for narrow-minded people you can find here there and everywhere.",0 +5462,"Hollywood North is a satirical look at the time in Canadian film history when the Canadian government offered huge tax breaks for films made in Canada. Most of the time it was treated as a tax shelter or a cheap way to get American films made. For example, Porky's came out of it. Anyways Matthew Modine plays a novice producer who wants to make an adaptation of a beloved Canadian novel. However, in order to get the money he needs a American name star. He gets a loose cannon and learns he has to compromise to the point where the film no longer resembles the book it was originally based on. It plays well in Canada but may not be understood outside of the Great White North. Americans will think we're satirizing ourselves but will miss the point that we're actually satirizing them. For Canadians 8/10 for the rest of the world 5/10.",1 +13757,"First off, I agree with quite a bit that escapes Mr. Chomsky's mouth. His matter-of-fact delivery of interesting counterpoint is what makes the man a hit on the university campus circus. He comes across likable, unassuming, pragmatic. He doesn't cater to the current political style (obnoxious bi-partisanship) and he sets his sights on the far left as well as the far right, chastising both, and for good reason.<br /><br />Unfortunately, the film itself is a dud. In fact, I would not even call this a documentary but rather just a collection of speeches. Watching ""Rebel Without a Pause"" is no different from watching a speaker on a 3am taped segment on CSPAN. There are no camera movements, no edits, no stylistic touches. There is no story, no narrative.<br /><br />Technically speaking, the production is strictly amateurish. Audio is terrible and inconsistent; sometimes we cannot hear Noam speak, other times we cannot hear the questions that are being posited by those in attendance. When Noam is speaking rarely are we allowed to see the reactions of the audience except when we are given a quick shot of his wife who apparently attends every one of his speeches and beams with pride every time we see her.<br /><br />I cannot recommend this film and would say that you're probably better off checking out his taped speeches on cassette or CD to listen to in the car.<br /><br />4 out of 10 stars...and I'm in a generous mood today.",0 +22179,"Direction must be the problem here. I recently heard John Cleese speaking of working a skit for Fawlty Towers. He was supposed to attack his car with a branch. The first branch was too flimsy and not funny. The second branch was too stiff to be funny. The third was just flimsy enough to be funny. This sort of attention to detail is missing from ""Corky Romano"". No matter how embarrassingly unfunny a comic bit was, it wasn't fixed, and wasn't left on the cutting room floor. The one value I can find in this movie is as a study of a very flawed movie which somehow escaped into distribution without being repaired.<br /><br />I've scanned dozens of other reviews here. The number of reviews praising this absolute waste of time bolsters my suspicion that some people are getting paid to promote titles. I can't fathom how anyone over the age of 9 could rate this title more than a 4, MAX. I mean, come on, 5 is average. I can't imagine anyone, even those making money off of this, rating it even as much as average.<br /><br />This makes my list of the 10 worst movies of all time. And, hey, I actually LIKE the Three Stooges and can even tolerate Ed Wood!",0 +19567,"I occasionally see some of this show because my wife watches it sometimes. I try to enjoy it for it's basic idea which is helping a needy family, but several factors get in the way for me. Every episode follows the same format where many parts seem totally scripted (which they are) and tears flow seemingly on cue. The attempt to manipulate the viewer with a mixture of emotional breakdowns and sad music is a real turn off for me. The fact that everyone who donates something to the house, be it Sears or whoever, has to plug themselves for being generous is also annoying. Probably the biggest problem I have with it all is that what must be huge amounts of money and a small army of workers are combined to build an amazingly over the top home for a single family. Now I know that this amount of money is nothing but a drop in the bucket for Disney/ABC but how much more could be done for more people with the amount they are putting on one house? Instead of focusing on one family and getting them all to cry during the episode why not help 10 families and show highlights? Isn't life difficult enough for the average person? Why do I need help finding things to feel sad about, why not show something truly inspiring without being manipulative? I know what is being done for these families is good, but they are also being used for ratings. You can't tell me they aren't being coached sometimes on the crying. I guess when I see these people moving into a home that most hard working people in the U.S. could not afford for their children it really bothers me. I can't help but think of what could really be done with a small portion of Disney's money. Instead of giving each member of the family a flat screen TV and or personal shower that tells you the water temperature and shoots out of the ceiling why not help more people afford food, clothes, education and medical insurance? I know so we can be entertained and have a good cry. In terms of money, I feel the same about Oprah. I don't think anyone can actually conceive the amount of money she possesses. Yes her recent reality show did good things, but when she gave $30,000 to each losing ""contestant"" I'm sitting here thinking...that's a years salary for many, many people...if they're lucky. Don't get me started on game shows. So I realize that Extreme Makeover Home Edition is ""doing good"", but forgive me if I see it as more self serving than giving of itself. Is there anyone out there that feels similar?",0 +19583,"As a youth pastor I heard good things about this movie. Then I watched it. The acting wasn't the best. That's forgivable. It's the message that's not: Give Jesus your life and everything will change - you'll tackle better, make amazing catches, stop fumbling, start making touchdown passes, and even make the playoffs. All because Jesus magically turns horrible undersized weaklings into All-American athletes. I laughed out loud when a coach quoted scripture to explain to the kicker why he was missing field goals. But wait, that's not all. You'll get a brand new truck, a $6000 raise, and you and your wife's struggle with infertility will suddenly end in pregnancy - twice. THEN you'll win the state championship because God helps a weakling kick the winning field goal 12 yards further than he's ever kicked before - and into the wind, no less - all because ""God wanted him to make it."" Then you'll win the state championship again the next year. None of this good stuff would have happened if the team hadn't chosen to follow Jesus will all their hearts.<br /><br />Here's what I took away from the movie: God can do anything he wants to do whenever he wants to do it - and it's all about making our lives better, easier, and more enjoyable. He chooses his favorite team and helps them win games. Which bible is this story based on? I'll bet Saint Stephen wished he'd known the keys to such a safe life before he was stoned to death. Someone should have made this movie before 10 of the 11 apostles were killed for following Jesus. It would have saved them all a lot of trouble.",0 +21821,"Can I please say first of all, that I felt so strongly about this movie that I signed up to IMDb specifically to review it. And my review? This is easily the worst movie I have ever seen.<br /><br />The synopsis of the movie sounded interesting- Nazis, occult, time travel, etc., but the movies plot failed to properly bring all these elements together. Remember the episode of South Park that featured manatees writing Family Guy using 'idea balls'? Did these manatees also write Unholy? Its like the writer wanted to include all these different ideas, but had no idea how to link them all together, and then to make things make even less sense, included a Donnie Darko-esquire time travel theme to the ending, messing up the chronology.<br /><br />I could tell from early on that this was a bad movie. Special effects were too low budget for anything better than straight to DVD. The acting wasn't great, but in fairness I've seen worse. I will praise the Nazi paintings, they were creepy, but the evil Nazi butcher guy was just comic.<br /><br />I don't have a vendetta against this movie or anything, but to be honest, I'm not even into the horror genre. But this movie cannot be described as a thriller or a drama. If this story had been well told, this would have been a good movie. But it has been over hyped. Waaaaay over hyped.",0 +1289,"This is truly the greatest Swedish movie of all time. Not only is it revolutionary in its narration, but its also among the first movies to feature the next generation of Swedish humor and Swedish comedians. Felix Herngren and Fredrik Lindström are two of the most intelligent and witty filmmakers in Sweden today, and this film really puts that on display.<br /><br />""Vuxna människor"" (Adult People) is a warm-hearted and hilarious story about adulthood, and the question if we wouldn´t be better off without it.",1 +12773,"End of the World is an uneventful movie, which is odd since it is supposed to be about the total destruction of the earth. The main character is some kind of scientist, I'm not exactly sure what kind. He has two jobs at a government(?) facility guarded by four security men. His first job is monitoring transmissions to and from space (although this actually seems more like a hobby he does when not working on job #2). Job #2 requires him to put on a protective suit and go into a dark room...at least that's the best I can figure. Apparently the ""plant"" is not exactly top-secret, as the scientist brings his wife there. She hangs out (they're on their way to a dinner) while he discovers a message from space: Major Earth Disruption, repeated over and over. He says something about it being the first message from space he's ever been able to decipher; his wife tells him they're going to be late for the dinner party. So they leave and go to the party (!?!). Moments later he finds out that China has suffered a major earthquake. From there, the movie goes... nowhere! Yes, Christopher Lee is in it, but that really doesn't help much. Besides, Lee gives a lackluster performance along the lines of his appearance in Howling II. This movie is boring, but it has enough stupid elements that you might want to suffer through it once if you like Christopher Lee or Z-grade sci-fi. Plus, there's lots of stock footage of the earth being destroyed.",0 +23237,"Yeah. Pretty sure I saw this movie years ago when it was about the Supremes.<br /><br />Another recycled storyline glitzed up Hollywood-style, borrowing scripts from better making-it-in-the-music-industry films.<br /><br />Nothing original here.<br /><br />More make-up, glammier costumes and choreography = more money for the questionably ""talented"" Beyonce draw.<br /><br />If you like the throwback style, you should appreciate actual groups who struggled (without having digitized voices and a Hollywood empire).<br /><br />Beyonce's involvement makes this hypocritical garbage.",0 +10692,"OK, this movie was cool. I don't think it was the best movie ever made but it sure was fun. My brother and I still act out scenes once in a while, and will occasionally yank the movie out of the cupboard, blow off the dust and pop it in. Enjoyable all the way until the end, but a great concept. This is a movie that one has to just forget criticism all together and just enjoy. Judgment is victory for Robot Jox.",1 +10335,"This movie is not a kung fu movie. This is a comedy about kung fu. And if, before making this film, Sammo Hung hadn't spent some time watching films by the great French comic filmmaker Jaques Tati (i.ie., e.g., esp. Jour de fête), he is certainly on the same wave length.<br /><br />Personally, I think Tati's films are hilarious; but they're not to all tastes. Some have told me that they loathe his work. I've never figured out why, but I think it's because the character that Tati usually plays himself is so totally dead pan, so unaffected by the events around him (which he is usually causing) that many miss the more subtle comic bits happening around him.<br /><br />At any rate, Tati's main shtick - or at least his best known - is to take a pretentiously upright petite bourgeoisie with 19th century sensibilities and drop him into 20th century France where he must confront a society that is largely defined by the gradual eroding of those sensibilities. He usually has serious difficulties with little things like record players or radios. He's a hazard in a car, but the world's no safer when he rides a bicycle. But through it all, he never loses his aplomb, which is derived from his inner recognition that the nineteenth century was more interesting than the 20th overall.<br /><br />In a similar fashion, the character Sammo Hung himself plays is a country boy come to the big city of Hong Kong, utterly convinced that what makes the city interesting is that Bruce Lee made kung fu movies there. This gets him into trouble in small ways, since he takes in stride happenstance which would never be noticed in a small town but which are deemed inappropriate in a big city - such as the moment when he appears to be urinating in the street, A cop stops him, only to discover that Hung is actually just squeezing water out of his shirt, soaked during an accidental dip in the bay. What's interesting about this gag is why it is Hung doesn't understand what the cop's fuss is all about - in a country town, as long as no one's looking, if you gotta go you gotta go. In other words, Hung is not really urinating in the street - but he certainly would - and what's the problem officer? Of course Hung's obsession with Bruce Lee also gets him into big troubles as well. He beats a gang of thugs who have refused to pay his restaurant-owner uncle. Of course, in a Bruce Lee movie, the thugs would be considered trounced, and they would have learned their lesson. But in Hung's Hong Kong, reality unfortunately prevails, and the thugs return when he's not around, to trounce his uncle.<br /><br />Of course, Hung finally triumphs in the end, just as Tati always did. Characters like this must always triumph (at least in comedy) because they are completely innocent, and as such, despite their comic missteps and misunderstandings, they really represent what is best in the humans we admire and wish to be. We don't really want to be Bruce Lee (who has to experience the loss of all of his friends before he gets a chance to beat the bad-guy), we, in our own innocence, really want a world where Lee's heroics are possible.<br /><br />Unfortunately, that world only exists on film.<br /><br />""Ah, but what if...?"" - and in that question we find Sammo Hung at his comic best.",1 +24435,"This ludicrous film offers the standard 1970's ""hippie mentality"" in a nut shell and bores us in the process. Its an attempt to rationalize absurd marriages of young, innocent women with old age sex fiends and wash ups. A naive young hippy played by the waif-like ( Kay Lenz ) hitch hikes and sleeps with all the wrong guys, and then one day she meets the ridiculous (Holden), already in old age, hard liquor drinking and washed up as an actor, and she decides that she is in ""love"" with him. If you think that is superficial, the whole film encapsulates such scenes. She keeps saying how much she ""loves"" him and she only met him, it wears thin and really quick. I couldn't help but laugh throughout the film. Its obvious she's just using him as a meal ticket but the director is immature enough to think we are going to buy that there is actually any love taking place. A disgusting scene is where the two are naked and having sex, I had to fast forward it because it almost inspired me to vomit. A corny offering of music from the 70's is also spread through the film. Avoid this if you can. Grade D.",0 +21618,"This is one of the worst movies I saw! I dunno what are the reasons for shoting suck a crap. Don't waste your time watching this. Good actors, but extremely bad screenplay and dialogues. Hope there'll be no Blanche 2 :-) Avoid this movie by all means!",0 +23813,"Watching this last night it amazed me that Fox spent so much money on it and got so little back on their investment. It's the kind of disaster that has to be seen to be believed.<br /><br />I'm sure that the first morning of filming Raquel Welch dusted off the shelf over her fireplace to prepare a spot for the Academy Award she would surely win for this daringly original movie. Oops. That's not what happened.<br /><br />The infighting on the set was detailed in print by Rex Reed and this helped the movie attain a reputation before it was even released. When it was finally released there wasn't the usual three ring circus of publicity. If I remember correctly, in Houston it opened at drive-ins and neighborhood theatres and never played any of the big venues.<br /><br />I lay most of the blame on director Michael Sarne, who was hot after having directed (the not all that good) JOANNA, a film with music about young people in swinging mod London.<br /><br />If I recall correctly, Fox wound up firing him and piecing the film together the best they could. That's why scenes play out in no particular sequence and characters appear and then vanish. An impressive supporting cast (Kathleen Freeman, Jim Backus, John Carradine, Andy Devine and others) is wasted with nothing to do.<br /><br />To expand it to feature length there are numerous clips from Fox movies featuring stars like Carmen Miranda (in amazing footage from THE GANG'S ALL HERE) andLaurel and Hardy, who never dreamed they'd be playing in an X rated movie.<br /><br />The X rating is due to occasional language numerous sexual perversions; however, none of the characters seem to be having any fun. Maybe somebody involved with the film had a warped Puritan sensibility and figured that if they could make these things unappealing it wasn't bad to exploit them.<br /><br />This was one of the ""youth"" pictures that nearly bankrupted Hollywood in the 1970's. One writer joked that EASY RIDER (which was made for pocket change) was the most expensive movie ever made because so many films followed which tried and failed in the worst way to duplicate its success. Sixtyish, once honored directors like Stanley Kramer and Otto Preminger made movies like RPM and SKIDOO in an effort to attract a young audience. White directors and writers attempted to make films to attract a Black audience. Those movies are locked somewhere in a vault and the two named and many others from that genre have never, as best I know, been out on home video or cable. They're the studios' deep dark secret.<br /><br />Raquel Welch's performance in this is, all things considered, very good. With the right direction and script she could played the type of sassy liberated women Rosiland Russel and Barbara Stanwyck specialized in. She looks great and has awesome costumes. Mae West is the liveliest seventy-something actress I've ever seen. On the one hand it's kind of heartbreaking to watch her attempt to capture her glory from years gone by, but I'm sure she needed the money.<br /><br />If you want to see a big budget X-rated movie from this era check out BEYOND THE VALLEY OF THE DOLLS (also from Fox) because it doesn't take itself seriously. It's crazy kids playing with the equipment at a major studio. MYRA BRECKINRIDGE tries to Say Something. There just wasn't anyone who wanted to listen.",0 +11905,"Dan, the widowed father of three girls, has his own advice column that will probably go into syndication. After his wife's death, he has taken time to raise his daughters. Having known no romance in quite some time, nothing prepares him for the encounter with the radiant Marie, at a local book store in a Rhode Island small town on the ocean, where he has gone to celebrate Thanksgiving with the rest of his big family. After liking Marie at first sight, little prepares him when the gorgeous woman appears at the family compound. After all, she is the date of Dan's brother, Mitch.<br /><br />It is clear from the outset that Dan and Marie are made for one another, and although we sense what the outcome will be, we go for the fun ride that Peter Hedges, the director wants to give us. Mr. Hedges, an author and screenplay writer on his own, has given us two excellent novels, ""What's Eating Gilber Grapes"", and ""An Ocean in Iowa"", and the delightful indie, ""Pieces of April, which he also directed. It's just a coincidence that both movies deal with families during Thanksgiving reunions.<br /><br />The best thing in the film was the natural chemistry between the two stars, Steve Carell and Juliette Binoche. Mr. Carell, in fact, keeps getting better all the time. In many ways, he remind us of Jack Lemmon, in his take of comedy and serious material. What can one say about Ms. Binoche, an intelligent actress, and a bright presence in any film. She proves she is right up to doing comedy, convincing us about her Marie.<br /><br />The only sad note is the waste of talent in the picture. John Mahoney, Diane Wiest, Norbert Leo Butz, Jessica Hecht, Emily Blunt, Allison Pill, Amy Ryan, have nothing to do. They just serve as incidental music for decoration. Dane Cook, who is seen as brother Mitch, fares better because he gets to recite more lines than the others.<br /><br />""Dan in Real Life"" is a delightful film that will please everyone.",1 +24495,"A below average looking video game is turned into some sort of conspiracy to have the next terrorist discovered in the USA backyard. Welcome to the lunacy of cheaply made direct to video movies. Its full of no-name actors and actresses with little valuable plot.<br /><br />Anyway, this strange game goes on and our ""hero"" bets real money and does good at it. It is sort of like gambling, except the gambling part is gone and it sucks. Instead its an online game with little real value and you get authorities on your tail if you do good.<br /><br />What makes it even stranger is that two strange computer programs battle it out somehow and all is saved in the end. I will leave the viewer to see how it all comes to fruition.<br /><br />Overall, not even worth a $1 rental. Borrow it, please. ""D-""",0 +15830,"Do not waste your time with this movie. This is a total thrash in terms of acting, directing, sound editing, soundtrack... There was such a waste of performance by some of the very good actors. The movie does not do justice to Paresh Rawal who is perhaps one of the most talented actors in Bollywood. Akshay Kumar who is also an emerging star did quite a poor job. John Abraham, what is wrong with him? Is that what you call acting? I mean he should thank God that he has a pretty face otherwise he'd be winning Razzie awards in India if there were any such awards in Bollywood. Asrani a great talent, but overdoes his bit as before.<br /><br />Screenplay which was not to mention a rip-off from the 1965's Boeing Boeing was quite badly framed. First of all, people in Bollywood just can't make something original. On top of that they don't even know how to copy well. The jokes in the movie were so overdone, it was getting painful to sit through them. Priyadarshan may be a star in the south, but he's just not fit to make a decent Hindi movie. The sound editing is amazingly crappy. I can go on and on this matter, but the bottom-line is that Bollywood should be shameful of making such a film.<br /><br />The worst part is that some people seemed to love this movie. What is wrong with you guys? This is the reason why Bollywood is where it is. Did you know that Bollywood makes more movies than Hollywood every year, however, most of the movies are unheard of abroad, because of movies like this one. I am an Indian and I am utterly shameful of Bollywood for producing this piece of thrash. Movies like Dil Chahta Hai and Lagaan were just terrific. They are world class films which are timeless... among the best of this decade. Garam Masala, however, is perhaps one of the worst of this century. Period.<br /><br />I give it a 1 out of 10.",0 +15735,This is no doubt one of the worst movies I have ever seen. This makes your run of the mill TV movie look like Reservoir Dogs. Based on a book by the one and only Britney Spears and her mother this is trash with nothing bar a reasonable performance from Virginia Madsen (I hope you got paid well) to save it. The story of a red neck country gill who wins a scholarship in a prestigious music school is little but a vehicle to pedal Ms Spears pants music to the consumer and to generally agree that low brow must be the way. There is nothing good going on here with all the beats as predictable as night following day. Never ever again.,0 +12158,"I was entranced by this touching and hilarious film, not to mention surprised. I was also surprised to find that the voice of Paulie was performed by Jay Mohr. The performance was so finely nuanced, neither wavering into schmaltz nor becoming too hard under the New Jersey swagger, that I thought that this must be some unsung old pro, not the baby-faced Mr. Mohr. A very impressive performance, indeed, and it's gratifying to see his talents being taken seriously in a string of quirky, indie films.",1 +18263,"Not even Timothy Hutton or David Duchovny could save this dead fish of a film. For starters, the script was definitely written to be made into a B-film, but somehow Duchovny (looking for a star vehicle to elevate himself out of television) and Hutton (looking for the ""two"" of a ""one-two punch"" he had hoped would define his career after ""Ordinary People"") became attached to the picture. Cheesy lines, big bad wipes from scene to scene (Come on--who uses wipes after 12th Grade Telecommunications class?), and plain old bad acting sink this film. Even Duchovny is not immune to the bad acting plague that is this film. Only Timothy Hutton rises above the material at all. I must admit feeling Duchovny's pain as he read the lines that are the voice-over. While I found myself laughing when I'm sure the director wanted me to feel terrified, nothing prepared me for the closing line of Duchonvey's voice-over: ""if you ever need a doctor, be sure to call 911."" If only the studio had called 911, this dog of a motion picture would never have been made. Avoid at all costs. <br /><br />",0 +18814,"I really wanted to like this movie a lot more than I did. That's because I love wacky foreign comedies--particularly the strange ones that catch you completely by surprise. However, although this one frequently caught me by surprise, these were almost never pleasant surprises. It reminded me of South Park in that nearly EVERY social norm was violated until the only ones left to broach were too sick to be funny. For example, after exploring adultery, drug abuse (of nearly every sort--ranging from pot, heroin, speed to glue sniffing), prostitution, S&M, suicide, murder, etc., the movie got to the hilarious(?) topic of pedophilia. Mom encouraged her one son (who looked about 12 years-old) to sleep with neighboring men. In fact, at one point in the movie she gives this boy to the dentist in lieu of payment for dental work! Funny?! You've got to be kidding. This movie just goes too far and delves into the ""black hole of comedy"". What should they make fun of next, cancer or rectal tumors?",0 +12453,"This movie surprised me. Some things were ""clicheish"" and some technological elements reminded me of the movie ""Enemy of the State"" starring Will Smith. But for the most part very entertaining- good mix with Jamie Foxx and comedian Mike Epps and the 2 wannabe thugs Julio and Ramundo (providing some comic relief). This is a movie you can watch over again-say... some Wednesday night when nothing else is on. I gave it a 9 for entertainment value.",1 +6079,"I loved the episode but seems to me there should have been some quick reference to the secretary getting punished for effectively being an accomplice after the fact. While I like when a episode of Columbo has an unpredictable twist like this one, its resolution should be part of the conclusion of the episode, along with the uncovering of the murderer.<br /><br />The interplay between Peter Falk and Ruth Gordon is priceless. At one point, Gordon, playing a famous writer, makes some comment about being flattered by the famous Lt. Columbo, making a tongue-in-cheek allusion to the detective's real life fame as a crime-solver. This is one of the best of many great Columbo installments.",1 +5457,"This is a really strange film--and that is NOT a bad thing. It is a combination of a neo-realistic film about the homeless AND a fairy tale. I'm sure that some may find this movie a bit too strange, but I loved it. Once again, this director brings together a wonderful cast of everyday people (not actors) and gets a great ensemble-type performance. Although not nearly as sad as Umberto D, both movies have a very similar point to make--this one just does it in a very absurdist way. Ignore the cheesy special effects--after all, it was made in the early 1950s and special effects aren't terribly important anyway (or at least they shouldn't be in films). Instead, just sit back and enjoy the very strange and silly ride. Unless you are a total curmudgeon, you'll have a ball.<br /><br />By the way, since I first reviewed this film, I have seen another DeSica directed film that is an absolute must-see and that is THE CHILDREN ARE WATCHING US. While not a fantasy or light in spirit like MIRACLE IN MILAN, a great film nevertheless.",1 +21129,"I went to a screening of this movie and while it had a couple moments that made me laugh, it had some very major flaws. It first of all presents itself to be the humorous exploits of a real-life divorcee trying to find love in LA. What it morphs into is a depressing, narcissistic, and unfunny romp through the history of the film director's love life and professional life. Jokes wear thin quickly and you find yourself suddenly not caring how this man's dates progress. The ridiculousness is that the director simultaneously presents himself as an extremely annoying and heavily flawed character and then expects us to be concerned.",0 +11349,"this is a wonderful film, makes the 1950'S look beautifully stylish. Kim Novak is intriguing and compelling as a modern-day witch with one foot in Manhattan and another in infinity. All the supporting performances are terrific, from Jack Lemmon as her bother Nicky to Ernie Kovacs as the author of Magic in Mexico who is working on Magic in Manghattan, to Elsa Lanchester as the slightly batty as well as witchy Aunt Queenie. And then there is the cat- I have no idea how many witches (besides me) have named a cat Pyewacket but suggest a zillion. Jmes Stewart looks out of place, but only just as much as his character is out of p;ace in this weird sub-world of magic and witchcraft. Perfect. And it has the perfect romantic happy ending, which we believe in because movies of this vintage do have those happy endings. Gillian and Shep certainly have as much chance to be happy ever after as Rose and Charlie Allnut in The African Queen (another great film)",1 +12057,"Darius Goes West is a film depicting American belief that everything is possible if you try hard enough. This wonderful fun filled and sometimes heartbreaking film shows a young man who never expected, but longed to see, what was outside the confines of his lovely city of Athens, GA. Darius wished to see the ocean. His longtime friends Logan, Ben and several other good friends decided to make Darius' wish come true. They started small - Ben & Logan's mom started an email campaign to bring awareness to Darius' condition: Duchenne Muscular Dystrophy and to raise funds for the fellas to take Darius to not only see the ocean but to see these great United States. To say the young college buddies succeeded in bringing hope and awareness to this dreaded disease would be an understatement. They realized Darius' dream and then some. They put their lives on hold while showing love, care and tons of fun to Darius while helping Darius see how he can in turn show those same traits to others suffering from DMD. Darius went on to volunteer for the Red Cross - sitting in his chair collecting money (along with his buddies) outside a local grocery store. His wonderful smile tells the world that dreams do come true - all you need is hope and a group of college friends to support and care for you. Give Darius and all the guys an Oscar - no one else deserves it more. Martha Sweeney.",1 +18532,"I get to the cinema every week or so, and regularly check out this site, but never before have I felt compelled to comment on a film.<br /><br />To my all time list of shockingly bad films - Last Man Standing, Spawn, The Bone Collector - I can now add the drivel that was 'Hollow Man'.<br /><br />From the awful opening titles - a ridiculously over-long run through of cast and crew put together with alphabetti spaghetti - through to the insulting finale - a world record number of cliches and some of the most absurd dialogue and acting to have ever made it to cinema - this film is dismal, and only the impressive computer graphics keep you from walking out long before the end.<br /><br />This isn't just my opinion - it was that of my friends, and everyone around us. When large sections of an audience are laughing and groaning during and after a serious thriller, its clear that the film is hopeless.<br /><br />Not only that, it was sick too. The director took the action beyond the bounds of realistic fare for a violent film, and into the realms of an over the top blood soaked B-movie. It's difficult not to imagine the director as some sort of dirty old man, because the extent of the invisible man's forays out of the lab and into the outside world extended only to two attempts at having a feel of some breasts. Perhaps sex could well be the first thing on a bloke's mind if made invisible, but aside from the aesthetic pleasures of the ladies involved, it hardly makes entertaining cinema.<br /><br />[spoilers follow]<br /><br />Get past the films sick exterior, and things are even worse. Whilst Kevin Bacon does a good job of acting increasingly twisted as 'hollow man', the rest of them - perhaps handicapped by a dire script - do an even better job of being hollow cast. One long time member of the team is found strangled in a locker by the invisible man, ""He's finally snapped"" shrugs one colleague without a hint of emotion. This is par for the course, and the lab team swing between sheer terror and complete indifference with such speed that you wonder how they got into acting. They pad their way through the lab corridors terrified, guns poised, but then seconds later one of the crew skips happily off back down the corridor to get blood for a hurt colleague. The lead female treats the invisible man with courtesy and good humour even after he's insulted and abused her, and there seems to be little reaction to his breakouts, even after he drowns the Pentagon chief, ""He drowned in his pool last night"" reports the same female, spectacularly failing to put two and two together.<br /><br />The script is littered with this kind of badly acted pedestrian dialogue, and the rest is just an A-Z of film cliches, which get laid on thicker and faster as the film progresses to the point of complete disbelief and amusement at the end.<br /><br />The 'eureka' moment at the computer, the female undressing at the window, the looped security video - the list really is endless - the predictable disregard for strength in numbers, the decision not to kill the two main stars but just put them in a place of probable impending death and leave them to their own devices, the almost-dead good guy appearing out of nothing to save the woman, the bomb and ubiquitous countdown timer, the fireball explosion which just burns up before reaching the heroes, the falling lift which just stops before hitting them, and more than anything else, the immortality of the bad guy.<br /><br />The invisible man is burnt to a shred with a makeshift flame-thrower, electrocuted, whacked round the head with a bar which had just sliced straight through one of the lesser actors, and then having apparently survived the explosion, fireball and total destruction of the labs, has more than enough life left to climb up through the fireball for one last pop at the films heroes - by which stage the disbelieving audience are cringing and looking at their watches.<br /><br />That this exceptionally bad film actually made it to the cinema is astounding. Even the name of the film is as hopeless as the movie itself, and not even impressive special effects come anywhere near saving this one, which should be avoided at all costs.",0 +4131,"This is the definitive movie version of Hamlet. Branagh cuts nothing, but there are no wasted moments.",1 +16351,"I am a lover of B movies, give me a genetically mutated bat and I am in heaven. These movies are good for making you stop thinking of everything else going on in your world. Even a stupid B movie will usually make me laugh and I will still consider it a good thing. Then there was Hammerhead, which was so awful I had to register with IMDb so I could warn others. First there was the science of creating the shark-man, which the movie barely touched on. In order to keep the viewers interested they just made sure there was blood every few minutes. During one attack scene the camera moved off of the attack but you saw what was apparently a bucket of blood being thrown by a stagehand to let you know that the attack was bloody and the person was probably dead (what fabulous special effects). Back to the science, I thought it was very interesting that the female test subjects were held naked and the testing equipment required that they be monitored through their breast tissue. Anyway this movie had poor plot development, terrible story, and I'm sorry to say pretty bad acting. Not even William Forsythe, Hunter Tylo or Jeffrey Combs could save this stinker.",0 +17420,"I saw this movie by accident yesterday at a cinema. I had some hopes for the movie because I really like Spoorloos (The Vanishing) and the book it's based on. The movie starts out okay as it at first seems to be a nice thriller. Quickly though the movie becomes a mess with uninteresting plotlines, characters that are never fleshed out and nobody in the audience cared for (like Marjoke) and terrible editing. The movie has fade to black bits that are just way too long, a messed up chronology that jumps back and forth and lots of scenes that just don't add anything to the story and could easily have been dropped. After suffering through the story you'll get treated to one of the worst endings I've seen in a very long. It should also be mentioned that the movie has lots of explicit sex scenes which you're probably used to if you watch a lot of dutch movies. It's hard to mention any good things about this movie. About a third of the audience had already walked out of the theater halfway into the movie and I didn't hear a kind word after the movie was over. Avoid this movie at all costs. it really destroyed any faith I had left in the dutch movie industry.",0 +15408,"A one is the highest rating I could have given this movie, considering zero and negative numbers are not allowed. Pee yew, pointless mess of a movie with a lot of wasted b-list actors who have done better work, written and directed by some guy with the mentality of a twelve year old who smirks and giggles at stupid puns, and poop and fart jokes. For example, Gene Stapelton's (Ding-Bat from All in the Family) character telling Marilu Henner's character that she ""swings both ways"" sexually, was a cheap attempt at humor indicative of the general lameness of the movie... You want good, cheeky humor? Rent Animal House, American Pie (part one only), Old School or Office Space.",0 +23188,"So, has it really come to this? Are we, as consenting adults, to blame for the next generation of cinema-goers lack of cinematic understanding and celluloid capability? Concerning the Wayans and Co. latest addition to the moving pictures scenario; Little Man. This United Kingdom P.G. (Parental Guidance), anyone under the age of twelve must be accompanied by a responsible adult, certificated movie, is the epitome of what has now developed into the worse case of dumbing down since cigarettes were ""wiped out"" from pictures of movie icons of the 1950's.<br /><br />The predominantly under twelve's audience here who, some without grown up supervision too, sat there, obediently, taking it all in, oblivious to their subject and the partly grown up features that Little Man portrays, in part at least too. Movies, in general, can do better than this poor attempt, while this nonsense is getting them in while they are still young and fresh, the biggest fear for the future of Cinema is that a child's ignorance just might carry on through to a grown up bliss. Cinema deserves more than this, and so do its ever growing, and in the literal sense too, audiences, this blatant cash cow feeds on the ever-impressionable minds of the young.<br /><br />There is no Cinema experience here, no open eyed wonder, no awe-inspiring respect to the magic of movies'. There is nothing but bewilderment and contempt, for the lack of substance, originality and its delivery of mind less tedium and parody of everything that is so now ultimately wrong with the Hollywood machine, for the sake of a quick buck, we must endure our future cinema audiences to the likes of this archetypal disaster movie.<br /><br />Will this have the likes of Hitchcock, Fassbinder, Leone, Kubrick and Schaffner reeling in their graves? Money they all liked, no doubt, but talent and exuberance for perfection and quality, and to a vast degree, respect for their profession and audience, they were never short off. We are seeing, once again, with the works of the Wayans clan another cliché of bad taste, while the likes of White Chicks (2004) were in no doubt a stab at the bourgeoisie of American society. The irony here is that the two leading protagonists, played yet again, by the Wayans brothers, are so much undercover, that all recognition is non-existent, this makes for a better movie too, and it is the actor Terry Crews that gives White Chicks its substance and personality, not the Wayans.<br /><br />Yet again, with their pastiche of 1970's Blaxploitation movies, as with the 1988 movie I'm Gonna Git You Sucka, this to can be seen as a comical and amusing movie, with heavy weights as Isaac Hayes, Jim Brown, Bernie Casey and the gorgeous actress Ja'net Du Bois. The point being, that Little Man has absolutely no persona of any kind what so ever, he is shallow and narcissistic, with no appreciation or value toward his followers, he quickly dives in takes your money and before we know it, has hidden himself within the cogs of commercialism. There is no recognisable effort as to where our money has been spent, after Scary Movie (2000), things could only have gone up, but alas they did not, no great pondering of artistic value and no doubt that the instalment from these intrepid movie moguls' next movies shall be straight to video, one can only hope.<br /><br />The Wayans seem to have created a movie genre all by themselves, to a certain extent; they have bludgeoned to death the movie parody, they have watered down each and every avenue and with their inevitable style. They have slowly destroyed the reputation of the last one hundred years that Cinema have given us, may the ghosts of movies past be ever so humble in their judgement, as their growing audiences, so far, seem to be, for when the bubble bursts, may they be as understanding too.",0 +4134,"I had never read Shakespeare's Hamlet before watching it but I did have a Shakespeare book with me and could follow the dialogue through it. My view on the movie may be partially biased since I had never read the play before, but I got pulled into this movie's grasp. Shakespeare is undoubtedly one of the best writers ever to have lived and the story of Hamlet is definitely one of his best achievements.<br /><br />But now on to the movie...<br /><br />I found that all the actors in the movie had a firm grasp of what they were saying and thus, were able to articulate it quite well. Leonardo in Romeo and Juliet is nothing compared to Kenneth Branagh and the King. The thing I liked about this was that it worked very well as a ""MOVIE"" and not as a play you are studying. You don't need to be affluent with Shakespeare to relate to all the Misery hamlet has to go through. I would recommend this movie to a wide audience.<br /><br />That's my two cents.",1 +17033,"If Ashanti had been a serious attempt at a film about the institution of slavery, still prevalent in third world countries the film might have been better received. Instead it turns into a star studded disaster of a movie where the stars came in, said their lines, and picked up their paychecks without much conviction.<br /><br />Michael Caine and his wife Beverly Johnson work for the United Nations World Health Organization and are busy doing their humanitarian thing in East Africa. Along comes Peter Ustinov who can barely summon enough ham in him to make a go of the part as a Moslem slave dealer. As Johnson is black he grabs her anyway along with a lot of children and a few adults as well.<br /><br />Of course Caine doesn't take kindly to the kidnapping and the rest of the film is spent in a rescue attempt. The rest of the cast has such folks as William Holden, Rex Harrison, Omar Sharif and Indian film star Kebir Bedi in parts and looking so incredibly bored with the whole thing.<br /><br />Usually in something like this talented people like those mentioned above will just overact outrageously and feast on a diet of scenery. But Ashanti doesn't even have that going for it.<br /><br />What an incredible waste of time. The aroma of tax write off is permeating the air.",0 +9275,"Terry Gilliam's fantastic, twisted story of a virus destroying all but a handful of people across the Earth and forcing them to move underground and the man sent back in time to gather information about it is a fantastic, dizzying, and highly stylized film that boasts Bruce Willis' best performance ever.<br /><br />What sets 12 Monkeys apart from most time-travel sci-fi movies is that Bruce Willis character actually deals with what the psychological effects of time-travel, that is, not knowing what reality is actual reality: the place that the time-traveler comes from or goes to. Also, the film recognizes that things that have past cannot be altered and that the prevention of a cataclysmic event, in this case the release of said virus, cannot be stopped or changed. As Willis asserts ""It's already happened,"" while he's in a mental hospital, the major dilemma the film trudges into is not a trite, overdone plot to save the world; instead it's Willis' inner struggle to simply survive himself. It's a fresh, innovative concept, and it works beautifully thanks to a tautly written script by Peoples and Gilliam's unique brand of dementia.<br /><br />Besides this, 12 Monkey's storytelling is totally non-linear and instead opts to distort and bend the way the story is told skillfully incorporating a bevy of different time sequences: flashbacks, dreams, memories, the present, the past, the future, and even a scene that is lifted out of Hitchcock's Vertigo. All serve to envelop the viewer into its disturbing cacophony of madness and futility.<br /><br />Visually, Gilliam is a master of desolate umbrage and shadow rivalling Tim Burton in his strikingly despondent scenery and imagery. With cold, wide, and immersing cinematography, Gilliam plunges into the colorless surroundings and darkness of his characters. The scenes are often bathed in a strangely antiseptic, dead white and help serve as a contrast to the often veering-on-madness characters.<br /><br />Performance-wise, Brad Pitt steals most scenes, filling them with a patented loony, off-the-wall performance that deservedly garnered him an Oscar nomination. As mentioned, Bruce Willis gives the best performance of his career, not reverting to his heroic cliches and cardboard hero and instead portraying Cole as a simple, poignant, tragic everyman. Equally good is Madeline Stowe as Willis' psychologist. She holds her own, injecting her character with both wild energy and strength as she collapses under the weight of what she comes to believe is a false 'religion.'<br /><br />Gilliam's expert, overwhelming, and complex handling of what could have been a routine action/sci-fi film makes 12 Monkeys a compelling vision of a nightmarish, futuristic landscape. Its rich, well-thought out, intricate storyline along with bravura performances from the entire cast and its brooding, bleak cinematography make it a masterpiece of madness. Ranking in my top 10 of all time, 12 Monkeys is a darkly lavish spectacle of a film brimming with brilliance.<br /><br />10 out of 10",1 +861,"""Radiofreccia"" is still a good surprise in Italian cinema. The film is based on a book of Italian songwriter Luciano Ligabue, who also directs the movie and writes the music score -of course.<br /><br />The film is a portrait of north Italian province life, in the Emilia Romagna region. We're in 1975, the time of the first free radios -one of the boys of the movie creates ""Radioraptus"". Youth wishes, friendship, love, sex, individual dramas and unemployment are among the themes, but the film speaks also about drugs -Freccia, the main character, is a victim of heroin slavery.<br /><br />Without being boring and moralist, the story flows very well; the spontaneity of actors is strong and the way of directing as well. Obviously Luciano ""Liga"" Ligabue is neither Fellini nor a movie professional, first of all he's a musician. But he succeeds in making a good product. Unfortunately he'll not repeat the success with his second movie ""Da zero a dieci"" -not good at all.<br /><br />In ""Radiofreccia"" actors are generally not very famous, the only star is Stefano Accorsi -one of the most popular young Italian actors. See in a small role another Italian songwriter -Francesco Guccini, he's the nice communist barman and football trainer!",1 +13404,"As a ""Jane Eyre"" fan I was excited when this movie came out. ""At last,"" I thought, ""someone will make this book into a movie following the story actually written by the author."" Wrong!!! If the casting director was intending to cast a ""Jane"" who was plain he certainly succeeded. However, surely he could have found one who could also act. Where was the tension between Jane and Rochester? Where was the spooky suspense of the novel when the laughter floated into the night seemingly from nowhere? Where was the sparkle of the child who flirted and danced like her mother? Finally, why was the plot changed at the end? One wonders whether the screenwriters had actually read the book. What a disappointment",0 +16575,"The first mistake you make in titling a film is to use ""of the living dead"" without really having a budget for real zombie FX. Sure, this was a low budget zombie flick - really low budget. I thought it was a film school project. Amateur actors and amateur effects.<br /><br />It was really not too bad considering the above, and it presented an interesting twist to the zombie genre. If you are going to get an ""R"" for violence, you might as well give us some good shots of the babes being attacked. The women were so little used in this film that it could almost be classified as ""gay interest.""<br /><br />And, I am staying out of Oakland. There was a heck of a lot of shooting going on and no cops in sight!",0 +1942,"Finally we get a TV series where we get to see the acting talent! Episode one was excellent! The script gave us a little more than usual, yeah, there was still the ""i'm not your father -i'm your father and omigod you cheated on me!"" rubbish but the script allowed the actors to actually feel and live those real moments rather than show us what it would feel like if -like so many TV soaps do. <br /><br />The camera work also gave us a little more than usual, there were no boring shots of repeated angles for hours yet there was no unnecessary 'shots inside shots or hand-held camera crap' to add an ""artistic"" edge it gave us what we needed to see and also some beautiful scenery pictures as well! <br /><br />Nothing was over-dramatised or melodramatic they were real people in a real place dealing with real situations, the show lacked nothing in drama and was completely relevant. It was SUCH a relief to be exposed to real acting and so nice to let our country see just how talented our actors can be when given a real script, a real opportunity! Thank you Tony Tilse, Sam Miller, channel ten and all cast and crew -wonderful work!! please continue what you are doing, your efforts are much appreciated and do not go unnoticed!",1 +10295,"Don't think of this movies as just another kids movie - the whole family can enjoy it. Its a strange mix of a movie, as its seems to have a movie within it, but at least it does make sense at the end (unlike modern films!) It does give you all the elements of a film (decent plot, good characters - well it does star the Muppets, a list of lesser celebs* which films would clamour for) What is surprising, is the fact that it can be a roller coaster of emotions, some sad, some heartwarming, some funny and some serious - it all makes an enjoyable family film that everyone can watch together.<br /><br />* The celebs in the film are actually top stars of the day but there is only one true star of the film and no one dare outshine Miss Piggy!!!!",1 +4331,"Walking with Cavemen, hosted by Alec Baldwin, is a look back at all the hominid (that's us!) species of the past 5 million years: who they were, what they were like, and how they died out. Along with being a very interesting scientific look at the information we have on these species, Walking with Cavemen also examines what it is that makes us human. I waited several weeks to watch this, and I was not disappointed.",1 +14119,"I can fondly remember Bo Derek's heyday and the UK press attention (the mucky Sun & News of the World papers especially)- all following her small role in ""10"" with Dudley Moore. Understandably, much fuss was made of her photogenic face, crystal clear blue eyes and her perfectly formed bouncing breasts. <br /><br />Unfortunately, acting is, and never was, her forte! I think they should make one of the triple disc collections you always find in the bargain DVD bins- Orca, Tarzan the Ape-man and Bolero. All these films could be nominated for the ""So Bad They Are Great"".<br /><br />It would be a guilty ""must buy"" of mine! Should you ever read your press, or this comment Ms Derek, please do not be offended- ALways had a soft spot for you and there are more important things going on in the world to worry about than your acting ability. Much Love.x",0 +3970,"""The Man In The Moon"" is a pretty good movie. It is very touching at times and is very well done in all respects. I wouldn't say the film was terribly original, but what is these days?<br /><br />The cast members all did a great job with their respective roles. I really enjoyed seeing Reese Witherspoon at such a young age, and does quite a good job. Jason London does a fine job as well. And the only other person I recognized was Sam Waterston, who did a fantastic job with his role. I really liked Sam's character (Matthew Trant) a lot. At times he seemed to be the kind of father you dread, but in the end you really like his character. The rest of the cast was very good as well.<br /><br />If you're into touching movies about growing up and dealing with what life throws at you, then you ought to watch this film. I'd suggest reading the plot synopsis and if that sounds like something you'd be interested in, then go for it. Anyhow, hope you enjoy the film, thanks for reading,<br /><br />-Chris",1 +21686,"Totally forgettable. Specially because of the weak acting. This is the first movie I've seen with Dax Shepard. To my surprise, he's been around since the late 90's. I thought he was a newcomer, since his acting was so bland. I could say the same about Liv Tyler. Although I've seen her do well in other movies, she gave Clare Cooper a strange personality. Liv is not the kind of actress that will give the character a fiery, emotional personality like Diane Keaton would be able to, but it was pretty strange to see her say her lines in whisper mode. It seemed that altogether there simply wasn't a very good chemistry going on between the actors, and I think Diane Keaton sensed that as well. She's a fantastic actress, but seemed just a bit over the top in this movie. It felt like she just wanted to get this movie over as soon as possible. I wouldn't blame her.",0 +22384,"Bridges of madison county is a better made version of this story. I felt the ending of this movie was not handled sensitively as they did in the original English movie. This movie is very indianised, if you are a very sensitive person who cries in a movie when hero dies in the end you'll love this movie, On the other hand if you are a fighter in life and think crying is for wimps you may not like the ending.But on the whole it's pretty good subject is well handled for indian conditions. Tabu was good as a caring wife and mother. Everybody acted well.",0 +12851,"To be honest at the time i first heard of this show i though it may be a bad idea to make a show that makes Muslims use racial jokes on themselves but it is the Exact opposite. I realized that the show doing that can help people understand that if a Muslim uses s a word like this in real life it doesn't mean it is a terrorist thing. It also show's how people give the Muslims a bad name because they play on their stereotype, by watching the show regular people will realize that all though there may be bad Muslims out it doesn't mean we are all bad we just try to live 1 day at a time, like how hard it was for Amair to get on a plane and how he used words like ""Blow up"" or Yaser saying we'll blow away the competition, and people took it the wrong way. Being a Muslim i know that stuff like this don't usually happen, but they do and many people think bad things about Muslims or Afghanistan or Iraq, its not right things are not like that. people will see how we are poorly treated by watching this show and it may make them think on how the act. I am glad a show like this came on the air. There are many shows that Piotr Muslim people as terrorists,many people do find them funny to my opioion it is OK to do it now and then because prety much everything is made fun of who are we to say you can not make fun of that is unfair, but it is done to often and really gives Muslin people a bad name.",0 +13193,"In an otherwise good review, loleralacartelort7890 says ""The truth is that the Americans use a secret aluminum-anti-radiation-alloy. It is not that well-known. And the exact specifications are a secret. And why is it a secret: Well, why should they reveal it back then?? If they where in a space race with the Russians, then it would be VERY dumb to reveal that they had new technology that could shield crew against radiation."" This is completely incorrect. There is (and was) no ""secret"" to radiation protection in Apollo. The design and construction of the Apollo Command Module has long been publicly available. It uses a lightweight ""honeycomb"" of aluminum and stainless steel. The entire outer surface (except the windows of course) is covered with a heat shield made of a phenolic resin, thicker on the bottom that faces forward during re-entry. These materials are actually *better* at stopping the kind of radiation we have in space (charged particles) than lead, which is better suited to stopping ionizing photons like X-rays and gamma rays.<br /><br />Space radiation is a definite problem for *long term* space flight because of the risk of big solar flares. But it simply wasn't a serious threat to the Apollo astronauts. The Command Module gave them pretty good protection during their brief (1/2 hour or so) passage through the Van Allen belts. They all carried dosimeters so we know exactly how much radiation they each received: no more than 1.5 rem, and usually much less. Of the 24 men who flew to the Moon (12 of whom landed), 18 are still alive. Only two have died from cancer: Alan Shepard (leukemia) and Jack Swigert (bone cancer). The rest died from heart attacks, pancreatitis (Roosa), and a motorcycle accident (Conrad). These are actually pretty good statistics for a group of men now in their late 70s (Shepard would be 86).",0 +2775,"I always feel strange and guilty saying it (because I'm a fairly well-educated non-teenager), but I actually sort of like the Olsen twins, and I respect the movies they make, even though I've never really been their target audience. ""When in Rome"" was a traditional Mary-Kate and Ashley movie, complete with the foreign travel, accents, motorbikes, adult romance as a ""B"" storyline, fashion orientation, and even the gag reel over the credits. I enjoyed myself. ""When in Rome"" and the other Olsen twin movies never pretend to be anything they're not; most of the time, they only premiere on video, and they never claim to be the next ""Citizen Kane"" or even ""An Affair to Remember."" My point is, people who watch this movie and expect it to be anything other than another Olsen twin movie will be disappointed.<br /><br />That said, those who ARE fans of the Olsen twins will really enjoy themselves. For those of us who've watched them since the first episodes of ""Full House,"" it's really great to see them growing into more mature roles. This movie provides important historical and geographical information, just like many of their other movies (remember 10 Downing Street from ""Winning London"" and the visit to the Louvre from ""Passport to Paris""?) as well as providing good, clean fun that can be enjoyed by the whole family.<br /><br />As long as I still feel like I'm on my soapbox, and as long as I can make it relevant to the movie, let me take a moment to challenge those who reject the Olsen twins: in order to be a fan of the Olsen twins, you don't have to be some pre-teen ""valley girl"" from California. In fact, that's not really the target audience. If it were, the MK&A fashion line of clothes and accessories would be run through Gap or some store like that, not Wal-Mart. ""When in Rome,"" while it does feature ""high fashion"" and globe-trotting and two girls from a valley in Cali, isn't really ABOUT that... it's more about inspiring young girls who have initiative to let it take them places. If that means setting the movie in some glamorous foreign city with cute guys on motorbikes, so be it. That's called marketing--you take an idea and sell it by making it appealing. At least they're sending a good message, even if the means seem a little superficial. <br /><br />Basically, don't knock the film until you've seen it, and then don't knock it until you've tried to understand what the Olsen twins do: they encourage young girls to be creative, intuitive, and driven young women. This movie does that, I think, just like their others. Kids - enjoy. Parents - do the same. If you like the Olsen twins, you won't be disappointed.",1 +4145,"I admit I've only seen about three of Shakespeare's plays (Romeo & Juliet, Macbeth, & of course Hamlet) one I liked, the other I found so-so (Macbeth), and Hamlet I just found a masterpiece. I'm pleased to tell you that this adaptation is every bit as good as the intense and dramatic play. The acting is extremely strong (With a cast that features Kenneth Branagh, Robin Williams, and Billy Crystal how can you lose?) and the change in time period (Looks like somewhere between the 17 and 1800's) plays off beautifully as the characters move about and say their infamous lines straight from the script itself that any fan of the Shakespearean play will get chills from. If you're into this popular drama I highly urge you to watch this powerful 1996 adaptation from Shakespearean admirer Kenneth Branagh.",1 +22777,"This is really a new low in entertainment. Even though there are a lot worse movies out.<br /><br />In the Gangster / Drug scene genre it is hard to have a convincing storyline (this movies does not, i mean Sebastians motives for example couldn't be more far fetched and worn out cliché.) Then you would also need a setting of character relationships that is believable (this movie does not.) <br /><br />Sure Tristan is drawn away from his family but why was that again? what's the deal with his father again that he has to ask permission to go out at his age? interesting picture though to ask about the lack and need of rebellious behavior of kids in upper class family. But this movie does not go in this direction. Even though there would be the potential judging by the random Backflashes. Wasn't he already down and out, why does he do it again? <br /><br />So there are some interesting questions brought up here for a solid socially critic drama (but then again, this movie is just not, because of focusing on ""cool"" production techniques and special effects an not giving the characters a moment to reflect and most of all forcing the story along the path where they want it to be and not paying attention to let the story breath and naturally evolve.) <br /><br />It wants to be a drama to not glorify abuse of substances and violence (would be political incorrect these days, wouldn't it?) but on the other hand it is nothing more then a cheap action movie (like there are so so many out there) with an average set of actors and a Vinnie Jones who is managing to not totally ruin what's left of his reputation by doing what he always does.<br /><br />So all in all i .. just ... can't recommend it.<br /><br />1 for Vinnie and 2 for the editing.",0 +19001,"I don't know anything of the writer's or the director's earlier work so I hadn't brought any prejudices to the film. Based on the brief description of the plot in TV Guide I thought it might be interesting.<br /><br />But implausibility was piled upon implausibility. Each turn of the plot seemed to be an excuse to drag in more bloodshed, gruesome makeup, or special effects.<br /><br />The score was professional and Kari Wuhrer seems like a decent actress but the rest was more than disappointing. It was positively repulsive.<br /><br />I will not go through the vagaries of the narrative but I'll give an example of what I think of as an excess of explicit gore.<br /><br />Chris McKenna goes to an isolated ranch house and pulls the frozen body of his earlier victim (Wendt) out of the deep freeze. McKenna had killed Wendt by biting a chunk out of his neck. Now he feels he must destroy the evidence of his involvement in Wendt's demise. (What are the cops going to do, measure his bite radius?) McKenna unwraps Wendt's head and neck from the freezer bag it's in, takes an ax, and begins to chop off Wendt's head. Whack. Whack. Whack. The bit of the ax keeps chipping away at Wendt's neck. The air is filled with nuggets of flying frozen flesh, one of which drops on McKenna's head. (He brushes it off when he's done.) McKenna then takes the frozen head outside to a small fire he's built. He sits the head on the ground, squats next to it, takes out some photos of a woman he's just killed, and shows them to Wendt's head. ""Remember her? We could have really made it if it hadn't been for you guys,"" he tells the head. ""Duke, you've always liked bonfires, haven't you?"" he asks. Then he places the head on the fire. We only get a glimpse of it burning but we can hear the fat sizzling in the flame.<br /><br />I don't want this sort of garbage to be censored. I'm only wondering who enjoys seeing this stuff.<br /><br />There's no reason to go on with the rest of the movie. Well, I'll mention one example of an ""implausibility,"" since I brought the idea up. McKenna has been kidnapped and locked in a dark bare shack. He knows he's going to be clobbered half to death in the following days. (He's literally invited the heavies to do it.) What would you do in this Poe-like situation? Here's what McKenna does on what may turn out to be the last night of his life. He finds a discarded calendar with a pin-up girl on it and masturbates (successfully). Give that man the Medal of Freedom! <br /><br />A monster who looks like Pizza the Hut is thrown into some unnecessary flashbacks. The camera is often hand held and wobbly. The dialog has lines like, ""Life is a piece of s***. Or else it's the best of all possible worlds. It depends on your point of view."" Use is made of a wide angle lens that turns ordinary faces into gargoyle masks. A house blows up in an explosive fireball at the end while the hero, McKenna, walks towards us in the foreground.<br /><br />Some hero he is, too. He first kills a man for $13,000 by bashing him over the head several times with a heavy statue, then a potted plant, before finally tipping a refrigerator over onto the body. (This bothers him a little, but not enough to keep him from insisting on payment.) Then, I hope I have the order straight, he kills Wendt by ripping out part of his neck. Then he kills the wife of his first victim by accident and blames the heavies for it, although by almost any moral calculus they had nothing to do with it. Next he burns the head honcho (Baldwin) alive. Then, having disabled the two lesser heavies, he deliberately blows them up, though one of them isn't entirely unsympathetic. And we're supposed to be rooting for McKenna.<br /><br />These aren't cartoon deaths like those in the Dirty Harry movies either -- bang bang and you're dead. These are slow and painful. The first one -- the murder for $13,000 -- is done clumsily enough to resemble what might happen in real life. It isn't really easy to kill another human being, as Hitchcock had demonstrated in Torn Curtain. But that scene leads to no place of any importance.<br /><br />Some people might enjoy this, especially those young enough to think that pain and death are things that happen only in movies. Some meretricious stuff on screen here.",0 +2411,"Romantic comedies can really go either way, you know? You'll see one that's really sappy, and you'll think you want something more realistic. Then, you'll see one that's realistic, but it might be too dull to keep you interested. Or maybe you'll see one that does everything right, but just fails to make you smile. Romantic comedies are tough movies. You go into them with a lot of expectations, and usually, whether you like it is simply a matter of whether the filmmakes was anticipating your expectations or those of the guy or girl next to you.<br /><br />Of course, if you've got a girl next to you, and you're a guy like me, it probably doesn't matter all that much whether the movie's any good, you've got other things on your mind. For you, I say, ""Go get her, Tiger!"" For the rest of us, I say, ""See _A Guy Thing_."" It's a lot of fun.<br /><br />Because _A Guy Thing_ knows you're going in to this movie with expectations, so it doesn't pretend that its ""Guy about to get married meets the woman of his dreams, and it's not his wife!"" plot is going to make everyone happy. Sure, maybe you like it, but maybe it doesn't ring true, or you think it's cruel. _A Guy Thing_ covers that. What _A Guy Thing_ does is fill the screen with the best supporting cast I've seen in a long time, so if you don't the main plotline, you've still got something to make you smile.<br /><br />Whether we're talking about the seasoned veterans of big and small screen, like Larry Miller (Pretty Woman, Best in Show), James Brolin (Traffic), Julie Hagerty (Airplane!), David Koechner (Saturday Night Live and Conan O'Brien regular, Dirty Work, Austin Powers II) or Thomas Lennon (The State and Viva Variety), or new faces like Shawn Hatosy (The Faculty), or Colin Foo (Saving Silverman), we're talking about a bunch of very talented and skilled actors who know exactly how to take advantage of the film's inspired characterisation, steal the show, time after time, and still frame the piece with an energy and a joy rarely seen in romantic comedies these days.<br /><br />And that's not to detract from the actual romantic throughline and the stars that carry it along, because it's very sweet and terribly well done. Jason Lee (Mallrats, Chasing Amy, Dogma, etc.) is touching as the young professional whose life may be spinning out of control, and Selma Blair shows an understated brilliance in portraying the aspiring socialite and sophisticated career woman every guy wants to marry except for the guy who actually is.<br /><br />A lot of the success of the movie, though, falls on Julia Stiles, the right girl in the right place at the wrong time, and she wears it well. Not since, gosh, I don't know when, have I seen an actress in a romantic comedy that has made falling in love with her so easy. Of course, it's all in the closeups, the voice, and the subtle smiles, but it's magical, and it's one of the big reasons why we go to the movies in the first place.<br /><br />But Julie Stiles's slightly offbeat sophistication would be lost were it not for the fact that the rest of the cast is so incredibly dead-on in their classic simplicity. This is a movie that paints a broken world of irreconcilable stock types, makes them fall over each other to make you laugh, and then comes through with a great deal of heart.<br /><br />A Guy Thing is a movie you've definitely seen before, and the filmmakers clearly knew that when they set down to make it. We haven't really seen any new romantic comedies since Shakespeare; the relative success of this one or that one is entirely dependent upon the execution of the classic story of boy meets girl. A Guy Thing does embrace that with a bit of a metacinematic edge, often taking the scenes into the absurd in order to give the audience a chance to acknowledge the powerful emotions and ancient plot devices at play.<br /><br />For the record, it also even manages to poke fun at the rather traditional structural notions of sex and gender that form the center of every romantic comedy, so even the feminists out there might get a kick out of it.<br /><br />And guys, I think we can all agree that we wish our friends are as cool as Jason Lee's friends in this movie. I'm not going to spoil it for you, but when you try to explain to your girlfriend why the pharmacist and the clothing store clerk are among the coolest dudes in cinema, I suggest you just say ""It's a Guy Thing,"" and leave it at that.",1 +17478,"I just finished watching guinea pig - Devils experiment. I have to say that this movie, although having very good FX, better then I expected, was NOT a good movie. I honestly cant say that I enjoyed this movie at all. Of course It is effective in its way of being a shocking, realistic, twisted 43 minutes of torture, but I found it to be very boring (and not as gory as i hoped). And also I found that the torturers were very annoying, when they talked and loughed trying to sound tough all the time, that ruined it even more (and Im sure there's some people out there who will agree with me on that one). I have now seen guinea pig 1,2,3,5 and the best one out of those in my opinion is guinea pig 2 - Flowers of the flesh and blood. I wont say much more about Devils experiment, other than Great fx, descent acting from the girl, annoying fu**ing torturers, overall I give it 4 stars on account of the FX cos they are awesome.",0 +15457,"This movie was great the first time I saw it, when it was called ""Lost in Translation."" But somehow Bill Murray turned into an eccentric black man played by Morgan Freeman, Scarlett Johansson turned into a cranky Latino woman played by Paz Vega, and Tokyo, Japan turned into Carson, California. Instead of meaningful conversations and silence we enjoyed in Translation, we get meaningless blabbering in 10 Items that verges on annoying. Instead of characters that were pensive and introspective as in Translation, we get characters that spew pointless advice on topics they have no clue about. How can a character that wears hundred dollar T-shirts and has never been inside a Target department store expect to give advice to a working-class woman on how to prepare for a job interview as an administrative assistant? Don't think that stops him. If he isn't giving her clothing advice, he's telling her what she should eat. The most annoying part of the movie for me was how supposedly they were in a hurry to make an appointment, and yet the characters keep finding time to run another errand, be it washing the car, stopping at Arby's, or just laying around to list off their 10 Items or Less lists of things they love and hate. I kept wanting to yell at them saying, ""Didn't you say you had somewhere to be? What the heck are doing? A minute ago you were practically late, now you're eating roast beef and pondering your lives!"" Until I saw this movie, I never truly understood how something could ""insist upon itself,"" but I think this movie does exactly that, and undeservedly so. The dialogue makes the characters cheesy and unsympathetic with the exception that I felt sorry for both of the actors for having signed onto this project.",0 +1546,"Paris is the place to be to enjoy beautiful art and music, and to fall madly in love - as is the case in this film. Boy meets girl, they fall in love, but something stands in their way of eternal happiness, the classic story.<br /><br />The wonderful music of George Gerschwin complements the great dancing by Gene Kelly and Leslie Caron. ""An American in Paris"" is a humorous, light-hearted, loving film well worth watching.<br /><br />8/10<br /><br />",1 +6953,"Barbra Streisand's debut television special is still a pinnacle moment in entertainment history - in any media. Cleverly divided into three separate acts (to minimize the interruption of commercial breaks), Streisand made the bold-yet-masterful decision to drop the typical variety show format of the time (which is why there is no guest stars nor forced banter) and carry the entire show on her shoulders alone. The risky move paid off enormously, as MY NAME IS BARBRA set a new standard for musical programming on television.<br /><br />Filmed in glorious black-and-white (which actually adds to the effectiveness of the show), MY NAME IS BARBRA is flawlessly-conceived and impressively shot. However, what makes the show truly transcendent is Streisand herself. Watching the then-23 year old performer navigate herself through the show's 55 minute runtime is nothing less than thrilling. She is in fantastic voice (and even performs the entire first and third acts live), and gives first evidence of the immense star power that would soon follow her to the big screen.<br /><br />The special's biggest asset is it's boldness in allowing Streisand to simply stand on stage and sing some great songs. After the powerful opening performance of ""Much More"" (with a brief opening snippet from Leonard Bernstein's ""My Name Is Barbara""), Barbra proceeds to wander through a multi-level studio set performing a frantic version of the Disney classic ""I'm Late."" In between verses of ""I'm Late,"" Streisand stops at various levels of the set to sing some terrific numbers such as the haunting ""Make Believe"" and the thundering ""How Does the Wine Taste?"" Halfway through the Act I, Barbra re-enters her own childhood to the strains of ""A Kid Again,"" and then gives highly energetic performances of ""I'm Five"" and ""Sweet Zoo"" while romping among an over-sized set. The illusion is eventually shattered, however, as Streisand finds herself out of the fantasy and back in the real world. She then sings about this lost childhood innocence in the lovely ""Where Is the Wonder?"" Streisand then dashes out onto a platform stage surrounded by an entire room-full of musicians and performs a rousing rendition of ""People"" before the thunderous applause of a live studio audience.<br /><br />Act II of the special begins with Streisand hamming it up for the studio audience with a campy rendition of ""I've Got the Blues,"" before delivering a comedy monologue about ""Pearl from Istanbul."" Streisand then heads off to Bergdorf Goodman's department store, which allows her to sing a medley of poverty songs while parading around in some of the store's elegant fashions. This segment is the brightest highlight of the special for many fans and critics. Some high points of the Act II medley include Streisand singing a restrained version of ""Second Hand Rose"" to the audience, appearing as a Latin bullfighter to the tune of ""Nobody Knows You When You're Down and Out,"" and portraying a frustrated paperboy while mugging to ""Brother, Can You Spare a Dime."" The third Act of the special is a straight concert, with no set pieces or concepts. Streisand is a performer who really thrives on the concert stage, and this segment is the most thrilling moment of the special. Streisand enters belting out an almost gravity-defying rendition of ""When the Sun Comes Out,"" and continues to amaze the viewer with a lovely version of THE YEARLING ballad ""Why Did I Choose You,"" a scorching performance of ""Lover Come Back to Me,"" and an impassioned medley of three songs form FUNNY GIRL. Streisand really outdoes herself, however, with a phenomenal rendition of the Fanny Brice/Billie Holiday standard ""My Man,"" which instantly became on of the singer's best-loved signature songs.<br /><br />Streisand performs her immortal ballad version of ""Happy Days Are Here Again"" as the closing credits roll by on the left-hand side of the screen. The iconic finish to the number reaffirms to the viewer that he or she has indeed seen something truly special. MY NAME IS BARBRA was a huge rating triumph when first aired, and it eventually picked up five Emmy awards in addition to spawning two Top-Five, Gold-selling soundtrack albums. Watching it all again, it's absolutely no surprise.",1 +3135,"When reading a review from another user, saying that it's a terrible game, I could not stand idle and do nothing!<br /><br />Well, this game is great, from the news clips (with two real persons, full of humour sense and credibility!), to the story, I find it very good! I only complain about the enemies start blinking when they die, until they disappear; and some frustrating situations on the LEILA VR missions, when riding the bike, here and there...<br /><br />Except that, it's a great game, with a great story, good graphics, excellent characters, great soundtrack... I recommend it! Surely! It can be a bit old, but still enjoyable! At least, on the Dreamcast... but the PS2 version shall be the same.",1 +13232,"Based upon the recommendation of a friend, my wife and I invited another couple to this film. I really apologized to them--all 4 of us hated it and spent the whole time looking at our watches waiting for the film to finally end. Half the vignettes are bizarre, with very little entertainment value. There were few scenes of Paris--for example, I was looking forward to seeing some pictures of the Latin Quarter, but I couldn't really recognize anything. Most of the scene was inside a bar. No one in the theater laughed at anything, or reacted in any way. If you like bizarre, pretentious, pseudo-intellectual films, don't miss this. If you are down to earth like me, you will be sorry you saw it.",0 +15627,"The movie uses a cutting edge title for a lame story. Kill Kill, would have been nice. The movie incorporates taboo scenes to make the viewer move back in their chairs. The scenes are unnecessary and choppy. The movie is something a novice screen writer could have conjured. Just a waste of movie props and network money. I have to write 10 lines of text to critique this film when it is not worth 10 lines of my time, but I have to push on to let the people know to avoid the nonsense. If people are counting on you to choose a good movie for movie night, pick something else. If you have a soul don't damage it by subjecting yourself to this filth.",0 +24023,"This is not an all-around terrible comedy, but it is very DULL. It has barely any laughs, and it wastes its lavish production values. There is one poignant moment near the end, when Fu Manchu offers a dose of his elixir to his ""nemesis"" and tells him that ""You've been my one worthy adversary; and now we can start all over again"". That scene, however, along with Burt Kwouk's amusing cameo in the beginning, are the only memorable parts of the movie. (*1/2)",0 +14715,"I was so excited and hyped up about watching this film when the promos first came out in November! It looked awesome and the songs! I was quite disappointed when I went to watch it! This is a film which weaves 6 couples together. It has a multi cast of 12 people! A huge amount of stars have worked on this film. I think the director, Nikhil Advani, has not managed the situation well and should not have had many people in this movie as this would of made it easier for him. Compared to Nikhil's directorial Debut 'Kal Ho Naa Ho' , 'Salaam-e-Ishq' falls quite behind. I think Nikhil should have a smaller star cast. I think the best factors of this film is the songs! The songs are excellent and I think that all of the songs are awesome, Shankar-Ehsaan-Loy done an excellent job and have done an excellent jobs over the years. I think the ratings of this movie may go up because of the excellent songs! One thing I was disappointed with, is that the director should not have included nudity in this film which is done by Sohail Khan and Isha Koppikar. I found this extremely rude watching this with family! Although, some may find this nude as comedy, it is not something you would want to watch with parents! I think the best acting was performed by Salman and Priyanka Overall, I think its an alright movie!",0 +3805,"This is full of major spoilers, so beware.<br /><br />""Prix de Beaute"" always suffers in comparison to the two films Louise Brooks made with G. W. Pabst, ""Pandora's Box"" and ""Diary of a Lost Girl,"" but in some ways, ""Prix"" is the quintessential Brooks film. Here she has a chance to be charming without the dark side of her Pabst collaboration. What ""Prix"" has that the Pabst films don't is music. In this early French film, the whole Louise Brooks mystique is fleshed out powerfully with a conjunction of image, song and music. The Charleston is what seems most associated with Brooks (she was the first to dance it in Europe), but the essence of the actress comes across more strongly in the tango. The tango also plays a plot point in ""Prix,"" being the music she danced with on her short rise to stardom after becoming Miss Europe. Later, when she has forsaken her fame in favor of a mundane existence as the wife of jealous husband Andre, the longing for her forsaken fame becomes apparent when the same tango record is seen on her apartment record player. So appropriate is the tango to Brooks it is used to accompany the documentary about her life, ""Looking for Lulu,"" a film narrated by Shirley Maclaine. The brazen and forceful quality of the tango epitomizes Louise Brooks' strong-headed but elegant and erotic individuality. <br /><br />The song, ""Je n'ai qu'un amour, c'est toi,"" adds an immense amount of pathos to what is not a great film (but a very good one). By the way, Brooks' voice was not dubbed for the film by Edith Piaf as some have claimed. Piaf was born in 1915, and wasn't discovered until 1935. The song, however, is what Brooks' character, Lucienne, sings to Andre at the beginning of the film to cheer him up and express her deep affection for him. And at the climax it is the song she sings for her screen test, which she views with the producers and managers who intend to shape her career. It continues on screen after husband Andre, who has followed her to the screening room, shoots and kills her. In a single shot, with Lucinenne's dead body in repose at the bottom of the screen while her screen test continues above with the song she once sang to Andre, the essence of what movies do that other art forms do not is perfectly characterized. As Andre watches his now dead wife sing to him on screen, the murder weapon still smoking, he subtly smiles. She is now his forever, and by association, ours. <br /><br />Coincidentally, Louise Brooks real life career crashed and burned after ""Prix de Beaute,"" so it was also the death of her final starring roll as well. This film really seals the Brooks mystique more so than the Pabst films (which are superior films, no doubt). It also points out what it is about the movies that create the whole idea of the ""cult"" of the movies - where people like Brooks, James Dean and Marilyn Monroe live on more intensely after their death than when they were alive.",1 +23371,"As I said, the book was pretty good and this might have been a good movie if Melissa Gilbert hadn't been so horrible and unbelievable in the lead roll. What kind of accent was that suppose to be anyway? It sounded the same as her horrible Russian accent in another movie that I have seen her in. Every time she opened her mouth I cringed. It took 3 tries before I was able to watch the entire movie. Brad Johnson was good as the other lead. <br /><br />I really liked the beach location scenes. They added some much needed brightness to take your mind off of Melissa Gilberts depressing portrayal. I think they could have used San Francisco views more to their advantage though. It looked like the night scenes were actually SF, but I could be wrong. I don't recall the character in the book being this depressing. <br /><br />Please keep Melissa Gilbert out of any future movies that require an accent!",0 +20372,"From the pen of Richard Condon (The Manchurian Candidate 1962) comes this muddled tale of political intrigue and assassination. The story, told in almost comic book fashion is difficult to swallow. All-star cast considered, this poor effort is not entirely the fault of the cast and crew: the novel was replete with the same short-comings. It seems as though at times the story is actually mocking the more sincere effort put forth in ""Manchurian Candidate."" A disappointment on all counts.",0 +15160,"When i got this movie free from my job, along with three other similar movies.. I watched then with very low expectations. Now this movie isn't bad per se. You get what you pay for. It is a tale of love, betrayal, lies, sex, scandal, everything you want in a movie. Definitely not a Hollywood blockbuster, but for cheap thrills it is not that bad. I would probably never watch this movie again. In a nutshell this is the kind of movie that you would see either very late at night on a local television station that is just wanting to take up some time, or you would see it on a Sunday afternoon on a local television station that is trying to take up some time. Despite the bad acting, cliché lines, and sub par camera work. I didn't have the desire to turn off the movie and pretend like it never popped into my DVD player. The story has been done many times in many movies. This one is no different, no better, no worse. <br /><br />Just your average movie.",0 +6774,"This was fun to watch, spookily atmospheric and effects were pretty good considering they were bang in the middle of World War Two. The plot did unravel pretty quickly at the end with the villains getting their comeuppance.<br /><br />It must have been a good one to watch at the local flea pit in the 1940's when they were facing the biggest threat to their liberty from the Nazis - well made with quite a serious message about the dangers to Britain from third columnists.<br /><br />But Arthur Askey was so annoying & unfunny you just wanted him to shut up - well at least I did ! I suppose different tastes in different times but the clowning around became tiresome. If he was playing an annoying little man as part of the script then he succeeded.<br /><br />A good watch and quite short at just over 80 minutes - a good background for older kids too so they have an idea of what train travel in austere times was like; uncomfortable slow, dirty trains, being thrown off for no reason, surly staff ....",1 +19678,First let me be honest. I did not watch all this movie. I watched the first five minutes and when i realized that I had nearly fallen to sleep i decided that I may as well fast forward and see if it got any more interesting later on... It didn't. This film is just a collection of lame attempts to make a story which is already uninteresting and badly told into something that it would never become: a decent horror movie. Because I feel it is important to say that even a movie with poor special effects can still be good if it is well made. This film isn't and will only put you into a deep sleep if you attempt to watch it. Lastly I feel it is important to say that I think this movie is in the publicdomain so if you feel that you must absolutely watch it than a littlesearch on the internet will surely show you a place where you won't need to pay to watch this pile of cinematographic dung.,0 +14062,"But I got over it. To me, it seemed that even the Author of the book favored Caroline. I felt so sorry for the character Louise, and she was constantly compared with Esau who was evil, I just felt the comparison was a bit harsh and un-realistic. Really though, the movie was bad. I wouldn't really see it unless you're ready for a big let down.",0 +16848,"Distasteful, cliched thriller has young couple doing cross-country research on America's most infamous murder sites, becoming road partners with a dim-witted young woman and her snarling boyfriend--who is an actual psycho. Arty and alienating, the film's tone alternates between pouty pseudo-irony and silly flamboyance. Handsomely-made perhaps, but ultimately laughable. Brad Pitt's performance as the low-rent killer is godawful. * from ****",0 +17641,"By the time this film was released I had seen Chorus Line on stage 4 times, and had been anticipating most eagerly the long-rumored production of a film of the story. My wife and I were in line hours before the box office opened on the day the film was released. It was not just a disappointment, it was a kick in the abdomen. <br /><br />First, the story was ""moved outside,"" so to speak, by including scenes not in the confines of the theater. Those confines are a large portion of the meaning and impact of the story. <br /><br />Second & Third together (assign your own order): one of the original songs, with very dynamic dance number, was removed; a song which was NOT in the stage production was added. Say what ?? I'm confused! <br /><br />The only reason I gave this film 2 stars instead of 1 is my admiration for the talent and hard work of the performers. I've now seen Chorus Line on stage 6 times, and wouldn't mind seeing it 6 more times before I die. It is superbly written, with wonderful music, and heart- wrenchingly true stories. If you want to see a musical which includes a great ""cattle call"" audition, I recommend All That Jazz. If you want to see the story of A Chorus Line, see it on stage.",0 +10020,"I think that the idea of the plot is perfect for exploring first of all the emotional experiences of the people involved and second, as someone else wrote in a comment, the implications of this kind of relationships (incest and lesbianism) in the romanian society.<br /><br />so... to begin with the second aspect... to make it short, it wasn't visible at all...<br /><br />as for the first.. as i said, it had much more potential... i think that those kind of relationships carry much more tension... much more tension... and the potential tension didn't get through...<br /><br />i think the soundtrack could've been more than those few songs on the background and the theme (wich was nice but not enough and not always in the right moments)... yeah... i could feel the absence of a better soundtrack..<br /><br />the actors... i think that they were somewhere from 7 to 8/10... not enough sensuality in the key moments...<br /><br />a total of 7/10.... mostly for the story",1 +18643,"> What a dud. It began with some promise, then became unfocused and > wandered. John Cusack's Cajun accent was laughable, Bridget Fonda's role > existed only to get a skirt into the film, and Pacino did Pacino. His entire > generation of actors -- Nicholson, Hackman, Caine, Hoffman -- have developed > a standard performance that each can deliver effortlessly (or, less > charitably, ""mail in"") in their paycheck films. This was > one. >",0 +3327,"How truly friendly, charming and cordial is this unpretentious old serial; I rejoiced in seeing old Lugosi. It is disarmingly friendly and lively. It's the document of a longlost craft. (The best TV series today can hardly compete with these old moderately good serials.) CHANDU is deeply, deeply optimistic and hedonistic . It refreshes the mind. It's not stupid; stupid are those who do not get the terms on which such serials work. CHANDU has an irresistible sense of simple, unpretentious and friendly fun.<br /><br />Without giving away too muchChandu is an Occidental sorcerer who goes also by this Eastern name and who also loves and protects his niece against a sect of killers.<br /><br />Chandu exerts his supernatural gifts in a rather discreet and moderate way.<br /><br />As to the quite sexy niece, Nadji, she is kidnapped by the priest of Ubasti: the sordid Vindhyan. The poor sexy girl is in fact multiply kidnappedin a sarcophagus after being sent asleep with a flower; almost kidnapped from a boat; by a phony policeman; the temple of Lemuria and its strange, creepy ceremonies resemble the KING KONG imageryand are a barbaric mockery of the RCC ceremonies and rituals. <br /><br />Would you protect a girl as bravely as Chandu does?<br /><br />Lugosi looked like an old libidinous and quite heartless, mean drunk, and this only contributed to his performances. He is the prototypical mean drunk uncle, mischievous and cunning and oblique. This might sound like a rather crooked homage to Lugosiyet Burton's biopic of Wood left me this impression about Lugosi and allied to it a strong sympathy for the decrepit actor. I enjoy Lugosi' fancy performances.<br /><br />This serial is unjustly bashed.",1 +7382,"I remember watching this film, thinking was so interesting. I really wanted to know what happens next. I was amazed by how much they could fit into an 8 minute short. We start in a school yard. . Two friends are debating on skipping class. Kid B says to Kid A ""Lets not go to class today."" And Kid A declines, claiming they could miss something really important. So kid B skips and kid A goes to class. When he gets there the teacher informs him that today they were going to learn the only and most important lesson they will ever learn. They were going to learn the meaning of life. She gives everyone a pamphlet, and when she gets to kid A, she runs out and tells the boy next to him to share. Well, the kid won't share, so Kid A goes looking for the teacher. When he finally finds her, he gets a shocking revelation on what the real meaning of life is. I suggest everyone watch this short. It will only take 8 minutes from your life, but the message is so important, it could help you for a life time.",1 +1262,"""Midnight Cowboy"" is one of those films thats been proclaimed a masterpiece with good reason - it really is one of the finest films ever made in America. Its both artistically valid yet entirely accessible and commercial. No wonder it was a huge success when initially released. But be warned, its also one of the most heartbreaking films ever made. The characters are memorable, well-developed, and ultimately tragic. The filmmakers should be applauded for not giving us the Hollywood ending, something which was basically mandatory by the 80s. Still, this is why I treasure the years of 1967 to 1977 for American film. Its a time when well-made, innovative, and most of all bleak films could be made with the big budgets that Hollywood could offer. All this was over by the time ""Star Wars"" was released.<br /><br />The direction by John Schlesinger makes the material work. It combines a simplistic style with some experimental editing. Unlike many other films featuring these psychedelic effects, ""Midnight Cowboy"" has aged quite well. Its still as powerful now as it was when initially released. The acting however is what makes this a masterpiece. The characters' backgrounds are never fully explained, but the performances make them completely developed. Both Jon Voight and Dustin Hoffman are absolutely memorable and sympathetic (despite their sometimes reprehensible actions). Plus, being a fan of vintage exploitation films, I loved the scenes set on the infamously sleazy 42nd street. ""Midnight Cowboy"" is close to being perfect and one of the most powerful films ever made. (10/10)",1 +17359,"Felt mine was while watching this...but it seems that is the reason for insanity running in the family in this film. Not that makes a lot of sense anyway, as others have mentioned, this was one of Karloff's last films and it's only his screen presence that lends it any credibility at all. It's sad that all of the great legends of the horror films in the sound era were eventually reduced to starring in low grade rubbish like this. Marginally, Boris did get off slightly better than poor old Bela Lugosi but not by much. <br /><br />Boris does his best and give him credit for trying to hold this mess together. The strident background music doesn't help and distracts from any lucid moment. Apart from Boris, the rest of the Mexican cast are dubbed into some strange, clipped, English monotone that is reminiscent of the type used in porn films of the late seventies. <br /><br />At a guess I think it's Edgar Allen Poe's 'House of Usher' that this is taken from but you'd be hard pressed to find a great deal of Poe in the finished article.<br /><br />Still, there are far better films out there with Boris Karloff at his best, search them out and give this a wide berth, unless you want the curse of the 'shrinking brain' too!",0 +21208,"I'm afraid that I didn't like this movie very much. Apart from a few saving graces, it's nothing to write home about. <br /><br />J-horror has boomed for the last five-six years but the films themselves have on more than one account been repetitive and carbon copies of a previous success. This is one of them.<br /><br />Basically this is a supernatural slasher movie. The beginning is promising with chilling scenes from a morgue where a dead girl has her eyes graphically sewn together, but soon after opens them. However, after that, it's quickly downhill for this flick.<br /><br />To be kind I will start with the things I like about ""Gawi"". On the plus side, the visuals are gaudy and the movie looks great for it's type. For those who like their horror movies gory there are a few nicely executed (no pun intended) murder scenes. We also get a few good suspense sequences/set-pieces.<br /><br />However, there are quite a few drawbacks also...<br /><br />First of all, and my major complaint about this movie, is that the plot skips and jumps forwards and backwards in time with an alarming intensity. Usually that's not a problem for me, but here, where the students look exactly the same no matter what age they are, I was confused on more than one occasion.<br /><br />The performances are okay I guess (a little hard to tell when you don't know the language), but seem a little stiff. And for a horror movie, I don't think it was scary enough. For a while I was quite bored actually.<br /><br />Being a fan of giallo movies, I was expecting quite a lot from ""Nightmare"", but unfortunately I was quite disappointed.",0 +13117,"This is a good example of how NOT to make a film.<br /><br />There is very little meaningful dialog, no context for the events, and constant cuts between seemingly unrelated scenes. The result is a confused, clueless viewer; the plot is absolutely impossible to follow and the ideas presented are meaningless without listening to the director's commentary.<br /><br />This movie has a lot to do with human atrocity and tries to show how wrong it is, with an emphasis on child abuse. It includes some stock footage of real, horrible acts of violence, including war time executions. Although it works in the context of the movie, I feel that the ideas behind the movie could have been presented without resorting to such extreme content. This film is absolutely NOT for the weak stomached or the easily offended, and should not under any circumstances be shown to minors.<br /><br />The climax is anti-climactic compared to the content of the rest of the movie. If you're not listening to the commentary while it happens you will probably miss it.<br /><br />The director's commentary was a one-shot, ""sit the guy down and let him talk, no cuts"" type of commentary. While this isn't necessarily bad, the director ends up rambling a lot and often spends minutes at a time complaining about his college, filming conditions, co producers, bad film, and a dozen other things. The constant negativity detracts from what otherwise is an essential tool for understanding the movie.<br /><br />The movie was shot many years ago on 16mm and Super8 film over a period of four years on an extremely low budget. Because of this, the video and audio quality is poor. That alone does not make it a bad movie, but it does make a bad movie worse.",0 +13455,"This was a disappointing film for me. It came to me via a boxed set entitled, ""Classic Film Noir,"" which was a gift from someone who knows I typically enjoy films done in that style (I insist that noir is a style, not a genre). I do not think it is a noir film at all. There seems to be a tendency these days to label and market every black and white B movie made from 1947 to 1955 as noir, and the label does not always fit. There is a persecuted male protagonist, Ed Cullen (Lee J. Cobb), and most of the film's action takes place indoors. Those are just about the only noir elements that I could see. There is no pervasive paranoia, or any real reason why one should sympathize with Ed Cullen. Jane Wyatt was overdressed and unconvincing as a femme fatale. I do not want to spoil this film for potential viewers. However, I would be interested in hearing what other connoisseurs of film noir have to say about it.",0 +6582,"I saw ""Brother's Shadow"" at the Tribeca Film Festival and found myself still thinking about it two days later. The story of a prodigal son (Scott Cohen) returning to his family's custom furniture business after a stint in jail, it offers all the necessary qualities of a solid drama--memorable characters; sharp, observant dialog; sensitive use of the camera by a filmmaker who thinks visually.<br /><br />But more than that, it presents something that is all too rare at the multiplex these days: the uncompromising vision of a mature sensibility. The talent of director-screenwriter Todd S. Yellin seems to emerge full-blown, but we get the sense he (like his protagonist) has paid his dues. He knows how real people struggle in this world, and he knows how we yearn to see--or at least, to experience vicariously--success. Yet Yellin respects his audience too much to blow happy smoke up our rear ends. In the end, we see that Jake's triumph doesn't lie in commissions, or even in the esteem of his family, but in ""the work"" he couldn't abandon if he tried.<br /><br />It's an essential theme in a world (and especially a movie industry) that can't rise above ""the bottom line"". This film deserves a wide audience.",1 +18771,"December holiday specials, like the original Frosty, ought to be richly-produced with quality music and a wholesome, yet lighthearted storyline. They should have a touch of the mystical magic of the holidays. Basically, they should look, sound, and feel...well, ""special"" and they should have a decent and appropriate December holiday subtext.<br /><br />So when I saw Legend of Frosty the Snowman in the TV listings, I got my kids (6 and 8) pumped up for it by telling them the story of the original Frosty and passionately relating how much I enjoyed it as a kid. As my wife and kids cozied up on the couch to watch the movie the expectations were high, but 10 minutes into it my kids were yawning and my wife and I were giving each other ""the look"" and rolling our eyes. After 35 minutes my kids were actually asking to go to bed -- I guess they were fed up with the insensitive language and pointless, disconnected segments. I was actually embarrassed about their (and my) disappointment with this movie.<br /><br />Unfortunately, Legend of Frosty the Snowman is more like a bad episode of Fairly Odd Parents crossed with a worse-than-normal episode of Sponge Bob than a classic holiday movie. Don't get me wrong...those shows are fine and I like them as much as the next guy, but when I watch Fairly Odd Parents or Sponge Bob, my low expectations (for mediocre, off-color, zero subtext, mind numbing episodes) are always satisfied.<br /><br />We picked out some good books and spent the rest of the evening reading together. A much better choice than the embarrassingly bad Legend of Frosty the Snowman.",0 +5021,"""Jag är nyfiken Yellow"" is a lot of fun. Like at least one other reviewer, I was, on numerous occasions, laughing out loud. Yellow is energetic, playful, self-aware, explorative. Don't expect Bergman here. This movie is about a youth in the early- to mid-60s in Sweden and about the issues, read *contradictions*, that the nation and the world were facing. At times Yellow appears to be an earnest social-political documentary, with Lena, the main character, and others interviewing both common people and politicians (e.g. Olaf Palme at home). At other times, Yellow seems to parody this kind of documentary. All the while, Yellow acts as a personal documentary exploring Lena's life - her home life, her loves, her political views, her view of herself. She is a complete person complex, flawed, contradictory, happy, sad, curious. And placed over all of this is the wonderful additional dimension of the director, Sjöman, and his crew documenting themselves documenting Lena. It is this that, for me, really gives Yellow wings. Not only do they suddenly appear at some very funny times and in some funny ways, reminding the viewer that this is fiction and artifice, but their presence is itself another layer of the film; they are filming themselves filming themselves. I am reminded of a Bjork music video with this same quality a music video about the making of a music video, ad infinitum, with each iteration getting weirder and more cartoonish. I think Sjöman may have had something similar in mind. While ""Jag är nyfiken Yellow"" may not be everyone's cup of tea, it is certainly intelligent, witty, refreshing, ebullient, and authentic.",1 +12583,"I'm sorry, but even TJ Hooker's Adrian Zmed couldn't save this sequel. I went through half the movie thinking that this was a spoof of the original. Then came that wild and wacky motorcycle scene (notice that this is the only movie that Patricia Birch directs); and I sadly realized they were trying to be serious. I did get a kick out of the fact that the opposing gang, having lost their ""wheels"" due to their gambling habits in the original Grease, were forced to use motorcycles in the second movie. Being shamed by that putz character Carrington, I'd hate to see what they would resort to later: maybe Mopeds?<br /><br />I also never bought the hackneyed theme: hunky-Australian-boy-can't-fit-into-Outsiders-dominated-school-ergo-goes-for -tough-guy-with-stupid-biker-helmet-look. It was Disney story gone horribly awry.<br /><br />So, it looks like you CAN ruin a good thing by placing a bubble-gum smacking Michelle Pfeiffer in a musical. The only thing I took away from this movie was an idea of how many points out of ten to give it.",0 +14995,"***SPOILERS*** ***SPOILERS*** If one were to review the film based on the premise alone, one might think that you were looking at an average animal orientated horror flick. The plot is as follows. A group of documentary filmmakers head off to an island in order to film a documentary about surfing with sharks or blood surfing. (I live in South Africa so it was released as ""Blood Surf."") Admittedly, this seems to have a somewhat interesting idea behind it which, if it were explored further, could have improved the movie somewhat. However, this is not the case as the blood surfing part of the movie is minimal due to the fact that their documentary is interrupted by a rather large salt-water crocodile.<br /><br />The script is absolutely terrible. A good example of this is whenever someone gets eaten by the crocodile which is a frequent occurrence in this film, no one seems to give a damn. The most anyone person did in the film was to merely toast the victim in a scene which was meant to be poignant but just ended up being laughable due to the fact that the dialogue in this film was of a highly dubious nature. Another thing that really irritates about this film is the fact that they introduce characters who are totally superfluous to the film itself. They introduce a bunch of pirates who can only be seen to be adding another 10 minutes to a mercifully short film.<br /><br />The acting can be said to be mediocre. It probably would have been a lot more impressive if they did not have such a terrible script to work from. All in all there isn't one person who made a terrible impact on me. Every single person seemed to be a watered-down caricature and in this way, not one of these actors made any sort of impact on me.<br /><br />The crocodile itself is said to be huge, over 31 feet exactly and this sense of size is well portrayed by the obvious fake of a crocodile that they have provided for us in the film. The crocodile's death at the end of the film is so ridiculously fake and contrived that it makes one's stomach turn. With a huge cry of bravado, the hero of the film announces that he has a plan which turns out be falling down a hill and getting the crocodile to impale himself on a luckily-placed spike at the bottom of this said hill.<br /><br />All in all, I would say that this film is one which has to be seen for you to believe how bad it could be. What probably seemed like a good idea at the time suffered from a terrible script and an overwhelming sense of low-budgetness which all served to create a truly awful movie.",0 +11413,"Well, Tenko is without doubt the best British television show ever, the performances, the directing, the casting, the suspense, the drama..... everything is fantastic about it.<br /><br />Although the show fell a little later in its final season, this ending movie picked up the threads nicely and wove a superb story for fans of the show and newbies. I cannot recommend this movie more, find it and watch it. But I do advise watching the series first, as the first 2 seasons are even better than this fantastic movie.<br /><br />An obvious (10/10)",1 +9802,"One of the most frightening game experiences ever that will make you keep the lights on next to your bed. Great storyline with a romantic, horrific, and ironic plot. Fans of the original Resident Evil will be in for a surprise of a returning character! Not to mention that the voice-acting have drastically improved over the previous of the series. Don't miss out on the best of the series.",1 +19173,"It's a while ago, that I have seen Sleuth (1972) with two great actors Michael Caine and Laurence Olivier. Michael Caine is back, but he is now the husband and Jude Law the lover of his wife. The story is still the same and it's a fantastic play.<br /><br />During the movie I always had the feeling to watch a play. That's one of the reasons I dislike this remake of a classic. When I watch a movie adapted a play I still must feel to see a movie and not just a play. Director Kenneth Brannigan did some marvelous movies in the past, but this time he missed. Another reason was the look of the movie. The design was modern, stylish clean, uncomfortable and cold. I never got the feeling that somebody ever lived in that house. The photography wasn't bad, but the lightening was awful. Sometimes there was blue light, dark, green light, to round it up not friendly for eyes.<br /><br />The acting was really good. Michael Caine's and Jude Law's perform at their best. I really would like to see these 2 guys playing together on stage. But I have to confess I never was a fan of Jude Law. The weakest part was the mid part. I remember that in the original that this part was still very mysterious and just marvelous directed. I tried to watch it twice and always in the mid part I felt asleep. The end part is better and more interesting. Sleuth (2007) isn't awful, but it seems to be more a movie for critics than for the audience. Sleuth (1972) is still a masterpiece and much more entertaining than Sleuth (2007).",0 +18241,"This film may have been the biggest let-down I've experienced in renting movies based on IMDb reviews. Overall, I simply found this to be a second-rate movie.<br /><br />Leslie Cheung is certainly passable as the antihero and Ma Wu handles his character with cheerful competence. On the other hand, Ma Wu's makeup (facial hair) is so obviously phony that I simply could not take him seriously. He looked like an overweight teenager dressed up for Halloween, complete with the $4.95 stick-on beard.<br /><br />The special effects were so-so, though the ""undead"" in the cellar were pretty good. The tree-tongue looked like something from a bad 1950s monster flick, though the POV shots from the tongue's view more closely resembled Sam Raimi's trademark shots in the more recent ""Evil Dead"" trilogy. The pyrotechnics were ho-hum and the final battle is about as dull as you can get. (In fact, it most closely reminded me of the ""Lost in Space"" episode where the Robinsons are caught in a sandstorm and....) <br /><br />The plot was not particularly original and has been told countless times in the form of European fairy tales. There was no suspense and no plot twists. In fact, you know right away as you are introduced to the characters who is good, who is bad, and who is going to survive.<br /><br />I just returned this film to Netflix and then I sat down to write this review. The very first thing I did was check the production date. Yep, it says 1987...not the 1967 that I thought it might be. And that pretty much sums it up: The production values and FX are typical of the 1960s. The plot and action seem much older, as Hollywood was actually producing some interesting and challenging films in the 60s.<br /><br />** out of *****",0 +19404,"For such a great classic tale, the setting (location), Grendel was disappointing. As a writer, I blame the script which completely lacked dramatic tension. The rubric of the club story is useful and would have provided a new take on the literary classic. For some weird reason that rubric was dropped early on. To know this was shot in 21 days says to me, ""rushed"" and it unfortunately shows. Now we'll have to wait for the Hollywood version on the big screen. I word on FX, I can tolerate really crappy CGI but the script has to rock and this one was just too slow, spartan and lacking in drama. I'd blame it on the actors but... since I know writing more than acting, I'll pick on my colleague.",0 +4108,"Yes, it's over the top, yes it's a bit clichéd and yes, Constance Marie is a total babe and worthy of seeing again and again! The jokes and gags might get old and repetitive after a while but the show's still fun to watch. Since it's a family show the humour is toned down and the writers have incorporated family values and ideals in between the gags.<br /><br />George Lopez is funny. Don't take him seriously and the show's a winner. I'm sure he didn't intend his character to be serious or a paragon of virtue. His outbursts and shouts of glee are hilarious...<br /><br />I do have to say that the one big, dark, bitter spot is Benny. I hate the character...so much so that anytime she's on for more than 30 seconds I mute the TV just so I don't have to hear her. There is nothing funny about her dialogue or her jokes. As a mother she has to be the worst out there and I am just shocked and surprised that George, as the character, would stand by such a deplorable person for so long.<br /><br />Even so anytime I get ticked off at seeing Benny I think to myself: seeing her is a lot better than having to watch the Bill Engvall Show. Now there's a bad sitcom...",1 +5213,"This movie leaves the intellectual mind thinking and trying to analyze the story. I too cannot understand why people would trash this movie.<br /><br />If you are a Jerry Bruckheimer fan, this movie may not suitable for u.<br /><br />This movie presents high degree of realism. The actors and actresses' performance is examplary. Not fake, just natural. <br /><br />No special sound.effects, so special side effects.<br /><br />The camera work is excellent, the music is oh so good. I can't wait to get the soundtrack.<br /><br />It leaves your body numb, like Constant Garderner.The directly has raw talent, certainly not a follower.",1 +3255,"Well made and stylish while still ultimately making sense this thriller would work better for non giallo fans to get interested in the genre than the later Argento entries which go overboard in all directions.<br /><br />For fans of these crazed Italian thrillers, they will appreciate George Hilton and the turns his character takes and what he's put through. The camera-work is fresh with dashes of graphic violence and odd, but appropriate choices and a good not overblown music score as well. The less you know about the story the better to make it work.<br /><br />The only thing lacking in keeping this from being a great Sergio Martino directed giallo is that the story doesn't have that extra sexual or psychological, or both element to put it over the top. It's more a routine mystery, the characters are well defined but live or die according to the plot not according to their own virtues and flaws.<br /><br />The recent DVD (2005) release is beautiful looking and definitely the way to see the film, unless these ever get art house screenings which seems unlikely.",1 +7323,"CAROL'S JOURNEY is a pleasure to watch for so many reasons. The acting of Clara Lago is simply amazing for someone so young, and she is one of those special actors who can say say much with facial expressions. Director Imanol Urbibe presents a tight and controlled film with no break in continuity, thereby propelling the plot at a steady pace with just enough suspense to keep one wondering what the nest scene will bring. The screenplay of Angel Garcia Roldan is story telling at its best, which, it seems, if the major purpose for films after all. The plot is unpredictable, yet the events as they unravel are completely logical. Perhaps the best feature of this film if to tell a story of the Spanish Civil War as it affected the people. It was a major event of the 20th century, yet hardly any Americans know of it. In fact, in 40 years of university teaching, I averaged about one student a semester who had even heard of it, much less any who could say anything comprehensive about it--and the overwhelming number of students were merit scholars, all of which speaks to the enormous amount of censorship in American education. So, in one way, this film is a good way to begin a study of that event, keeping in mind that when one thread is pulled a great deal of history is unraveled. The appreciation of this film is, therefore, in direct relation to the amount of one's knowledge. To view this film as another coming of age movie is the miss the movie completely. The Left Elbow Index considers seven aspects of film-- acting, production sets, character development, plot, dialogue, film continuity, and artistry--on a scale for 10 for very good, 5 for average, and 1 for needs help. CAROL'S JOURNEY is above average on all counts, excepting dialogue which is rated as average. The LEI average for this film is 9.3, raised to a 10 when equated to the IMDb scale. I highly recommend this film for all ages.",1 +2690,"Very smart, sometimes shocking, I just love it. It shoved one more side of David's brilliant talent. He impressed me greatly! David is the best. The movie captivates your attention for every second.",1 +14501,"As a big fan of the original film, it's hard to watch this show. The garish set decor and harshly lighted sets rob any style from this remake. The mood is never there. Instead, it has the look and feel of so many television movies of the Seventies. Crenna is not a bad choice as Walter Neff, but his snappy wardrobe and ""swank"" apartment don't fit the mood of the original, or make him an interesting character.He does his best to make it work but Samantha Egger is a really bad choice. The English accent and California looks can't hold a candle to Barbara Stanwick's velvet voice and sex appeal. Lee J.Cobb tries mightily to fashion Barton Keyes,but even his performance is just gruff, without style.<br /><br />It feels like the TV movie it was and again reminds me of what a remarkable film the original still is.",0 +4627,"Bunny Comes Home 'This Man's Navy' deserves more credit than it gets, a clever script by Borden Chase, directed by 'Wild Bill' Wellman, the film has just the right feel for early post WW11 euphoria and goodwill, and none of the blind terror that came into play few years later. Produced in 1944, the Japanese defeated, the battle scenes a little déjà vu, Tom Drake's melancholy attraction for radiant young Jan Clayton has solid chemistry, plays real and validates Drake's career at Metro. The following year Jan opened on Broadway in 'Carousel.' Wally Beery, a little bleary-eyed, boasts to an always incredulous Jimmy Gleason his memories an improvement over reality, and give Beery a Ulysses-like shadow to play against. The Navy LTA (Lighter Than Air) shots are authentic, photographed at Tustin and Lakehurst, and the P-38 squadron is out of March AFB. Lot 3 doubled for India, and Bunny's U-turn Bunny Comes Home gives back to Beery an authentic slice of his past, something he had wanted to believe was true then, the future we spin into again is fantastical now on a grander scale, a newly designed Navy LTA with launch capabilities for a reconnaissance plane how expensive, blissfully optimistic still, ""You got to believe in it, that's the way you make things come true """,1 +21637,"Oh God,what an idiotic movie!Incredibly cheap with fake special effects(the creature is played by one guy in lame costume)and stupid plot.All dialogues are unbelievably bad and these actors(HA!HA!HA!)...they're simply ludicrous.For example I have never seen so annoying characters like in this junk(these dumb kids or pregnant woman with his husband and many more).All in all,this is a great entertainment if you're drunk.Avoid it like the plague.Am I drunk?I don't think so...",0 +1319,"I am a big fan of Stephen King's work, and this film has made me an even greater fan of King. Pet Sematary is about the Creed family. They have just moved into a new house, and they seem happy. But there is a pet cemetery behind their house. The Creed's new neighbor Jud (played by Fred Gwyne) explains the burial ground behind the pet cemetery. That burial ground is pure evil. Jud tells Louis Creed that when you bury a human being (or any kind of pet) up in the burial ground, they would come back to life. The only problem, is that when they come back, they are NOT the same person, they're evil. Soon after Jud explains everything about the Pet Sematary, everything starts to go to hell. I wont explain anymore because I don't want to give away some of the main parts in the film. The acting that Pet Sematary had was pretty good, but needed a little bit of work. The story was one of the main parts of this movie, mainly because it was so original and gripping. This film features lots of make-up effects that make the movie way more eerie, and frightening. One of the most basic reasons why this movie sent chills up my back, was in fact the make-up effects. There is one character in this film that is truly freaky. That character is ""Zelda."" This particular character pops up in the film about three times to be precise. Zelda is Rachel Creed's sister who passed away years before, but Rachel is still haunted by her. The first time Zelda appears in the movie isn't generally scary because she isn't talking or anything, but the second time is the worst, and to be honest, the second time scares the living **** out of me. There is absolutely nothing wrong with this movie, it is almost perfect. Pet Sematary delivers great scares, some pretty good acting, first rate plot, and mesmerizing make-up. This is truly one of most favorite horror films of all time. 10 out of 10.",1 +16590,"As a Turkish man now living in Sweden I must confess I often watch Scandinavian movies. Most if them I never understand. I think actors from Scandinavia work best in Hollywood. Last week I watched a film called ""The Polish Wedding"" together with a polish friend of mine and we both said it was the worst movie we ever watched. Unfortunately I was wrong this movie "" House of Angels"" is even worse. None of the actors can act, absolutely not the female so called star Helen Bergstrom. The plot is so silly nobody can believe it.I think the whole thing is a mess from the start. lots of bad acting except from Selldal and Wollter. Ahmed Sellam",0 +5162,"Soylent Green IS...a really good movie, actually.<br /><br />I never would've thought it. I don't really like Heston in his sci-fi efforts. He's one of those actors who, like Superman, manages to come across all sneery and invincible most of the time. I prefer more vulnerable heroes. And indeed, he sneers his way through much of Soylent Green, too, but as he's supposed to be playing an overconfident bully I don't really mind.<br /><br />I can understand why some people would turn their noses up at this movie. Soylent Green makes no effort whatsoever to create futuristic visuals (what do you know - it looks just like 1973), and it's lacking in action. But I admired the film's vision of a complex, corrupt, and highly stratified society, and I was so pleased to see that Edward G. Robinson had such a moving, funny final role. Nice little character moments - like when he shares some precious food with Heston - really make the movie.<br /><br />The message of Soylent Green is pretty relevant these days, when nobody seems to know what the hell the government or corporations are up to. Funny, isn't it, to see Heston in a prototype Michael Moore movie...",1 +7226,Enjoyable and watchable. Tim Meadows at his best. A big boost from Billy Dee Williams. He and a very funny John Witherspoon provide a solid foundation for Mr. Meadows' riffing. Have fun with this one.,1 +20832,"The director states in the Behind-the-Scenes feature that he loves horror movies. He loves them so much that he dedicated the movie to Dario Argento, as well as other notable directors such as George A. Romero and Tobe Hooper. Basically dedicating this movie to those great directors is like giving your mother a piece of sh*t for Mother's Day. The first thing they did wrong was the casting. CAST PEOPLE THAT CAN ACT. Also, don't cast a person that is 40 years old for the role of a misunderstood, 18 year old recluse. That's right, he's been in high school for 22 years. The reactions made by people as they watch their boyfriends get their hearts ripped out is amusing. Or like one part when a guy gets stabbed in the ear with an ear of corn (haha get it), and his girlfriend just goes, ""Oh..my.. God?"" The scarecrow himself is quite a character. Doing flips off cars and calling people losers.<br /><br />The movie does have one redeeming factor... oh wait, no it doesn't.<br /><br />If you absolutely MUST see this movie, than just watch the Rock and Roll trailer on the DVD. It covers about everything and has a really gnarly song dude.",0 +12192,"I love Kristen Dunst, especially in Elizabethtown. I guess she's the kind of actress who had better not act before camera, but just be herself. She did that, and she looked so natural in Elizabethtown. In this movie, however, she did try to add in more artificial performance, especially in the first half of the film, so that she looked more like a sober editor. While in the other half, she totally set herself back in her daily track, and I just couldn't tell her to be an editor any way. Therefore, her performance is not enduring in this film. <br /><br />The film,on the whole, is attracting and inspiring. the character of Young is full and reasonable. Anyway, the film tells a big and sophisticated story. <br /><br />The only big defect is that it didn't show a turning point of the hero and heroine's love story. I am totally confused when they kiss at the end of the story, because that is rather unclear for the two persons.",1 +17519,"It's a real challenge to make a movie about a baby being devoured by wild canines and the mother being wrongly accused of murder funny but against all odds this one succeeds. Meryl Streep gives the performance of her life, melodramatic, overwrought but with that comic genius that keeps you laughing even as a mother struggles with the ultimate horror.<br /><br />If comedies about the infants being eaten by dogs are not your cup of tea you might be uncomfortable watching this and, yes, it is an odd choice of topic for a farce but really very little of the movie has anything to do with that as it focuses on giving Streep a showcase for her Aussie accent and facial contortions. <br /><br />Throwing in a slam at media bias and sensationalism and disregard for either the truth or ethics gives the movie the chance to make the daring point that those things are bad.",0 +4529,"This is probably one of the worst movies ever made. It's...terrible. But it's so good! It's probably best if you don't watch it expecting a gripping plot and something fantastically clever and entertaining, because you're going to be disappointed. However, if you want to watch it so you can see 50 million vases and Goro's fantastic hair/bad English, you're in for a real treat. The harder you think about the film, the worse it gets, unless you're having a competition to spot the most plot holes/screw ups, in which case you've got hours of entertainment ahead. I'd only really recommend this film for the bored or the die-hard Smap fans. And even then, the latter should be a bit careful, because Goro's Japanese fans were a bit upset about it, they thought he was selling himself out. (He wasn't really, not when Johnny Kitagawa (who was the executive producer) can do that for him).",1 +11667,"what can i say?, ms Erika Eleniak is my favorite blonde girl ever, and like a Italian American, fan number one of female beauty i can't forget this movie.<br /><br />you know i really don't remember a lot about the plot, or the situations or the other actors . i only can remember about drop dead gorgeous Erika and that in this film she looks better than ever, i really don't care if it was a bad movie or a good movie, i only care the nice moments i had been a teenager in Brooklyn just contemplating Erika's beauty.<br /><br />Well just to conclude if you are an Erika Eleniak's beauty fan like me definitely this film is for you.",1 +19889,"This is just short of a full blown gore fest based on a Stephen King story. Two tabloid reporters, one seasoned(Miguel Ferrer)and one not so accomplished(Julie Entwisle), begin to believe that a serial killer(Michael H. Moss) may actually be a vampire. Stranger than odd is this modern day blood sucker does not wing his way naturally, but by way of a black Cessna he seeks his victims. The gore actually gets gruesome as the film nears its stupid finale. Keep in mind that Mr. King had nothing to do with this film. I do admit it is a bit scary in the wee hours of the night.",0 +12380,"""Slaughter High"" is a totally ridiculous slasher flick about a high school nerd Marty,who gets pick on all the time by some pranksters.The prank goes wrong and he ends up getting savagely burned.Five years later his tormentors all attend a reunion-just the ten of them of course,and low and behold Marty murders them one after another.British actress Caroline Munro(""Maniac"")leads the cast as the heroine(who dies anyway!).The acting is completely awful,there's also no suspense at all.Plenty of grotesque death scenes to satisfy the gore-freaks:a guy's stomach explodes,another female victim literally gets an acid bath,a couple having sex in bed get electrocuted,a guy is crushed by a tractor,one girl is drowned,and a doctor gets a hyperdermic needle in the eye.The killer wears a decent and rather creepy jester's mask and the setting(a beautiful old English castle)is really nice.However the dream finale is utterly pathetic.All in all it's true that ""Slaughter High"" is a piece of garbage,but I enjoyed it.Only for fans of truly bad slasher flicks.",1 +9941,"FORBIDDEN PLANET is one of the best examples of Hollywood SF films. Its influence was felt for more than a decade. However, certain elements relating to how this wide-screen entertainment was aimed at a mid-fifties audience that is now gone have dated it quite a bit, and the film's sometimes sluggish pacing doesn't help. But, the story's compelling central idea involving the ancient,extinct Krell civilization and ""monsters from the Id"" hasn't lost its appeal and continue to make this film a relevant ""must see"" movie. What I'm mostly interested in saying here is that the current DVD for this movie is terrible. The movie has never really looked that good on home video and it's elements are in dire need of restoration. I hope that will happen soon and we get a special edition of this SF classic.",1 +20409,"After what I thought was a masterful performance of two roles in Man From Snowy River, WHY was Kirk Douglas replaced by Brian Dennehy in the sequel? It just wasn't the same without Spur and Harrison, as portrayed by Douglas. Maybe he recognized how poor the plot was--Jim returns after extended absence, to find Jessica being pursued by another man. He could not expect any girl to wait that long with no contact from him, and not find competition. For a Disney movie, this contains foul language, plus the highly unnecessary part when Jim & Jessica shacked up without being married--very LAME. Quite an insult to viewer intelligence, according to members of my family. I'll stick with the first one, and try to forget I ever saw the sequel!",0 +18062,"How did this ever come into existence? I generally love sci F/Bigfoot whatever films etc. . . but I still expect them to be written without quite so much cheese as this. The effects were sad, the lines were sadder. Avoid at all costs. I only ended up renting it because it was in the wrong case (I was looking for the Sasquatch film with Lance Henrikson in it -- still haven't seen that one). The idea of the film is actually a good one. There was a lot of potential to make a great little movie here. I just don't understand how something like this ends up like this. Go speak to the film/arts/English interested students in any high school and you'll find people who can write a better script.",0 +6336,"I really think I should make my case and have every(horror and or cult)movie-buff go and see this movie...<br /><br />I did!<br /><br />It-is-excellent: Very atmospheric and unsettling and scary...<br /><br />Incridible how they could make such a gem of a film with the very low(read-""no""!)-budget they had....<br /><br />Synopsis taken from website: ""One morning, an old man wanders out into the woods in search of his runaway cat. He finds instead a child without parents and a murder with no corpse...""<br /><br />On this website(IMDb) there is no trailer, but I will leave a link here to the site of the movie itself where there IS a trailer which is quite unsettling so please go and check it out...<br /><br />www.softfordigging.com",1 +6982,"Frailty is a non-gory horror film that achieves its chills by following the logic and impact of a man's delusion/obsession straight into depravity. Dad (we never learn his name) is a gentle man and loving father who's raising his sons alone after Mom died giving birth to the youngest son, Adam. The family's world flips upside down late one night when Dad rushes into the boys' room and tells them God has given him a vision. And what a vision the entire family's job is to destroy demons, who, of course, are disguised in human form.<br /><br />Proceeding from this premise, the movie is unflinching in following it. Dad kidnaps people/demons whom God has told him to destroy, binds them, lays his hand on them to see a vision of their evil, then kills them while making his young sons watch. Fenton, the older boy, is horrified, seeing only a father who's turned into a crazed murderer. Adam, the younger, is uncomfortable, but trusts that Dad is following God's will. Eventually, Dad takes his sons on missions to abduct the ""demons"" that God has put on Dad's list, and finally, invites them to fully participate in God's mission for the family.<br /><br />This is not, you understand, an abusive father. He loves his children. He is only following God's instructions: ""This is our job now, son. We've got to do this."" When Fenton, terrified and convinced his father has gone mad, says he'll report him to the police, his father explains, ""If you do that, son, I'll die. The angel was clear on this."" The pressure that the children are under is unbearable and tragic, and warps their entire lives.(1) The movie's structure is similar to the one used in The Usual Suspects: a story in flashback, told in a police station to a FBI agent. The moody lighting, the stormy weather, and the eerie calm in the present day add to the menace of the backstory. I wanted to believe the unfolding horror was just a story, until I remembered the real-life parallel of Andrea Yates, who believed she was possessed by Satan and could save her children by drowning them. Even then, I wanted to believe that I was watching a human tragedy, rather than a story of divine retribution.<br /><br />The movie gave me no such comfort, though, as it gave strong clues at the end about the veracity of Dad's vision. And this, as much as some plot holes, posed a problem for me. Regardless of the accuracy of Dad's visions, regardless of the evil that his victims may have committed, where does anyone derive the authority to act as an angel of death? (1) Roger Ebert review, 4/12/02",1 +10066,"What is ""Cry Freedom"" like? It is simply great and unique experience about making of South Africa and how black people in that country were repressed by white people. Main character of the story is Donald Woods (Kevin Kline), chief editor of the newspaper Daily Dispatch in South Africa. Woods writes several articles, where he speaks critically about views of Steve Biko (Denzel Washington). Soon Woods meets Biko and he changes his views about him and he also begins to understand what authorities are doing to black people in South Africa (right from the top, even from the chief of police). When Biko dies in police custody, Woods decides that he have to write book about him and that no matter what he has to publish it. But Woods must escape from his country to get that book published and he must also put his family on second place, so world can find out the truth.<br /><br />Attenborough managed to make a good movie about people, with main message that black and white are the same, cause we are all people. Story leads us to South Africa and this (movie) is great way for the whole world to learn what happened in that land and I'm disappointed that only 3200 people rated this movie. This is movie from which we all can learn something. Although it is a bit long, this story couldn't be presented in any shorter way because director wanted to show us how hard was for Woods to get that book published after death of Biko. <br /><br />Also relationship between Woods and Biko was shown great, just like families of those two people and all the problems they are going through. But sometimes sacrifices must be made (Biko's death) so the truth could be reveled (Woods book).",1 +917,"I have rarely emerged from viewing a film with such a warm, happy feeling. I felt as if I had been out with really good friends and had a wonderful time! I thoroughly enjoyed this film. The acting was superb, although I would have to mention Bill Nye in particular as giving an absolutely faultless performance. Bill is an excellent actor and would love to see him in more films. Timothy Spall and Jimmy Nail are also favourites and always love to see them as they give such a solid performance. And Billy Connolly, as always, totally gorgeous. It was a wonderful ensemble performance from all concerned. Such a refreshing experience to see a well-written, superbly acted and good-looking movie.",1 +18889,"This movie isn't terrible, really. Somebody commented that Mo is the type of American Europeans snicker at. But there are those, and not necessarily Anglo-Saxon yahoos, who do not care for Frenchmen; and the Xavier character isn't going to sway them.<br /><br />Let's consider his stereotypical Frenchman attributes:<br /><br />1). Cynical - very cynical. Check.<br /><br />2). Reedy, underfed appearance, check, despite:<br /><br />3). A great appreciation of cuisine. Check.<br /><br />4). Lukewarm work ethic. Check. (Forget the fact he is supposedly a rich stockbroker, from watching him in the film he seems to put in ten hour workweeks.) <br /><br />5). Beautiful wife, check. Despite that:<br /><br />6). Loose interpretation of the marriage vows. Check.<br /><br />7). Big sexual ego, which says an American girl owes you sex if you buy her dinner. Check.<br /><br />Whether Mo is a hick or not, there's no reason for her to fall for this smug European twit other than the script dictates so.<br /><br />On the other hand, as other male reviewers have, I did enjoy seeing Karen Allen's cute, petite body. I'll give the movie four stars; two of them are for that.",0 +13288,"I have seen some bad movies (Austin Powers - The Spy Who Shagged Me, Batman Forever), but this film is so awful, so BORING, that I got about half way through and could not bear watching the rest. A pity. Boasting talent such as Kenneth Branagh, Embeth Davitz and Robert Duvall and a story by John Grisham, what went wrong? Branagh is a big-time lawyer who has a one-night fling with Davitz. Her father (Duvall) is a psychopath who hanged her cat, etc, etc, so Branagh has him sent to a nuthouse, and he promptly escapes. Somehow (I couldn't figure out how) Robert Downey jr, Daryl Hannah, Famke Janssen and Tom Berenger are all mixed into the story which moves slower than stationary. I wanted to like this, and, being a huge Grisham fan, have read all about this movie and I (foolishly) expected something interesting. This is honestly the WORST film I've seen to date and I wish I could have my money refunded. * out of *****.",0 +19288,"Horrible, horrible TV show! Why Comedy Central decided to repeat old episodes of this program is beyond me. It really sucks! I am, of course, speaking about the seasons after the first two. The first two seasons were golden, and if I was exclusively talking about those seasons, this show would have gotten eight out of ten stars. None of the comedians appearing after the first two seasons who were not part of the original cast are any good. They were, and are, awful. The comedy is not funny at all. AT ALL!!! <br /><br />The original cast was full of very talented comedians, like Artie Lange, Phil LaMarr, and Mary Schorr (or whatever her name is), all of whom should have gotten better deals after they left MAD TV. This show is highly overrated, and less worthy of your channel surfing time than Saturday Night Live, another horrible show. Go out on Saturday night and have fun, and leave MAD TV to wither and die, as it deserves to.",0 +570,"If you have any clue about Jane Austen´s production, you´ll now that she repeats the same in each of her novels: marriage, marriage and marriage! In my opinion all the movies made from her novels are a bit boring, but I like Austen´s characters, because they all have a certain personality and typical sayings they like to repeat as also in Emma. The thing that makes Emma good is Gwyneth Paltrow, she´s very good in her leading role. Also the fact that each one of the characters in the movie don´t seem to be able to think anything but how to get a good partner and soon married makes the movie hilarious.",1 +17832,"Look carefully at the wonderful assortment of talent put together to make this movie: Connery, Fishburne, Capshaw, Harris, Underwood, Beatty, Thigpen, even cameos by Slezak, Lange, and Plimpton. They prove, in spades, the adage that a good cast cannot save a bad script. The story line requires so many leaps of faith from the audience that its implausibility should have exceeded even Hollywood standards. It's not particularly original, and the ""twists"" are downright cruel.",0 +3414,"I remember watching this movie with my friends when we were 4 years old, but the weird thing is that I never watched it after that. The other day I was babysitting and my cousin never saw All Dogs Go To Heaven so we rented both movies and watched them together today and he really loved these movies. So many memories came back watching this movie once again and I have to admit I even cried a little. I'm 22 years old and the ending still gets to me. All Dogs Go To Heaven is one of the most touching animated films and I'm shocked honestly by this rating of 5.8, I thought this movie would bring back good memories for others as well. I admit the animation was a bit typical but the story is just so charming and fun.<br /><br />Charlie is a gambling dog who gets killed by another gambling dog, Carface. But when Charlie wants revenge he comes back to Earth with a watch that can't stop ticking or that's the end of his life again. When he and his best friend, Itchy, look for Carface and spy on him they find out how Carface gets all his money, he has a little orphan girl who talks to animals and finds out who is going to win the races. Charlie takes the girl, Ann-Marie, and makes fake promises in order to get the money. But he ends up learning that maybe he should put Ann-Marie first before himself when Carface goes back to him with a vengeance.<br /><br />All Dogs Go To Heaven is the perfect family film, it's not Disney, but this is an excellent family film to watch. Not to mention that it's just so cute and touching. I know it's ridicules and some people call me crazy, but this movie for me when I was a kid made me believe that dogs have souls. How could they not? They're just so loving, and I think I'm going to cry again. But anyways, I would just recommend this movie for anyone, it's a fun movie to watch.<br /><br />7/10",1 +22491,"This film was one of the worst I've seen in a long while. <br /><br />It's a combination police drama and comedy about two Hollywood detectives, Harrison Ford and Josh Hartnett, investigating a shootout at a hip hop club. <br /><br />The plot is contrived and there are way too many side issues going on. Ford is hustling real estate on the side (Martin Landau is one of his clients), Hartnett runs a yoga school where he's hustling chicks in his spare time, the two are under investigation by Internal Affairs, Ford is screwing the ex-girlfriend (Lena Olin) of the IA investigator and she's a psychic who has a radio show, the man who set up the killing at the club is a dirty ex-cop who shot Hartnett's father years ago.<br /><br />Toss in the obligatory car chases and some lame attempts at humor, and that's about the gist of this turkey.",0 +14806,"You all know the story of ""Hamlet"". I do. <br /><br /> Well, the ""To Be Or Not To Be"" phrase (not the speech itself) has been beaten into the ground so many times that it's not very interesting (in fact, it wasn't that great to begin with). In FACT, I find ""Hamlet"" a good but vastly overrated play. It's not even Shakespeare's best: ""Julius Caesar"" and ""Romeo & Juliet"" are ten times better, with ""A Midsummer Night's Dream"" and ""Othello"" not too far behind. ""Macbeth (knock your table, off his drawers, puck will make amends, OW!)"" isn't that bad either. There are lots of others that are better than this by Shakespeare.<br /><br /> I won't really comment too much on the movie, rather I will dissect the utterly horrible MST3K episode.<br /><br /> Okay . . . Mike and the Bots win a card game, get to pick the movie . . . they ask for ""Hamlet"", Pearl sends them this, yadda yadda yadda . . . and prepare for the most boring Sci-Fi episode of MST3K ever (admittedly, I haven't seen any of the CC Ones).<br /><br /> While ""Blood Waters of Dr. Z"" makes the viewing of that episode horrible, since it is not really a movie, rather random, spliced-together scenes (I'm reminded of Mike's line from ""Future War"": ""Maybe this is an anthology of short, plotless movies""), the SOL Crew a lot got off a good many good cracks. Can't say the same for here.<br /><br /> The riffs fall flat, the host segments (par usual) are at best mediocre, and when the movie itself (which isn't that bad) is actually BETTER (I mean, as a quality movie, not as camp, like ""Prince of Space"") than the MST3K version of it, you know the show must be bad. I laughed (the last time I saw it was several months ago), oh, maybe eight or nine times throughout. I tried and tried AND TRIED to be entertained - but I just couldn't. Only the occasional line, like ""Hail Queen Dilbert's boss!"" (and when that's the funniest line of the episode, well, ahem) - and by occasional, I mean every ten minutes or so - maybe me even chuckle. The second time I tried to watch it, I didn't even laugh at the few jokes I'd found funny before, and simply gave up forty minutes before.<br /><br /> The movie isn't horrible; it's just a German version of Hamlet. The actors are good enough, and though the dubbing isn't the greatest, that's not in itself a reason to hate this film. <br /><br /> Four stars for ""Hamlet""; THREE, yes THREE for the MST3K version.<br /><br /> PS: WHY WHY WHY, MST3K!",0 +7031,"Well, would firstly like to clarify that Kaakha Kaakha is a part of a Tamil prayer and roughly translated it means ""to protect"". Khakhee on the other hand refers to the color of the police uniform (which is Khakhi!).<br /><br />Also, the Tamil film industry is rather full of purely commercial ventures , any Rajnikanth or Vijay movie would stand testament to that statement.<br /><br />Now Kaakha Kaakha is an EXCELLENT movie with a great soundtrack. Certainly very stunning in the final scene, especially love the ending (which is certainly unexpected!). The gore is rather too much at times, but certainly this is a great movie!",1 +6837,"Charming in every way, this film is perfect if you're in the mood to feel good. If you love jazz music, it is a must see. If you enjoy seeing loveable characters that make you smile, can bring a tear to your eye and swing like there's no tomorrow this film is for you. If you are looking for an intense, deep, heavy piece of art to be dissected and analyzed perhaps you best stick with something by Darren Aronofsky (in other words - reviewer djjohn lighten up, don't you know a good time when you see one!) My only complaint is that the movie was just too darn short. I guess I'll just have to watch it several more times to get my fill.",1 +13878,"Unashamedly ambitious sci-fi from Kerry Conran, for whom this is clearly a labour of love. Unfortunately it's just not that good. It all starts well enough - with an epic but restrained score, a mixture of Lucas and Hitchcock style editing and the glossy cinematography of a Spielberg. The movie also references many pulp sci-fi novels, serials and films as diverse as The Day The Earth Stood Still, Superman, Metropolis, Planet Of The Apes, The Iron Giant, Star Wars and The Spy Who Loved Me. The film however, fails to be as good as any one of those for several reasons: the main being that it's such a labour of love, so concerned with throwing everything at the screen and creating a brave new world, Conran actually forgets about making a movie. There is little to no tension, atmosphere or magic on offer here despite aerial battles, dinosaurs and race-against-time set-pieces. Even the noir elements fall flat. This is a broad way of looking at things though - those elements mainly fail because nothing feels at all real and is so obviously fake - the green-screen just looks like a video game half the time and it's obvious the actors have been pasted on afterwards. The actors don't get to do much either - Jude Law is wooden, Gwyneth Paltrow is annoying and stupid, Angelina Jolie is wasted - and it's all because of an awful script - the sort that has to explain nearly everything. It is a decent experience and some might get a nostalgia feel but ultimately this is a pointless step into the world of yesterday. Nice ending though.",0 +19610,"This is one of the most insipid, lackluster, unoriginal, and pointless movies ever made! It almost feels like everyone involved in this project didn't even try to make an appealing movie. This is nothing more than a continuation of a tiresome series of films that attempt to cash in on the success of Smokey and the Bandit, which I think is the best film of them all. As for this waste of film stock, Burt Reynolds sleepwalks his way through the entire movie, Jim Nabors is wasted, the other actors aren't given very much to do, the car races are obviously stock footage, the humor is uninspired, and many of the scenes are more dull and lifeless than staring at a wall for two hours. ""Stroker Ace"" is simply a superfluous film with nothing unique or distinctive about it.",0 +19345,"First To Die 2003<br /><br />I'll admit my mistake first: I didn't realize this was a made for TV movie. I was ""thrown off"" by the ""R"" certification. The plot is strong, but the movie is about 40 minutes too long. The direction and continuity were excellent. For the most part the cast was exceptional and did a good job with their characters. The down side of the movie is that it definitely falls into the ""chick flick"" genre. Although there are some violent scenes, none of the violence should call for an ""R"" rating. There is no nudity or gratuitous sex scenes. Actually, there are no sex scenes. Ona Grauer (who is absolutely beautiful), Kristina Copeland, Sonya Salomaa, and Glynis Davies were all guests on the SG-1 series, but this movie did nothing to advance their careers since they were all used as low level supporting actresses. Robert Patrick was fantastic, as he usually is and Mitch Pileggi made me think of a modern day Lee Marvin. The very talented Megan Gallagher who I came to respect as an actor during the Millennium series, was given nothing challenging to show her range of abilities. The greatest disappointment with regard to the cast was Tracy Pollan. Aside from being a below average actress and not particularly attractive, her voice is absolutely annoying. I found myself muting the TV during her dialogue. I would recommend this movie to anyone who enjoys the Lifetime TV type of programs. I would not recommend paying any money to see this movie however. Considering I found nothing that would cause censorship, this is a movie that is worthy for only watching on TV, since nothing will be cut out. As a TV movie I would rate this as a 5 out 10. As a feature film with an ""R"" certification and such as strong cast, I rate it as a 2 out of ten.",0 +14026,"I couldn't relate to this film. It failed to engage me either intellectually, emotionally or aesthetically. The dialogue was very dense and uninvolving. I couldn't connect with and hence care about any of the characters and I'm finding it hard to find much that's positive to say about it.<br /><br />I've read that to understand it properly one needs to be familiar with some of the more obscure aspects of Catholic theology. I'll admit that, as an atheist, I probably am unfamiliar with many of the finer details of Catholicism, but I have also seen many films dealing with religious issues that have touched me because their themes are still universal to the human condition and don't rely on specialised knowledge or beliefs.",0 +14232,"never before has a film driven me to write a review but this was just dire.i stuck with it trying to find what it was about this film that made snoop pick it as his first serious role but frankly it was a poor choice.maybe this made a good book but it certainly did not work for me as a film.i found it unbelievable,lacking atmosphere and i found many of the scenes hideously stilted.a musical maestro he may be but a serious actor snoop ain't.the acting by Dylan mcdermott and rose byrne was passable but not enough to carry a weak plot with feeble dialogue. perhaps i have just entirely missed the point but to me it didn't fit into any genre,it didn't elicit any empathy with the characters nor did it create any suspense,in fact i found myself praying for the end and quelling a deep desire to slap all three of the main characters!",0 +19923,"This is your typical Priyadarshan movie--a bunch of loony characters out on some silly mission. His signature climax has the entire cast of the film coming together and fighting each other in some crazy moshpit over hidden money. Whether it is a winning lottery ticket in Malamaal Weekly, black money in Hera Pheri, ""kodokoo"" in Phir Hera Pheri, etc., etc., the director is becoming ridiculously predictable. Don't get me wrong; as clichéd and preposterous his movies may be, I usually end up enjoying the comedy. However, in most his previous movies there has actually been some good humor, (Hungama and Hera Pheri being noteworthy ones). Now, the hilarity of his films is fading as he is using the same formula over and over again.<br /><br />Songs are good. Tanushree Datta looks awesome. Rajpal Yadav is irritating, and Tusshar is not a whole lot better. Kunal Khemu is OK, and Sharman Joshi is the best.",0 +2217,"Brilliant kung-fu scenes, loads of melodrama, peculiar footwear symbolism and an unhappy (?) end makes Barefoot Kid an unforgettable film.<br /><br />One of the silliest subtitles I've seen...",1 +23693,"The only reason to give this movie even a single star is how much the ending made me laugh. I had high hopes as I usually love bad campy holiday horror movies, but this just didn't qualify. It's really just a bad attempt at showing a character slide slowly into insanity, which again, isn't a bad plot, but is done poorly here. There are some scenes (such as the ending) which are not intended to be funny, but actually made me laugh out loud. There were a couple of times when I thought the movie would actually go in an interesting direction, but it never fulfills what it could and should be. In my opinion, if you are looking for a Christmas slasher flick, try Silent Night, Deadly Night.",0 +20864,"No,<br /><br />Basically your watching something that doesn't make sense. To not spoil the film for people who actually want to this take a look at the flick I will explain the story.<br /><br />A normal everyday to day women, is walking down a street then find's herself driving by in her own car. She follows her and many events take place during that time that include her and her family.<br /><br />I specifically made an account to comment on this film, of how horribly written this was. The acting was great, the events were great, but the story just brought it nowhere - it could of been added to tremendously and be made into a worldwide epidemic. I'm not sure what the writer was trying to accomplish by making this, usually at the end of films most of your questions get answers but this film has you asking, What just happened and 1 hour 20 minutes just passed for nothing.<br /><br />Spoiler Starts__<br /><br />They had this area between 2 dimensions (ours and behind the glass) that would come into our world and kill us. It was not elaborated on all during the film, and you never know how it was happening or why it was or when it happened. Nothing gets explained during the film. The main character shouldn't of even been the main character. At the end of the film the guy who finally figures it all out and runs away (her sisters boyfriend) should of been the main character but sadly the movie ends 20 seconds after. <br /><br />I bought this movie for $10, threw it out right after.. don't waste your time. I really hope nothing like this is made again.",0 +2827,"The book on which this movie is based was excellent; it took a while to come to grips with Houellebecq's unconventional style but once I understood the mood behind the writing I was completely drawn into the author's world of sadness. In fact, no other book has affected me so much. This is not necessarily a good thing - it elucidated my own personal struggle and has made the futility of my own struggle harder to accept. Houellebecq's insights are masterfully captured by Harel and the hero's apathy and indifference to a world which has rejected him is perfectly portrayed. This is a movie which reveals today's society for the lowly male in all its horror. Hopefully, things will change in the future but for the present we have to accept the rat-race as shown in this movie. It's probably best that Harel or Houellebecq do not create a work of genius like this again. One is enough for any man.",1 +22748,"As I sat in front of the TV watching this movie, I thought, ""Oh, what Alfred Hitchcock, or even Brian DePalma, could have done with this!"" Chances are, you will too. It does start out intrigueing. A British park ranger living in Los Angeles (Collin Firth) marries a pretty, demure brunette woman (Lisa Zane) whom he met in a park only a short time ago. Then, one day she dissappears. The police are unable to find any documentation that she ever existed, and Firth conducts his own search. So far, so good. Just as he's about to give up, he turns to his womanizing best friend (Billy Zane), and they stumble onto her former life in L.A.'s sordid underground of drugs, nightclubs, and ametuer filmmaking, and then to her history of mental instability. At that point, Firth's life is in danger, and the film falls apart. None of the characters from Lisa Zane's past are remotely interesting. The film moves slowly, and there's very little action. There is a subplot regarding missing drug money, but it's just a throwaway. No chases, no cliffhanging sequences, and no suspense. Just some dull beatings and a lot of chat by boring characters. One thing worth noting, Lisa Zane and Billy Zane are brother and sister, but they never appear in a scene together. By the end of the movie, you're torn between wondering what might have been and trying to stay awake.",0 +4996,"I don't know why I like this movie so well, but I never get tired of watching it.",1 +17722,"Someone here actually compared this movie in some ways to High Noon. Now that is a real stretch! I'm a big Sinatra fan including some of his acting roles but maybe the only person who could have played this part would have been Don Knotts. First off, as someone pointed out, Sinatra just doesn't have the build for a Western bad-guy wannabe. He's just too 'slight' at this point in his life. Maybe he was about the same height as say Audie Murphy, but Murphy had a pretty solid build. Sinatra comes across as the big talking little kid who nobody ought to take seriously.<br /><br />The story is uninspired and really not credible. I don't want to spoil it but I think the ending and how the townspeople react in this story doesn't make any sense. Another thing, these people constantly allow themselves to be completely lorded over by some 'bad guy'. This is just a little town, so I don't get the attraction nor do I understand why the people would let themselves be dominated that way.<br /><br />There is a 'love interest' in the story and if I followed it right, she was upset when the main character refused to admit who he was so some other bad guy wouldn't kill him. Now there's true love for you. 'Stand up for yourself! Tell him your name so he will kill you!' LOL. Stop, you're killing me.<br /><br />Unfortunately the basic premise of the movie isn't good enough and no matter how they tried this story didn't have a logical path to follow other than into the wastebasket. Want to know why it's not on video and never shown on TV? The critics apparently panned it in 1956 and they were right - this movie is pretty bad. I would almost bet Sinatra paid someone to deep six the thing as much as possible.<br /><br />You want to see a good Western where a town stands up against a bad guy? Try Tension at Table Rock, or At Gunpoint - two really, really good Westerns with that theme. Johnny Concho is Johnny Stinko. Frank, you were the greatest singer ever - but you didn't belong in a movie like this.",0 +3262,There are few really hilarious films about science fiction but this one will knock your sox off. The lead Martian's Jack Nicholson take-off is side-splitting. The plot has a very clever twist that has be seen to be enjoyed. This is a movie with heart and excellent acting by all. Make some popcorn and have a great evening.,1 +21290,"*Spoilers and extreme bashing lay ahead*<br /><br />When this show first started, I found it tolerable and fun. Fairly Oddparents was the kind of cartoon that kids and adults liked. It also had high ratings along with Spongebob. But it started to fall because of the following crap that Butch Hartman and his team shoved into the show.<br /><br />First off, toilet humor isn't all that funny. You can easily pull off a fast laugh from a little kiddie with a burp, but that's pretty much the only audience that would laugh at such a cliché joke. Next there are the kiddie jokes. Lol we can see people in their underwear and we can see people cross-dressing. LOLOLOL!!! I just can't stop laughing at such gay bliss! Somebody help me! But of course, this show wouldn't suck that bad if it weren't for stereotypes. Did you see how the team portrayed Australians? They saw them as nothing but kangaroo-loving, boomerang-throwing simpletons who live in a hot desert. But now... Is the coup de grace of WHY this show truly sucks the loudest of them all... OVER-USED JOKES!!! The show constantly pulls up the same jokes (the majority of them being unfunny) thinking it is like the greatest thing ever! Cosmo is mostly the one to blame. I hated how they kept on mentioning ""Super Toilet"" (which also has a blend of kiddish humor in it just as well) and Cosmo would freak out. And who could forget that dumb battery ram joke that every goddamn parent in Dimmsdale would use in that one e-mail episode? You know, the one in which every single parent (oblivious to other parents saying it) would utter the EXACT same sentence before breaking into their kid's room? Yes, it may be first class humor to some people, but it is pure s*** to others.<br /><br />If I'm not mistaken, I do believe Butch Hartman said something about ending the show. Thank God! Everyone around my area says it's, like, the funniest Nickelodeon show ever. I just can't agree with it I think it's just another pile of horse dung that we get on our cartoon stations everyday, only worse.",0 +6838,"""An album of songs so old everyone thinks they're new."" This film has the elusive combination of pace and mood that set some films apart from the opening moments. And why not? Towering talent from Dame Judith Dench as a widow who plays saxaphone with a street musician to help him get the songs right, to Olympia Dukakis as the merry widow living in a Scottish castle on the alimony of her many marriages, to Ian Holm as the drummer who loved all the members of a World War II all girl (more or less) swing band. But wait, there's more. Add in Leslie Caron on bass, and the incomparable Clio Laine on lead vocal, at last, and the Blonde Bombshells are the hottest band in England since the Beatles. Well, OK, not really, but this movie is a winner.<br /><br />Elizabeth (Dench) spends the whole film trying to reunite the Blonde Bombshells to play at her granddaughter's school dance. And before you roll your eyes, imagine how difficult and courageous it would be for a bunch of sexegenarian women to step onstage in front of the Britney Spears generation following an act called ""Open Wound.""<br /><br />In an age when actresses careers are over by the time they're 30, most bands' second album is a greatest hits compilation, and music more than a month old has almost no chance of airplay, it's great to see real talent, real music and a really good movie come from, where else, the BBC.<br /><br />I love this movie, and I know I'll watch it many more times, and enjoy it more each time.",1 +23249,"Truly a disgusting, vile film, with only a small amount of real humour.<br /><br />The character of the father in particular is vulgar in the extreme (intentionally so, obviously), and portrayed in the most pathetic, seedy manner.<br /><br />My wife and I found this film horribly upsetting, with absolutely no redeeming features at all. Frankly, I wish I had never seen it.<br /><br />I consider this British effort to be a sick and gross embarrassment.<br /><br />Those who enjoyed this film have an ability I totally lack: that of rejoicing in a display of deep depravity and squalor.<br /><br />The producers should be ashamed of themselves.",0 +5741,"Passionate, dramatic, riveting as Flamenco itself, the film is simply amazing. It is set on the immortal Bizet's music. The original music is written and performed by one of the greatest classical guitarists, leading proponent of the Modern Flamenco style, Paco de Lucia who plays a musician with the same name. Legendary Flamenco dancer and choreographer Antonio Gades co/wrote the script and choreographed this fabulous version of the celebrated Georges Bizet/Prosper Mérimée novella/opera. He plays a main character Antonio, the famous dancer/choreographer who works on retelling the story of Carmen in the Flamenco style that combines dances with singing and rhythmic hand clapping and has a highly charged level of dynamics that appeals enormously to the viewers.<br /><br />Brilliant and graceful Cristina Hoyos whose technical excellence matches the elegant artistry of her dancing shines in the supporting role. Hoyos had been the first dancer in Gades' company for twenty years (1968-1988) and she was the protagonist of three films that Carlos Saura made of Gades' three great shows: ""Bodas de Sangre"" (1978), ""Carmen"" (1983) and ""El Amor Brujo"" (1985). Gorgeous Laura del Sol is a young dancer named Carmen in whom Antony sees from the first sight another Carmen, who was immortalized by two Frenchmen, the writer Prosper Mérimée in his most famous novella written in 1846 that had inspired George Bizet's world famous Opéra-Comique version from 1875.<br /><br />As in the opera and in the novella, Carmen in Saura's film is desirable and deadly, the ultimate femme fatale who has to be free above anything else. She could not tolerate the possessive love of any man and would prefer death to submission. There some 50 movie adaptations of the story and the opera to the screen, and as different as they are, they all have in common the only possible tragic end. Saura/Gades' film is unique as the most sensual of all and truly Spanish. I fell in love with it from the first time I saw it over twenty years ago and it is as special and beautiful today as it was back then. Highly recommended.",1 +650,"A very early Oliver Stone (associate-)produced film, and one of the first films in the impressive career of Lloyd Kaufman (co-founder and president of the world's only real independent film studio Troma, creator of the Toxic Avenger and, at the prestigious Amsterdam Fantastic Filmfestival, lifetime-achievement awarded filmmaker for over 30 years). Having raised the money for this film on his own, Lloyd wrote this script together with Theodore Gershuni in 1970 and in hindsight regrets having listened to advice to have Gershuni else direct the film instead of doing it himself. But back then he was still inexperienced in the business and it is probably because of decisions like these that he takes no nonsense from anyone anymore. Indeed it would have been interesting to see Lloyd's version of his own script - as one of the world's most original, daring, experimental and non-compromising directors he probably would have given it even more edge than it already has. But as it is we have the Gershuni-directed film. And weather it is due to the strong script, or the fact that he too is indeed quite a director of his own, SUGAR COOKIES is a very intelligent, highly suspenseful and well-crafted motion picture that deserves a lot more attention than it receives. The shoestring budget the small studio (this was even before Kaufman and his friend and partner for over 30 years now, Michael Herz, formed Troma) had to work with is so well handled that the film looks a lot more expensive, indeed does not have a ""low budget"" look at all. The story revolves around lesbian Camilla Stone (played by enigmatic Mary Woronow) and her lover who winds up dead through circumstances I won't reveal not to spoil a delightful story. This leads to a succession of plot-twists, mind games and personality reform that is loosely inspired by Hitchcock's Vertigo and at least as inventive. The atmosphere is a lot grimmer, though, and some comparisons to Nicholas Roeg's and Donald Cammell's PERFORMANCE come to mind. In this mix is a very original and inventive erotic laden thriller that keeps it quite unclear as to how it is all going to end, which, along with a splendidly interwoven sub-plot with a nod to Kaufman's earlier and unfortunately unavailable BIG GUSS WHAT'S THE FUSS, makes for a very exciting one-and-a-half-hour. Certainly one of the best films in Troma's library, and yet again one of those films that defy the curious fantasy that their catalog is one of bad taste. The DVD includes some recent interviews Kaufman conducts with Woronov and the other leading lady Lynn Lowry (later seen in George Romero's THE CRAZIES), thus giving some interesting insight in what went on during the making of this cult-favorite and a few hints of what would be different had Lloyd directed it himself. Highly recommended.",1 +11094,"You will marvel at the incredibly sophisticated computer animation, and the novelty probably won't wear off on the first, second or third viewing, but you?ll be drawn in by the characters which are so simple yet intriguing, that you may find yourself actually caring for them in an unexpected way, which may or may not make you feel a little childish due to the medium.<br /><br />Disney continues to firmly hold the title of ""Greatest Animation in the World"", with ""A Bug?s Life"" standing as one of their greatest achievements. One of the innovative attachments being the delightful ""out-takes"" added to the end of the film. The DVD has two sets of these out-takes where as I?m told the VHS cassette has one alternating version per tape. The DVD also features ""Gerry?s Game"" which is a delightful little PIXAR short that was also shown prior to the film in theaters.<br /><br />This is by far the superior insect-film in comparison to Dreamworks? ""Antz"", which in all fairness is pretty good, but lacks something in the animation and in the story development and characters. If you look at the star voices of both films, ""Antz"" is largely cast with big name ""movie"" stars with a few familiar ""TV"" star voices, where ""A Bug?s Life"" is just the opposite, loaded with ""TV"" stars with Kevin Spacey as the only stand out exception. But the difference in quality is distinct and obvious.<br /><br />Dreamworks can?t be blamed or surprised though, when you go head to head with Disney, you have your work cut out for you. This is the kind of film that almost makes me wish I had children to share it with. Don?t think for a second that this is just a movie for kids, though.",1 +18642,"I found a DVD of ""I Dream Of Jeanie"" in the $1.00 bin at Wal-Mart. When I saw that it was the ""story of Stephen Foster"", being a musician and music educator, I had to see it. I had no idea what year it was made for it did not say on the cover, just that it was a remake of 1939's ""Sewanee River"". Bill Shirley's portrayal of the composer is sometimes painful, sometimes laughable. The man has NO testosterone and is a wimp all the way through! I have a difficult time believing Stephen Foster thought music publishers were doing him a favor by publishing his songs...without paying him for them! In addition to that ridiculous notion, there is a nearly 20 minute segment of Ray Middleton and his black-faced ""Christy Minstrels"" performing Stephen Foster's songs that was difficult to watch, to say the least. I can hardly believe anyone would consider this movie appropriate to resurrect in our current time. It is an embarrassment and should remain forgotten. Fortunately, Stephen Foster's songs will NEVER be forgotten....also, Eileen Christy's portrayal of Jeanie was certainly the highest point in this lowest point of Hollywood history.",0 +15407,"Just as ""ITS A MAD, MAD, MAD, MAD WORLD"" is at the top of my list for all time greatest comedies ever made, this one is at the very bottom. (Of course, I could be wrong-not having seen ""SAVING SILVERMAN"") In other words, it's a lame, lame, lame, lame comedy.<br /><br />Rating: 1/2* out of *****",0 +5395,I really enjoyed Girl Fight. It something I could watch over and over again. The acting was Fantastic and i thought Michelle Rodriguez did a good job in the film. Very convincing might I say. The movie is showing how women should stand up for what they want to do in life. She had so much compassion and yet so much hate at the same time. Dealing with a ignorant dad didn't really help her much. Even though he loved her he was really hateful. Her mother died when she was younger and that also put some sadness in the role. The love story was a part that i really enjoyed in the movie also. I felt the passion the y had for one another. Then again drama sets in and then its like she is choosing between her boyfriend and her life long dream. I thought it ended just right. It was the kind of ending where you have to decide what happened in the future for them.For all you people who likes a movie based on a sport with a good plot i 'd suggest that you check this one out,1 +7082,"This is a great movie that I don't think gets enough credit as Saturday Night Fever or Grease in John Travolta's career. He plays a man who is in love with a girl but is too pig headed to admit his feelings to her. Instead, he wants to engage in mechanical bull riding because he thinks it will show his manhood. Even though it was made in 1980, it is still timely today. The great country music soundtrack is terrific. 10/10",1 +22111,"I have seen some pretty bad movies, and this is right up there. No plot to speak of, it's like one of those bad coma episodes on a soap-opera. I just wanted to smack that little girl because, well lets just say, she's real suspicious all the way through the movie. The monsters running around wearing some bling was funny. I also saw a bit of ""Silent Hill"" in there. And I read that this was done by, and or stared a Finnish metal band, Lordi. So it's no wonder that it didn't make much sense. It seem to be a vehicle for promoting there band and nothing more. The FX are very good, the look of the movie, the monsters, and even the acting also good. But the story and the telling of it, just aren't there.",0 +3521,"Back in the day if Marion Davies had had her druthers and didn't just listen to William Randolph Hearst, she'd have done more films like Show People and been a lot happier. In fact when you see her get her first big break in two reel comedy, she'd have loved to have done that in her career instead of such epics like When Knighthood Was In Flower and Janice Meredith. <br /><br />What you're seeing by all accounts in Show People is the real Davies, a gifted comedienne, a superb mimic and a generous good hearted person. She could really identify with the character of Peggy Pepper aka Patricia Prepoire, she put up with her share of pretense in her Hollywood stardom.<br /><br />If the plot of Show People was set in the legitimate stage you would call it a backstage story. I guess it being one of the first movies about the movies you could call it a behind the camera story. Marion is eager young hopeful who arrives in Hollywood like so many others, looking for that big break. She wants to drama, but her introduction to the movies is as the foil for the burlesque comics. She gets her share of pie and seltzer in the face, but learns her trade. And also wins the heart of young comic actor William Haines.<br /><br />She does get her first big break, but it doesn't come for Haines as well and Marion does get to do legitimate drama with actor Paul Ralli, playing Andre Telfair, a pretend no account Count of Avignon. Somebody here was taking a shot at actor Lou Tellegen, lover and husband of Sarah Bernhardt and Geraldine Farrar and others and to hear tell of it, one of the most despised people in cinema.<br /><br />Show People was one of the first films to have the unbilled cameo appearances of stars as themselves. You will get to see folks like Charlie Chaplin, Douglas Fairbanks, William S. Hart, Mae Murray, John Gilbert, Eleanor Boardman etc., just being themselves in and around the film colony. That in itself makes Show People a film worth saving.<br /><br />Show People also made good use of standard Tin Pan Alley songs like, Ain't We Got Fun, I'm Sitting On Top Of The World, You'd Be Surprised, California, Here I Come. As the film came out on the cusp of sound being introduced, a song called Crossroads was introduced in it. It's not a bad number, but no credit is given to the boy and girl singing it in the soundtrack. I guess since they're not seen, it was felt no billing was necessary. Still I'd like to know and I'm sure you would to if you are fortunate enough to see Show People.<br /><br />It's easy to see why Marion Davies liked this film so much and considered it a personal favorite. She looks so at home in this film and her real life lack of pretense shines through in her performance which makes it a real treat for the audience.",1 +10922,"This is one of the best movies I have seen in a long time. All of you who regard this movie as absolute sh*t obviusly are not intelligent enough to grasp all of the subtle humor that this movie has to offer. It shows us that real life and ""ficticious"" action can produce a winning combination. Also, as a romantic comedy, it has one of the most clever ways for two people to find each other. Name me another movie where you can see all of that as well as Donald Sutherland singing a song like ""They're Going to Find Your Anus On A Mountain On Mars.""",1 +21737,"""John Hughes' son wrote a high school drama! Wow!"" I thought as I checked the flick's info here on IMDb, late on a Saturday night, having found myself watching the opening credits on BBC2.<br /><br />I've just finished watching it, and sadly it was downhill from there on. Arguably you can't spoil a film this poor, but I'll leave the spoilers out of this review... <br /><br />There's an awful lot of style over very little substance: unfortunately the style hasn't dated too well in the eight years since its release. As for the substance, the film tries to pose an interesting look at the nature of control in society through the microcosm of school-life; but beneath the shiny veneer, a remotely meaningful or relevant argument fails to materialise. Characters are painted in childishly broad strokes, falling into the kind of generic stereotypes the writer's father sought to question in Breakfast Club. <br /><br />Director Kyle Cooper does a decent job keeping the pace up (perhaps relying a little too much on montages of information, which soon becomes a tiresome device, but at least pushes the story along), but his efforts don't sufficiently detract from the poor script and bizarre casting (how anyone is supposed to side with 'Maddox', when Blake Shields gurns and glowers his way through the part, I just can't understand), not to mention the numerous gaping plot holes (I'm all for creative license, but when the ""bad guys"" know the identities of the ""good guys"" making their lives a misery, but fail to act in any way to stop them, you really have to wonder why this script didn't undergo another few re-drafts before production - did Daddy even read it?).<br /><br />I'm sure a younger audience might get some enjoyment from this film (and all power to them), but they're really better off sticking with Hughes Sr.'s high school output, and if the idea of school-time rebellion is what really appeals, the 1968 classic ""If..."" is a much more satisfying examination of the subject.",0 +4478,"This was an adorable movie. A real feel-good movie when you need one. The story is light (this is no Gone With the Wind) but sometimes, one needs this kind of plot. Funny and warm characters, fantastic acting and beautiful costumes/wardrobe.<br /><br />Parminder K. Nagra (also from the TV show ER) is WONDERFUL in this role. She is definitely a new shining star for Hollywood. All should keep an eye on her, she's going to be BIG in the future.<br /><br />Also impressing was the soundtrack for this movie. A nice mix of modern and Indian tunes. I was dancing throughout most of the movie.<br /><br />Highly recommended if a fun movie is what you need.",1 +5660,"Offbeat, slow-paced, entertaining erotic thriller with many graphic and ""blasphemous"" scenes that will undoubtedly disturb some viewers. However, it'll be hard even for them not to appreciate the several imaginative sequences this film contains, or to ignore Krabbe's first-rate performance. Verhoeven maintains an intriguing ambivalence throughout the film, playing with the meaning of the hero's visions-omens. Unfortunately, in the last 5 minutes everything turns into a blur, and the unsatisfying ending is certainly not as good as the rest of the movie. (***)",1 +9788,Starfucker (which reads Starstruck on my box) was the most amazing movie I have ever seen. I thought that it was one of the best movies I have ever seen. So why not a 10? Nothing is perfect. Jamie Kennedy proves why he is one of my favorite actors in this very interesting look at a darker side of Hollywood. I have forced a few others to watch the movie and they all agreed that it was an outstanding flick.,1 +67,"Wang Bianlian is an old street performer who is known as a 'King of masks' for his mastery of Sichuan change art. Liang is a famous opera performer of Sichuan art and respects Wang as an artist and as a person. Liang is worried that a precious art shouldn't die with Wang and so he sows the seed of an heir in to Wang's mind. The film is about prejudices, male domination, state of art, values and most importantly warmth.<br /><br />I can't recommend this film enough. The whole film is in loops. Everything has a significance. Its a long story which has been edited so well that the length of the film is just 91 minutes. A total satisfaction. For five minutes it is an artistic film, next five minutes its a sad film, next five minutes its a thriller. It just keeps changing its mood like its protagonist changes his face. Last scene on the rope is phenomenal. Story and script is flawless. Actors are brilliant. Both the protagonists are artists you can tell the way they have performed. Very impressive. It was not even nominated for Oscars. That year 'English patient' got the best film Oscar and in the foreign film category 'Kolya' won. 'Kolya' was just OK and about 'English patient' the lesser said the better. Watch it 9/10.",1 +10776,"A chance encounter between a salesman and a hit-man changes both their lives. This is an odd film that works, an impressive effort for writer-director Shepard. In a daringly unglamorous role that is a far cry from James Bond, Brosnan is surprisingly effective as the lonely hit-man who starts to buckle under the stress of his job, but is unable to connect emotionally with anyone to help him cope. Kinnear is equally good as the salesman, a decent fellow with a void in his life. Davis is fine as Kinnear's flirtatious wife. Mainly a character study, the film is rewarding because it feels fresh and unpredictable, an extremely dark comedy.",1 +13519,"Manmohan Desai made some entertaining though illogical films like AAA, PARVARISH and NASEEB but he made some craps like COOLIE and MARD and then GJS<br /><br />This movie is one of the worst movies ever made by him the dial became famous Mard ko dard nahin hota but the film is so bad you cringe<br /><br />The British are made carricatures and the film looks so weird The scene in the British hotel is damn stupid <br /><br />The film has many stupidities like Amrita assaulting Amitabh and then the entire scene plus towards the climax the film becomes even worse There are more gems like the horse statue getting life, The masks of Amitabh haha and more<br /><br />Direction by Manmohan Desai is bad Music is okay<br /><br />Amitabh does his part with style, nothing different from COOLIE, LAAWARIS type roles Amrita Singh is okay Satyen Kapuu is okay Prem Chopra is as usual, Nirupa Roy is again her usual self Dara Singh is also as usual",0 +20434,"Clearly rips off Hideo Nakata's Ringu (Ring, 1998) and Hongurai Mizu no Soko Kara (Dark Water, 2002), with hints of Ju-On (The Grudge, 2000), but atrociously done gore (a green corpse with red eyes!?) weak story, and a weak theme (I find it very difficult to find a picture message scary). There were two moments in this film that made me shudder, both involving an unexpected hand, and after Oodishon (another Miike Takashi one, this one from 1999) had me tingling all over for hours after seeing it, and all of the films this steals from were actually scary, I can't see this film as anything other than a sell-out to the western popularity of the big Japanese horror films. Two out of ten.",0 +17642,"I recently bought the DVD, forgetting just how much I hated the movie version of ""A Chorus Line."" Every change the director Attenborough made to the story failed.<br /><br />By making the Director-Cassie relationship so prominent, the entire ensemble-premise of the musical sails out the window.<br /><br />Some of the musical numbers are sped up and rushed. The show's hit song gets the entire meaning shattered when it is given to Cassie's character.<br /><br />The overall staging is very self-conscious.<br /><br />The only reason I give it a 2, is because a few of the great numbers are still able to be enjoyed despite the film's attempt to squeeze every bit of joy and spontaneity out of it.",0 +3839,"Your average garden variety psychotic nutcase (deliciously essayed with unhinged glee by Stephen Sachs) knocks off various dim-witted young ""adults"" (to use the term very loosely) in Dayton Hall University, which is being closed down for demolition. Featuring dreadful acting by the entire cast (Daphne Zuniga makes her ignominious and inauspicious film debut here as Debbie, a bimbo who has her head crushed by a car!), a hefty corpse tally of 10, okay make-up f/x by Matthew Mungle, a few bloody murders (baseball bat bludgeoning, chicken wire strangulation, your standard drill through the head bit, that sort of gruesome thing), a downbeat surprise twist ending which was later copied in ""Intruder,"" a creepy score by Christopher (""Hellraiser"") Young, a slight smidgen of gratuitous female nudity, and endearingly incompetent direction by Jeffrey Obrow and Steve Carpenter (who also blessed us with ""The Power"" and ""The Kindred""), this entertainingly abysmal slice'n'dice atrocity sizes up as a good deal of delectably dopey and drecky low-grade fun.",1 +15715,"Hands down the worst movie I have ever seen. I thought nothing would ever dethrone Last Action Hero, but this does easily. The movie is about 3 single guys who meet on Sundays to discuss their sexual escapades from the weekend. A fourth guy - who is married and - that used to be a part of the group shows up and talks about what he and his wife do. Nothing works in this movie. The jokes are not funny but they are repeated throughout the movie. The big kicker at the end of the movie is laughable. Avoid at all costs.",0 +17375,"I see people writing about how great this movie was. It was horrible! The acting was sub-par at best. It made a lot of money because teenage girls went to see the movie 7 times in the theaters because of Leonardo. Where the hell did they get the money? Anyway, I wanted to learn more about the Titanic; why it sank, what was running through a lot of people's minds; maybe even a little conspiracy stuff. Does anyone realize that certain people didn't even board the ship because there was a fire on board before it even took off? No, you don't because all you see is a rich girl falling for a poor boy and he paints her naked (did that corny junk at least tip you off that the movie was stupid?).<br /><br />I did cry in during one scene, though. The scene when they showed the water that was filling up in the ship. It looked like pool water! I'm thinking this movie made all this money and they couldn't even make the water from the ocean look real? unbelievable...<br /><br />Ohhh the band played on while the ship sank.. Just ridiculous. This was the worst movie until Pearl Harbor outdid it in the ""Nothing to Do With Reality"" department.",0 +19888,"I'm studying Catalan, and was delighted to find El Mar, a movie with mostly Catalan dialogue, at my art-house video store.<br /><br />Hmmm... not so delighted to have seen it.<br /><br />Yes, as other reviewers have said, it's well-made, and beautifully photographed. Although the opening sequence of the children is shockingly violent, it's well-acted and convincing. (For the most part, that is... Would the Mallorquins strip a corpse in preparation for burial right in the middle of the town square, in full view of the dead man's 10-year-old boy?) Oh, well... minor detail. Up to this point, it had something of the feel of a non-magical Pan's Labyrinth, also set in the Spanish Civil War.<br /><br />Fast-forward, and the three children who survived the opening incident have come of age. Francisca is a nun working at a tuberculosis sanatorium and the two boys, Manuel and Ramallo, both are patients. I know, but hey, coincidences happen.<br /><br />The problem, as with so many Spanish movies (apologies to Almodovar fans), is that with one exception (Francisca) the characters are just so dang *weird*. Their motivations, personalities, and dialogue are often simply incoherent.<br /><br />What's more, it descends into some horrific wretched excess. Be prepared for LOTS of pain and LOTS of blood. The reviewer who called it a ""potboiler"" is quite on track. If it had been made 40 years ago, the poster would've said: SEE FORBIDDEN LOVE!! RAPE!! MURDER!! MUTILATION!! FANATICISM!! ANIMAL CRUELTY!! BETRAYAL!! <br /><br />The opening sequence is not nearly enough to make the personalities and relationships of the characters believable. To work, this should have had multiple flashbacks to flesh out the characters. As it is, it seems a bizarre and depressing cross between ""Brother Sun, Sister Moon"" and ""Pulp Fiction."" If that sounds like something you've got to see, by all means, enjoy. I think I go with something that doesn't make me feel I need to take a shower to wash off the gore and gloom.<br /><br />As for the Catalan, it's the Mallorqui dialect, fairly different than the Barcelona dialect, though I was surprised by the comment that said that even Barcelonans apparently needed Catalan subtitles to understand it.",0 +8305,"This was the second of three films that Irving Berlin wrote for the Astaire-Rogers franchise and it has by far the largest score and is somewhat unusual in that two of the numbers are performed by Harriet Hilliard leaving the rest to be divvied and/or shared between the principals. As usual the storyline needn't detain us though for the record it was based on a play, Shore Leave, that also served as the basis for a Broadway Musical, Hit The Deck. Anyone who actually saw Shore Leave in the theatre may have been momentarily bemused inasmuch as the roles played by Fred and Ginger were created for the movie but what matters, as always, is the music, lyrics and hoofing and this is all out of the right bottle. It's a departure from the other titles in the franchise in that 1) we get to see Astaire play the piano - in real life he was an accomplished pianist and composed several songs, one of which, I'm Building Up To An Awful Let-Down, had a lyric by Johnny Mercer and spent a couple of weeks in the charts - and it is the only one of the series in which he played a serviceman, albeit an ex-hoofer who enlisted in the navy after being dumped by dancing partner Ginger before the story starts. He gets to perform a little-known but excellent Berlin number, I'd Rather Lead A Band as well as duetting on I'm Putting All My Eggs In One Basket but the ultimate number is the prophetic - in 1936 rumbles of World War II were already being felt - Let's Face The Music And Dance, one of the most potent ballads ever performed by the team. So what if Randolph Scott is a little wooden and fish-out-of-water without either a horse or a six-gun within easy reach and Harriet Hilliard doesn't exactly set the screen on fire; we came to see Fred and Ginger and the only question is, do they deliver. Answer: In spades.",1 +919,wonderful movie with good story great humour (some great one-liners) and a soundtrack to die for.<br /><br />i've seen it 3 times so far.<br /><br />the american audiences are going to love it.,1 +10701,If you like mech war games it's pretty good. Some of it is cheap but the robot fights is worth seeing. I've enjoyed the mech war field for some time and this is pretty much the only movie I've ever seen that come close to that feeling of what it would be like to pilot one of those huge mechs. If you like the genera then games you like are Mech Warrior Three and four and if you have an Xbox and $350 to spare Steel Battalion. The movie is worth seeing at least once. There really needs to be some more movies on the same theme out there. Less remakes and more original works. <br /><br />Enjoy,1 +165,"A sweet funny story of 2 people crossing paths as they prepare for their weddings. The ex-cop writer and the public school teacher fall for each other in this great new york setting, even though they are marrying other people. Maybe a little trite in that the ""partners"" are both type A personalities, while our protagonists are much more relaxed. Not anything heavy, but it made me smile. And hey for the guys - sell the Natasha Henstridge angle, and the gals - sell them the sappy romance, everyone wins!",1 +22305,"This was a quite brutal movie. There were huge implausibilities, and a silly script, bad acting, etc.<br /><br />The only reason to watch this movie is that from time to time some quite impressive sets of breasts were exposed.",0 +20366,"Drawing Restraint 9. dir: Matthew Barney.<br /><br />How do you know when you're in the middle of a pretentious art film? Is it that there is only 8 lines of dialogue in 140 minutes of film? Is it when Bjork is wearing what looks like a giant furry pita on her head in a pseudo-Asian ritual? Maybe when mammoth turds and spinal columns are used in a whale blubber experiment. Or, when you're about ready to kill the composer for making a minimal, and still annoying, version of a Philip Glass score? In any case, Drawing Restraint 9 is among the most pretentious of the modern art movies. At 135 minutes, it adds to its pretension by being boring to boot. I would call the use of color stunning, and the opening sequence interesting, but the rest of the movie looked like it was filmed for a Discovery Channel documentary. That is until it looks like they were trying to film their version of P-ss Christ, but that will be coming up later.<br /><br />Actually, the documentary-esquire portions were the best parts of it. The surface plot is about a whaling ship, and then there is a ritual about making whale fat. Then, there are the guests in the form of Bjork and Matthew Barney who are welcomed on the ship by being put through a ritual of humiliation which includes passed-out head shaving (think frat boy pranks), nicotine patches, and giant furry pita hats. Then there is mutual evisceration, cannibalism, and lets not forget the giant turd.<br /><br />Matthew Barney has written that this is about ""the relationship between self-imposed resistance and creativity."" That's almost like saying, ""if you don't get it, then you're not creative in your interpretation, so sod off because I'm an artist."" Oh, wait, that's the POST-modern interpretation of that sentence and what the movie would be about if it was POST-modern. But, its supposed to be Modern art. Which is about the art itself.<br /><br />So, let's start this whole interpretation bit, shall we? The following lines are only 3/4 serious and should not be taken as any realistic attempt to interpret the movie.<br /><br />The first half-hour concerns pearl divers and the construction of a giant ramp. Obviously, the ramp is symbolic of the need for self-elevation to whatever standards you hold dear, and the pearl divers are looking for pearls of wisdom. Then, on a whaling ship, they build a crate that looks like it is in the crude shape of a whale. Obviously a crude element of foreshadowing.<br /><br />On the ship, they make whale fat inside the shape of the whale, and take out the fins portion. They replace this with a spinal column and later a giant turd. These are supposed to be the states of the movie itself. When its fat, its entertaining but bad for you. When it is the spinal column, its the ""important"" parts of the movie, or the backbone so to speak. Then, the giant turd is the bowels of the movie, or when the movie is crap.<br /><br />Bjork and Matthew Barney the arrive on separate ships, are put into strange humiliating outfits which AREN'T EVEN WELL MADE OR SYMMETRICAL, one suspects that they ran out of money and Barney was trying to quit smoking. SO, they put patches on his head. They go through a ritual and learn about the ship from a Japanese wise man, who tells them that the ship is scarred from when another ship hit it; a crash or intersection, if you will. This inspires Bjork and Barney, who are different on the outside, to start cutting each other's legs off and eat them so they could turn into whales themselves and be the same person. They intersect. Oh, did I forget to mention that this has been done in a Robbie Williams video? Then, the pearl divers come back with their mouths full of pearls of knowledge which they let fall to make a stupid Venn Diagram. Barney made it through 8th grade geometry, obviously. Or, maybe at least some social studies.<br /><br />Oh, and did I forget Bjork's ear-gouging I-want-to-kill-her score? At times it is hypnotic, but at others you just want to assassinate her.<br /><br />Art film is one thing, but when you just throw up all sorts of symbolism in the hopes of getting a reaction out of people, it becomes a self-destructive joke. When do you cross the line between becoming a joke in terms of art? Dali and Bunuel frequently made surreal pieces of nonsense but were more coherent and/or entertaining than this piece of trash. Un Chien Andalou had the sensibility to cram as much symbolism as it could into less than half an hour.<br /><br />So, can I recommend this? Only if you like dull HIGH ART films with lots of symbolism and flat imagery.<br /><br />D+",0 +6644,"The story deals about Jet Li who has to fight against his old<br /><br />friends.But there is one problem, the friends are superfighters. The film is filled with blood, super action and the best stunts forever. And Lau Ching-Wan is a great Co-actor. Of course the movie has the typical HK-Fun.But I love it! In Germany ""Black Mask"" is uncut.",1 +14334,"Given that this movie was put together in less than a year might explain its shortness (81 minutes - including end credits, so roughly 76 minutes of actual film). But what it cannot explain is its lack of humor that the previous film possessed.<br /><br />The gags are quick and sometimes not even funny. The only true funny parts are the quick spoofs on the Nike basketball spots, James Woods' portrayal of Max Van Sydow's character in the Exorcist, and bits and pieces scattered throughout the film. Very unfunny was the take off of Charlie's Angels, which like the first Scary Movie and the Matrix spin off scene, basically recreated the scene without much humor injected into it.<br /><br />Today's youth might not be able to relate to the spoof gags of the classic supernatural horror films of the 70's such as the Exorcist and maybe of the 80s' Poltergeist, et. al.<br /><br />Hopefully Scary Movie 3 will take some time to put together, making the spoofs more enjoyable.<br /><br />One thing though, the film features more than the last one of promising young actress Anna Faris (whom I will admit seemed exceptionally hot in the sequel). Just for her casting and acting ability, I give this movie a ""3"" out of ""10"".",0 +16285,"Siskel & Ebert were terrific on this show whether you agreed with them or not because of the genuine conflict their separate professional opinions generated. Roeper took this show down a notch or two because he wasn't really a film critic and because he substituted snide for opinionated. Now, when Ben Lyons comes on I feel like I'm watching ""Teen News"" -- you know, that kids' news show, hosted by kids for kids? Manckiewitz is not much better. It's obvious they've encountered only a steady diet of mainstream films their entire lives. The idea that these two rank amateurs have anything of interest or consequence to say about motion pictures is ludicrous. If they are reviewing a non-formula film, they are completely lost. Show them something original and intelligent -- they just find it ""confusing"". Wait -- I think I get it ... ABC is owned by Disney ... Disney makes movies for kids. While Siskel, Ebert, and Roper promoted independent films and were only hit-or-miss with the big budget studio productions -- what a surprise: these two guys LOVE the big studio schlock and only manage to tolerate a few indies. Plus everyone knows the age group TV advertisers are aiming for. The blatant nepotism is the icing on the cake. In what alternate universe do these guys qualify as film critics?",0 +14282,"save your money. i have been a fan of fullmoon productions for a long time and i have never seen them make a movie as bad as this. the casting is terrible, the story is even worse and the special affects are worse than any movie iv'e seen sence the 80's. this movie is so bad i cant even suggest renting it.",0 +4594,"Cinderella is a beautiful film, with beautiful songs of course. In fact, it's one of the best films of the 1950's.<br /><br />I think all the characters are portrayed amazingly. You can see the cruelness of Cinderella's stepsisters and her stepmother, the sweetness of Cinderella. The mice are funny and sweet too.<br /><br />I think they changed the tale a bit, but I think it's for the best. It's such a nice film, and I don't think anyone could resist it deep down.<br /><br />I give it a 8/10. I don't think it's the best Disney film. But it sure is a true classic.",1 +19348,"I love a good sappy love story (and I'm a guy) but when I rented ""Love Story"" I prayed for the end to come as quickly and painlessly as possible and just the opposite for Ali McGraw's character.<br /><br />Ali McGraw as Jenny alienated and irritated the heck out of me within the first 15 minutes. When we learn that she has been diagnosed with a life threatening illness I couldn't help but wonder if her death would be such a terrible loss for poor Oliver or if anyone watching this film would even care. If she didn't die her grating personality would probably have pushed Oliver over the edge and eventually landed them in divorce court.<br /><br />People love this movie but it's one of the worst of the 70's.",0 +10698,"""The Matador"" is a dark comedy starring Pierce Brosnan as an aging hit man who befriends a straight-arrow, happily-married American businessman (Greg Kinnear) in Mexico. Although the sardonic Julian (ironically surnamed ""Noble"") appears to be a ""tough guy"" on the surface, underneath he is really just a mass of neuroses and insecurities, a man who realizes that his chosen profession has left him virtually alone in the world and friendless. Thus on his birthday, he reaches out to Danny, a man who has lived his life playing by the rules and who becomes strangely intrigued by Julian's ""unconventional"" lifestyle. In fact, both men find in each other the person they could never be but wish they could become in their quieter, franker moments of self-evaluation.<br /><br />Although the film is a bit too reminiscent of ""Analyze This"" and ""Midnight Run"" to feel entirely fresh and original, ""The Matador,"" nevertheless, earns points for the complexity of its characters and the quality of its acting. Brosnan, looking aged and almost used up, sinks his teeth into the role of Julian in a way he never has before. Playing a man who seems constitutionally unable to make a serious connection with another human being, Brosnan is flip and cavalier one moment, then genuine and sympathetic the next. He always keeps us off balance so that the humor never becomes crass or stale. Kinnear is also excellent as the Regular Joe businessman who finds himself pulled ever more to the Dark Side as his relationship with Julian deepens. Hope Davis does a fine job as ""Bean,"" Danny's loyal and loving wife who, like her husband, finds herself intrigued by this mysterious and ""dangerous"" figure from a world far different from the one she knows.<br /><br />At times, we find ourselves feeling that ""The Matador"" is holding something back from us, not quite plumbing the depths of its situation and premise. At the end it feels a little too light, a little too insubstantial to register the impact it should. This could be because this is the feature film debut for writer/director Richard Shephard, and he hasn't quite gotten his movie pacing down yet. Still, one appreciates the fact that he doesn't always go for the obvious and that he keeps tightly focused on the two main figures in the piece, rarely settling for the trite setup or the easy laugh.<br /><br />'The Matador"" is a flawed but generally entertaining little comedy that will, hopefully, signal a new phase in Brosnan's acting career.",1 +13299,"A very weak movie, mainly because of a poor story, but also poor acting in the case of Robert Downey Jr., and irrational behaviour by many of the characters. If you are someone who likes to switch your mind off and simply watch a movie for it's creativity or acting criteria, then you may like this movie. Personally I can't do that with a drama and found this too far-fetched.<br /><br />I'm particularly annoyed when a main character, that is supposed to be an intelligent person, continually acts like a complete imbecile. In this movie, if the main character acted the way a person would normally act in these situations, there would be no movie.<br /><br />The first highly unlikely act is when the main character, a successful attorney named Magruder, played by Kenneth Branagh, is leaving a party and happens upon a girl, Mallory Doss played by Embeth Davidtz, who is screaming that her car has been stolen. They are standing around in a tropical rainstorm as he badgers her into accepting a ride home.<br /><br />She tells him about her weird father who belongs to some kind of weird sect and does crazy things. When they arrive at her dilapidated shack in the poorer part of town, they notice that her car is in the driveway. Also the house lights are on and some objects in the house have been broken.<br /><br />Things are very odd, she's weird (looking like a tramp, she undresses in front of him until she's completely naked oh yeah!). Also, the father's strange, the house is a wreck -- everything should have told Magruder, ""hey this is too weird for me, I'm out of here!' But not Magruder, he sleeps with her and then, motivated by her story and sex, takes up the case of trying to have her father committed. It all screams set-up!<br /><br />Then, being the top-flight attorney that he is, he arrives late at the office wearing the same shirt he had on the night before, (a fact that all of the women in the office notice). Is it likely that a successful attorney would act like a 16-year-old? Magruder has upset the police in some of his cases so when he goes to the police claiming, with ample evidence, that the father is terrorising them, the police ignore him. I could have believed begrudging assistance. But no help at all -- not likely!<br /><br />It's just too unlikely.",0 +2850,"I have seen this movie more than several times, on TV. I ALWAYS watch it again...NEVER turning the channel. This movie is full of chilling surprises, and absolutely edge-of-your-seat suspenseful, without being overbearing or stupid. Helen Hunt's talent is magnificently shown in this movie! I recommend this movie to anyone!!!",1 +19212,"Phantasm ....Class. Phantasm II.....awesome. Phantasm III.....erm.....terrible.<br /><br />Even though i would love to stick up for this film, i quite simply can't. The movie seems to have ""sold out"". First bad signs come when the video has trailers for other films at the start (something the others did not). Also too many pointless characters, prime examples the kid (who is a crack shot, funny initially but soon you want him dead), the woman who uses karate to fight off the balls (erm not gonna work, or rather shouldn't) and the blooming zombies (what the hell are they doing there, there no link to them in the other Phatasms). Also there is a severe lack of midgets running about.<br /><br />The only good bits are the cracking start and, of course, Reggie B.<br /><br />(Possible SPOILER coming Up)<br /><br />To me this film seems like a filler between II and IV as extra characters just leave at the end so can continue with main 4 in IV.<br /><br />Overall very, VERY disappointing. 3 / 10",0 +12638,"there is no suspense in this serial! When one episode ends the acting is so shoddy, the effects are so poor and the script is so awful that the last thing on your mind is how Batman and Robin will save the day. No, in fact, the last thing on your mind is watching the next episode! This show is so boring that I can't see how it ever got made, let alone released on DVD! Obviously the effects are not up to par with contemporary Batman films, but even the script is awful. An incoherent babbling mess about some evil professor and a ray gun or something like that, I am not quite sure, because it is too awful to follow. Watch the 60s version, or the 90's versions, or even Batman Begins, just anything over this version!",0 +24886,"Okay so i found out about this movie and I watched the preview read almost all the reviews and was having a hard time debating whether I should watch it or not. Before i even watched the movie i was emotionally weird on it. i was so unsure if i was going to watch this and be disturbed for like a long time. So i choose to risk it and watched it and heres what i thought: The beginning started off fine for me. It seemed to be heading in a decent direction. Got past the rape scene and i couldn't figure why people were so disturbed or bored by the movie. Don't get me wrong the rape scene was just as sad and scary but it didn't really bother me to a dramatic point. Then as the middle came in i understood the boring stuff that was going on. There was like 5 minutes shots of nothing but people walking around saying or showing nothing! its one thing to have a shot where a person is showing some kind of emotion but this movie didn't have that. It had about 3 of these pointless scenes, where you see the main character Maya kind of get out of control but it didn't show it right making me want to fast forward. Then when she engaged in the hardcore partying it wasn't so boring but still a little dull. Oh and as a note Rosario Dawson still did a great job. Okay moving on so finally after an hour of pointlessness to the middle the revenge comes to Maya's attention. Thats where it got disturbing. I didn't feel bad for him or nothing he got what he deserved but the whole scene was really disturbing and i just felt all eck after it. I cant really tell you whether or not to watch this movie because its so...i don't know i cant find a word to sum it up. But if you choose to watch it just don't be unsuprised.",0 +4460,"This is the French and Belgians doing what they do best. It's quirky, visually inventive, exhilarating and emotionally challenging storytelling. Director Jaco van Dormael takes us into the world of Georges, a Down's Syndrome sufferer and his quest for a meaningful relationship with someone, just anyone. This is not done in a patronising way but with a great sense of fun and also honesty. Georges' interplay with corporate management guru, Harry is dazzlingly handled - shifting from comedy to tragedy back to comedy again with breathtaking ease.<br /><br />The Eighth Day puts similar Hollywood fare like Barry Levinson's Oscar winning Rain Man or Robert Zemeckis's Forrest Gump well and truly in the shade. At times, it evokes the humour of Milos Forman's One Flew Over the Cuckoo's Nest with shades of Dennis Potter thrown in for good measure.<br /><br />As the emotionally blunted and desperately lonely yuppie, Harry, Daniel Auteuil turns in yet another sublime performance. But it is matched by the brilliant Pascal Duquenne as Georges. It's a movie with uniformly strong performances and so many, memorable set pieces - the shoe shop scene, car showroom scene, George's dance to Genesis's 'Jesus He Knows Me,' the conference scene, the fireworks scene. If you haven't seen it, there's only one thing to do. Just rent it or attend a screening at a retro cinema near you and see what you've been missing. Better still, buy this movie. Sheer genius.....",1 +21650,"I'm all for the idea of a grand epic of the American Revolutionary War. This ain't it. (And for that matter, neither was the Emmerich/Devlin/Gibson THE PATRIOT. But I digress.)<br /><br />I saw this film at a publicity screening at the old MGM Studios (now Sony) just before it came out. The audience had high expectations for this expensive period piece, written by veteran Robert Dillon, directed by the esteemed Hugh Hudson (of CHARIOTS OF FIRE fame), and starring Al Pacino.<br /><br />But it didn't take long for people to start squirming in their seats, whispering derisive comments about Pacino's horribly misconceived accent -- he was supposed to be an American frontiersman of Scottish ancestry(!) -- and that of Nastassja Kinski, who was supposed to be recently emigrated from England(!!). Then the story started and it all went downhill fast.<br /><br />Motivations were muddled, dialogue was atrocious, events had no historical or political context. What there was of a plot lurched forward on absurd coincidence; by the second or third time that alleged lovers Pacino and Kinski stumbled into each other it had become a bad joke. Donald Sutherland gave an unhinged performance as a British officer/pederast. His accent was all over the map too. I guess there weren't any English actors available.<br /><br />Lots of people left. Those who stayed tried to stifle giggles, then openly guffawed. I stuck it out -- I figured that at least the battle scenes might be good. I was wrong. Inexplicably, Hudson chose to film them with hand-held cameras, not even Steadicam, the jerkiness giving a misplaced newsreel 'authenticity' which ruined the sense of scale.<br /><br />There was a semi-famous TV reviewer in the audience a few rows ahead of me: (the late) Gary Franklin of Channel 7 Eyewitness News. I could tell he was peeved by the behavior of the rest of us. And sure enough, on his TV segment the next day he gave the film a '10' on his notorious 'Franklin Scale of 1 to 10', while remarking churlishly about the louts who'd disrupted the screening the night before, who clearly didn't know art when they saw it. What a buffoon.<br /><br />After this disaster, Pacino didn't star in another film for almost 4 years. Hugh Hudson's career never recovered. You can't say I didn't warn you.",0 +14908,This movie was bad from the start. The only purpose of the movie was that Angela wanted to get a high body count. The acting was horrible. The killings were acted out very badly. Like when Ally got stuffed down that toilet I guess it was in the abandoned cabin. But when the end of the movie comes and Molly and the other guy are in the cabin you see Ally so Angela must have gone in to get her. The part that really got me was when the black girl and Angela were in the cabin and Angela took the guitar string and chocked her. One it was horrible acting and two why wouldn't you just turn around and punch the bitch?!?!? Then when Molly is getting chased by Angela if you have the neigh why not just turn around and stab her??? So stupid. This movie sucked...,0 +6623,"Oh, what fun there is here! <br /><br />Amy Heckerling has a flair for directing comedy (Fast Times at Ridgemont High, Look Who's Talking) but here it looks like she told the actors to go out and have fun. Micheal Keaton breezes through the role of Johnny, easily his best screen performance. Joe Piscopo is great as the appropriately named Danny Vermin, what a shame directors didn't pick up on this. And I have even mentioned Richard Dimitri playing Moronie and the character's unique vocabulary. I don't think it's an accident that the bulk of the character's name is spelled MORON.<br /><br />Good lines are sprinkled throughout the movie, with Peter Boyle, Griffit Dunne.Maurren Stapleton, Merilu Henner given good lines. Even actors with minor roles like Dick Butkus and Alan Hale get in a good lines.<br /><br />recommend it to a friend.",1 +9306,"This movie resonated with me on two levels. As a kid I was evacuated from London and planted on unwilling hosts in a country village. While I escaped the bombing and had experiences which produced treasured memories (for example hearing a nightingale sing one dark night for the very first time) and enjoying a life I never could have had in London, I missed my family and worried about them. Tom is an old man whose wife and child have both died and who lives alone in a small country village.As an old man who is now without a wife whose kids have gotten married and live far away in another province, I am again sometime lonely. The boy's mother is a religious fanatic with very odd ideas of raising a child. Since a deep affection has grown between old Tom Oakley and this young lad, Tom goes in search of him and finally rescues him from very odd and dangerous circumstances. At the end of the story there is great tension since due to some bureaucratic ruling it seems that the child is going to lose someone who has developed a loving relationship with him.",1 +23025,"Definitely, definitely the worst film I've ever seen, no questions asked! Contradictors of this opinion might argue that this title should not be judged by the same criteria as others, since it's an independent, low-budget film, but c'mon already the amateurism and meager innovation is horrifying.<br /><br />Agreeing with everything that has been said about this film, for example the mind numbingly weak acting (when it's this bad you take another go at shooting the scene, god damn it), the thing I found the most annoying was the total lack of common sense in the script, assuming such a thing existed during the production. There was an obvious absence of a dialogue with respect for the viewers, the girls switched personalities several times and they seemed to show absolutely no sing of any rationality or even brains - five relatively fit girls against one slight female psychopath gang up on her, why don't you?<br /><br />The only thing that can be regarded as somewhat of a conquest for this title is the camera not leaving the van at any time thus the viewer seeing everything from inside it - which is, as the rest of the film, a good idea executed exponentially dreadfully.<br /><br /> oh and by the way, this movie is NOTHING like The Blair Witch Project or Cloverfield or any other title filmed with a hand-held camera this is an effect and not a trait! Used cleverly it can be breathtaking, but in this case it's an excuse for inadequate cinematography.",0 +8490,"This independent, B&W, DV feature consistently shocks, amazes and amuses with it's ability to create the most insane situations and then find humor and interest in them. It's all hilarious and ridiculous stuff, yet as absurd as much of the film should be, there is a heart and a reality here that keeps the film grounded, keeps the entire piece from drifting into complete craziness and therein lies the real message here. This film is about how we all survive in a world gone mad. That seems to be the heart of the film. For as insane and off the wall as things get, Leon, the 30 yr. old paperboy-protagonist, always tries to keep it together. He's like a child forever trying to catch the balloon that is floating away so that everything will work out for the best, so that everyone can have what they want.<br /><br />The acting in the film could have went far over the top but the exceptional cast really keeps the piece cohesive. Van Meter is perhaps the best of the bunch here with a performance that shines through her absurd diseased tics. Just as the characters in the film do, we overlook her sudden outbursts to see the real person underneath. <br /><br />Majkowski is a true genius here. He takes the utmost ridiculous plot twists and keeps them real. It is his script and his cast that help keep the whole thing afloat. It's a true testament to the skill of Majkowski and all involved that this film, with it's grating plot and characters, never once works our nerves. Majkowski has taken a film that could have been abrasive and repugnant, and somehow given it heart and humor. This is a unique film. Not to be missed. <br /><br />",1 +9867,"Kurt Russell's chameleon-like performance, coupled with John Carpenter's flawless filmmaking, makes this one, without a doubt, one of the finest boob-tube bios ever aired. It holds up, too: the emotional foundation is strong enough that it'll never age; Carpenter has preserved for posterity the power and ultimate poignancy of the life of the one and only King of Rock and Roll. (I'd been a borderline Elvis fan most of my life, but it wasn't until I saw this mind-blowingly moving movie that I looked BEYOND the image at the man himself. It was quite a revelation.) ELVIS remains one of the top ten made-for-tv movies of all time.",1 +2735,"Noni Hazlehurst's tour-de-force performance (which won her an AFI award) is at least on par with her effort in FRAN three years later. Colin Friels is also good, and, for those who are interested, Alice Garner appears as Noni's child, and Michael Caton (best known for THE CASTLE) is a bearded painter. (Also interestingly, Hazlehurst is currently the host of lifestyle program BETTER HOMES AND GARDENS, and Caton is the host of property-type programs including HOT PROPERTY, HOT AUCTION, etc...) This film reaffirms the popularly-held belief that Noni was arguably Australia's top female actor during the early-to-mid 1980s. Rating: 79/100.",1 +5669,"I don't know if I'd consider it a masterpiece of not, but it's damn near close; it's extremely well made, artistic, suspenseful, intricately plotted, thematically challenging and full of bleak foreshadowing and sexual-religious imagery. There's also some great camera-work from Jan de Bont, an atmospheric score from Loek Dikker and outstanding acting from Jeroen Krabbé and Renée Soutendijk, the latter giving one of the most sneaky, subtle 'femme fatale' performance I've ever seen. Like many other European movies, this movie has an unashamed, non-judgmental attitude toward sex, nudity and the complexities of sexuality and has zero reservations about mixing it all up with religious and/or surrealistic (some would say blasphemous) images. In other words, if you can't bear the thought of seeing a lust-driven homosexual envisioning the object of his carnal desire as Jesus crucified on the cross before the two of them go at it inside a cemetery crypt then this might not be the movie for you. What surprised me more is how this bizarre movie managed to completely dodge being a pretentious mess. It mixes the abstract/surreal/parallel fantasy-reality scenes and somehow makes it all work. Like any good mystery, you can see the pieces slowly falling into place as the movie progresses. There is NOT an out-of-left-field resolution here. The movie has direction, there's no needless filler and once it concludes, you begin to understand the purpose of what may have confused you earlier. If you like the work of Ken Russell and David Lynch, I can almost guarantee you will love this movie. Hell, if you have no idea who they even are, you still might like it.<br /><br />I'm not going to spoil the plot by getting too detailed, but the film's opening shot - through a web as a spider catches its prey - sets the stage as Krabbé, as unshaven, smug, bisexual writer Gerard Reve (interestingly, also the name of the writer whose novel this is based on) crosses paths with a wealthy, mysterious, sexy woman named Christine (Soutendijk, melding androgynous stylings with Simone Simon-like innocence/cuteness that's pretty unnerving), who may be a literal 'black widow' responsible for the deaths of her three previous husbands. The two become lovers and move in with one another, but we're led to believe (through Christine's bizarre behavior and the frequent appearances of another woman - played by Geert de Jong - who may or may not actually exist) something terrible is boiling under the surface. When another of Christine's lovers, the young and ""beautiful"" Herman (Thom Hoffman), shows up at the house, things take an unexpected turn. And that's all you need to know.<br /><br />THE 4TH MAN was a huge art-house success in much of the world, but didn't make it over to the US until 1984, where it was awarded the Best Foreign Film of the year from the Los Angeles Film Critics Association. The most common video is the Media release, which has been horribly dubbed. Try to avoid that one and head straight for the newer subtitled Anchor Bay DVD release. Since coming to America, Verhoeven's career has had its ups and downs. He has made a few decent films (Flesh & Blood, RoboCop) and some lousy ones (Showgirls). In fact, Verhoeven's big hit Basic Instinct is almost like a less interesting, junior league version of The Fourth Man. Soutendjik also tried her hand at acting in America and since GRAVE SECRETS (1989) and EVE OF DESTRUCTION (1991) were the best offers she was getting, she headed right back home to the Netherlands.",1 +12031,i would never have thought that it would be possible to make such an impressive movie without any music. but it is. just the pictures. watch out for that picture: anne talking with that little boy benny 'bout the soul. really strong. might make you feel different.,1 +23737,"The Howling II starts as it means to go on with a bizarre and surreal opening narration by Christopher Lee whose image is imposed over a moving star field, oh and a skeleton appears as well for some reason. He says ""for it's written the inhabitants of the Earth have been made drunk with her blood. And I saw her sip upon a hairy beast and she held forth a golden challis full of the filthiest fornication's and upon her forehead was written, behold I am the great Mother of #an inaudible word I couldn't make out no matter how many times I rewound the tape and tried to, sorry# and all abominations of the Earth"". This opening narration means nothing at all and is just downright bizarre. After the opening credits which are set over shots of Transylvanian architecture we get an on screen caption that informs us we're in 'Los Angeles, California U.S.A. City of the Angels'. I knew I was in for a long 86 minutes. It's probably not too long after the events of the original Howling (1981) and it's Karen White's funeral. After the ceremony Karen's brother Ben (Reb Brown) is spoken to by an 'occult investigator' called Stefan Crosscoe (Christopher Lee) who says that Karen is a Werewolf and that she will come back to life. Ben dismisses such nonsense. But together with one of Karen's friends and colleagues Jenny (Annie McEnroe) he visits Stefan at his home. There Stefan tells them about Werewolves and how they can be killed, he mentions Stirba (Sybil Danning) who is the queen of Werewolves. Stefan also shows them a photograph taken at Karen's funeral of a woman named Mariana (Marsha A. Hunt) and that she is an extremely vicious and dangerous Werewolf who wants Karen. Stefan says he will stake any Werewoves through the heart with titanium. Ben figures out that Stefan means he will stake Karen as well so together with Jenny he travels to the graveyard where his sister's crypt is to stop Stefan. However lots of Werewolves turn up and attack Stefan, Ben and Jenny. They survive the attack and manage to find out that Stirba is to be found in Transylvania. They all decide to travel to Transylvania and stop Stirba and her Werewolves from taking over the Earth by fulfilling a centuries old curse. Once there they travel to a small town called Vlkava which means 'where wolves live' and meet up with the local priest, Father Florin (Ladislav Krecmer) and his small but loyal group of Werewolf hunters, hey what else can I call them? Oh, and a dwarf named Florica (Ludmila Safarova) helps too. They follow Mariana who they hope will lead them to Stirba. But Stirba knows of Stefan's arrival and has plans for him Ben and Jenny. Will Stefan be able to put an end to Stirba's plans for world domination? Will this film get any more bizarre or surreal? Watch it and find out. Directed by Philippe Mora this is one strange mess of a film. It's poorly edited as certain sequences just jump around incoherently. The single biggest problem is the script by Robert Sano and Gary Brandner based on his novel which is all over the place and doesn't make any sort of sense or introduces us to any proper characters that we like. Luckily it moves along like a rocket and is never dull or boring, unlike the original. Something strange or bizarre is always happening to keep the viewer entertained. Most people will probably hate it, but for those of us who enjoy 'bad' films this is right up there with the best of them. There are Werewolf orgies which are just freaky to watch. We get some cool Werewolf killing weaponry. The sets and locations just seem so out of place and I don't know if this was actually shot in Transylvania but it doesn't look like what I thought mid 80's Transylvania would. Stirba's castle is part dungeon, part Gothic castle and part modern luxury house. Stirba and her servant's costumes are very over-the-top, Stirba wears an outfit that looks like it belongs in a S/M video and to be fair to her she looks pretty sexy, and her minions wear skimpy leather clothing too. The special make-up effects range from good to poor, a dwarf's eyes explode, someone has their hand ripped off and a priest has some creature emerge from his mouth but this isn't a film loaded with gore, although there are plenty of effect sequences with Werewolf transformations and attacks. There is plenty of nudity as well as Stirba and her minions are a real randy bunch of Werewolves! I should also mention the music, the soundtrack is dominated by awful rock music that I hated and I ended up turning the volume down. Acting is weak all round and what on Earth was Christopher Lee thinking about when he accepted this film?! I wonder what he thinks of it. Basically the whole thing is a real mess, but I found it a fairly entertaining mess all the same. Impossible to recommend but it kept me watching through to the end. Speaking of which the end credits run over what appears to be deleted scenes and cut footage, it also features the same shot of Sybil Danning taking her dress off and exposing her breasts probably in excess of 20 times! If that's your thing.",0 +2378,"**SPOILER ALERT** W. Somerset Maugham classic on film about a love obsessed young man who's abused hurt and humiliated by the object of his obsession to the point of losing everything he has only to find true love in the end under the most unusual circumstances. <br /><br />Leslie Howard plays the role of Philip Carey a sensitive young artiest in Paris trying to make a living by selling his paintings. Told by a local art expert that his work is not at all good enough to be sold to the art going public Philip decides to go back to his native England and study medicine and become a physician in order to help others. <br /><br />Philip being born with a club foot is very hypersensitive about his awkward condition and makes up for that by being a very pleasant and friendly person. One afternoon Philip is at a local café with a fellow medical student and spots pretty waitress Mildred Rogers, Bette Davis, and immediately falls in love with her. Mildred at first rebuffs the love-sick Philip but later realizing just what a sap he is takes advantage of his feelings for her. Mildred has him spend himself into poverty buying her gifts and taking her out to the theater every time she off from work. Phlip also falls behind on his studies, by paying so much attention towards Mildred, at the medical university and fails his final exams. <br /><br />Going into hock buying an engagement ring for Mildred in an attempt to ask for her hand in marriage the cold hearted Mildred tells the startled Philip that she's already engaged to be married to Emil Miller, Alan Hale. It turns out that he's one of the customers at the café that she's always flirting with. <br /><br />Philip broke and heart-sick slowly get his life back together and later retakes his medical exam and passes it and at the same time finds a new love in Nora, Fay Johnson, a writer for a local love magazine. Later to Philip's shock and surprise Mildred walks back into his life. <br /><br />Mildred telling Philip that her husband Emil, who's child she's carrying, threw her out of the house has the kind and understanding Philip take her back at the expense of Nora who was very much in love with him. It later turns out that Mildred wasn't married to Emil but had a child out of wedlock by having an illicit affair with him! Emil it turns out was already married. <br /><br />As before Mildred takes advantage of Philip's kind heart for her and her baby daughter, where he supports them with food medical attention and shelter, to the point where he again goes broke and can't continue his studies ending with her leaving Philip; after having a very heated and emotional encounter with him. Out on the streets with nowhere to go Philip is taken in by Mr. Athanly, Reginald Owens, who he once treated at the hospital and falls in love with his daughter Sally, Frances Dee. <br /><br />Later Philip has his club foot corrected at the medical center and with the help of Mr. Athenly gets back to being a doctor. It's then when he encounters Mildred again who's really at the end of her rope. Dying of tuberculosis and having lost her daughter she's all alone with no one to look after her. Philip now well to do and respected in medical circles does all he can to help the sick and poor Mildred but in the end she succumbed to her illness and passes away.<br /><br />Mildred had the love and devotion in Philip all those years that he was in love with her but choose to abuse him and have affairs with man who were just like her, cold unfeeling and selfish. In the end Mildred got back just what she gave to the kind and sensitive Philip: She became both unloved and alone. Philip found in the sweet and caring Sally everything that Mildred wasn't and in the end also found the true love that he was looking for all of his life.",1 +15623,"Whoever gave this movie rave reviews needs to see more movies.<br /><br />A loser takes his camera and photographs his mental family. The movie is filled with idiots and includes live ""teabagging"". That should sum it all up for you.<br /><br />Do not waste your time. You may want to watch the entire movie in the hopes that it gets better as it goes on - it doesn't!",0 +4172,"Many people judge it as a fan service film because a lot of super star starring in this movie (Gackt, Hyde, and Wang Lee Hom is very famous singer in Japan). But don't judge it before you watch, is what I say. Gackt and staff are very serious when made this film, and they worked so hard. It's a good film with a touchy story inside. Several scenes can be so fun and some others are so sad. They made it so good until I can't stop watching this all over again. <br /><br />The story has written pretty well but I admit that their act are little disappointing. This is especially for Hyde because his skill of acting is under from the other and it is weird to hear the way when he speaks with other language except his native language (Japan). But, it's comprehensibility because this is their first time to act in the movie.<br /><br />I think Gackt trying to show us about how someone can be so weak when they lose the most important person in their life. When Toshi was killed, when Sho asked Kei to turn Yi-Che to being vampire like him because he won't let her die, When Sho's Brother died, Kei Shoot Son die, and the best and beautiful scene is When Sho pass away~ even I told that Hyde's skill is still weird but I give him two thumps up at that scene!!<br /><br />There's a time where The plot goes too fast like they didn't tell the reason Why Son can join the local mafia and being Sho's enemy because they are a good friend at the past and also Son is Sho's brother in law.<br /><br />Whatever, I love this movie~ (very much ^^). <br /><br />This is an action movie with a touching beautiful story.",1 +12391,"Wow, praise IMDb and Google, for I have been trying to remember the name of this f'ing awesome movie for over 15 years now. Slaughter High, man! Hells yeah!<br /><br />I'm not going to bore you with a plot summary, and actors, and yadda yadda yadda, 'cause you all know what's up. That's why you're here anyway. What I will do, however, is explain the fond memory I have of this quintessential 80's D-Movie slasher joint.<br /><br />In 1987, when I was around the age of 7, my father used to rent all these horror movies. Would he care that his kids were watching them with him? No. So, at that young age i saw Slaughter High. What I saw in that movie stuck with me big time. I haven't seen it since, but I remember to this day most of the ridiculous kills in the movie. For example, the post-sex scene (why is there a metal bed in a school?) gets electrocuted. Or, the guy being drowned in a cess pool. Come on! My personal favorite, though...the exploding stomach from the tainted beer. Amazing! How can you honestly hate on a movie where one of the characters finds a beer in an abandoned school, like, 10 or 15 years later and thinks it would be a good idea to drink it? Then his stomach explodes? What!? And that great line: Let's take my car...it always starts. Classic crap all the way. <br /><br />I mean, I look back now, almost 20 years later, and laugh at it. But when I was 7, I was scared sh!tless. That jester hat (or was it a mask?) that the killer rocks throughout freaked me the f*ck out!<br /><br />All in all, yes, a crappy movie. But for nostalgia purposes and for humor factor this movie gets a 9 out of 10 from me. Either stay up every night real late and hope to catch this on same Late Late Late Movie show, or hunt down a VHS copy and dust off your VCR.",1 +12742,"**Spoilers contained**<br /><br />I'd heard from various sources that this film was controversial and that the ending in particular was horrific. What I didn't expect was the complete change in tack with about twenty minutes to go. What starts off as a typical cowboy/indian western suddenly descends into a very dull romantic 'comedy' about Honus (Soldier Blue of the title played by Peter Strauss) and Cresta (Candice Bergen) who escape an onslaught of the cavalry by the Cheyenne. The majority of the film then focuses on these two mismatched people hence the romantic comedy bit. Donald Pleasance then turns up and abducts them both for no real apparent reason. They then escape and both turn up (separately) at the cavalry base on the eve of an attack on the Cheyenne base. As Cresta used to be married to one of the Cheyenne chiefs she escapes the cavalry base and joins up with them. So far so ordinary. Then comes the ending. After enduring well over an hour of poor acting involving a cliched will they/won't they get together storyline, the movie then transforms into over the top exploitation involving among other things a decapitation and a child being shot in the back of the head. Similarities can be drawn with the Wild Bunch at this point of the film but the Wild Bunch kept the same tone throughout and didn't resort to extreme gratuitous violence. In some ways, Soldier Blue reminds me of Frank Perry's Last Summer which also completely changed tack for a shock ending. I didn't hate Soldier Blue nor find the ending particularly disturbing but just found it to be pretty dull with an unnecessarily violent ending. If you want to see a film with a truly disturbing slaughter of the innocents, I would recommend Elem Klimov's Come and See.",0 +16103,"This film, originally released at Christmas, 1940, was long thought lost. A very poor copy has resurfaced and made into a CD, now for sale. Don't buy it! The film is unspeakably terrible. The casting is poor, the script is awful, and the directing is dreadful.<br /><br />Picture Roland Young singing and dancing. And that was the highlight.<br /><br />Perhaps this movie was lost deliberately.",0 +20444,"Young and attractive Japanese people are getting on the wrong side of some curse again, this time it involves mobile phones. Various people die until the disgruntled spirit behind it all is unearthed, so essentially if you've seen more than 2 recent Japanese horror films you can plot this film in the dark with your hands tied.<br /><br />The main attraction here is the fact that Takashi Miike is behind the camera. So far I've been more impressed with his low key works like City of Lost Souls, however as One Missed Call plodded along I was yearning for his more renowned envelope pushing of Dead or Alive or the overly pseudo-Cronenberg style of Audition. Despite a lot of his films being essentially empty, at least they do have merits such as these, or at least something to keep your attention like Tadanobu Asano prancing about in shiny suits impersonating Johnny Depp. There's none of that in One Missed Call; there's just very little of credit: the acting is bland and average, there is very little (nothing, in all honesty) in the way of scares or suspense, and in places it's just downright boring.<br /><br />However, there are moments where Miike's glacier-like sense of humour seeps through the bland commercialism; most notably with the instance of the TV show intent on filming the demise of one of the cursed subjects, and the TV programmer more concerned about his ratings than the girls' life. But aside from this there is nothing to suggest it is Miike behind the camera; most notably his usual visual flair has vanished without a trace (and that includes his famous gore), although it's more likely he just didn't have any enthusiasm for the project, and I can understand why. One Missed Call isn't offensively bad. It's just frustratingly average.<br /><br />Miike obviously loves directing. With his huge yearly output it's obvious he isn't going to be 100% concerned about all his projects. But even with this in mind, One Missed Call felt like he was just paying the bills.",0 +14010,"I haven't read a biography of Lincoln, so maybe this was an accurate portrayal......<br /><br />And maybe it's because I'm used to the equally alienating and unrealistic worshiping portrayals that unnaturally deify Lincoln as brilliant, honorable, and the savior of our country......<br /><br />But why would they make a movie representing Lincoln as a buffoon? While Henry Fonda made an excellent Lincoln, his portrayal of him as an ""aw shucks, I'm just a simple guy"" seemed a little insulting.<br /><br />[Granted, that was Bushie Jr.'s whole campaign, to make us think he was ""just a regular guy"" so we wouldn't care that he's a rich & privileged moron -- but that's a whole other story.]<br /><br />Not only did the film show Lincoln as sort of a simple (almost simple-minded) kind of guy , the film states that Lincoln just sort of got into law by accident, and that he wasn't even that interested in the law - only with the falsely simplistic idea of the law being about rights & wrongs. In the film he's not a very good defense attorney (he lounges around with his feet on the table and makes fun of the witnesses), and the outcome is mostly determined by chance/luck.<br /><br />Furthermore, partly because this was financed by Republicans (in reaction to some play sponsored by Democrats that had come out) and partly because it was just the sentiment of the times, the film is unfortunately religious, racist and conservative.<br /><br />Don't waste your time on this film!",0 +365,"Trio's vignettes were insightful and quite enjoyable. It was curious seeing so many soon to be famous actors when they were very young. The performances and attention to detail were wonderful to watch.<br /><br />Observation. In film it isn't necessary that source material be in alignment with the contemporary era to be interesting or worthwhile. ""Small morality"" storytelling is quaint (or coy) only in the eye of the beholder--thankfully. Story content--well told--can overcome it's time, subject or place.<br /><br />Ironically, there are quite a few contemporary films today that have not overcome the conventions or cutting edge mores of the present era. Inserting ""small morality"" content--occasionally--might provide a dimension lacking.",1 +2103,"A truly adorable heroine who, at turns, is surprised and terrified by giblets, wrestles with mattresses, runs full-on into closed doors ... just a few of the moments that sparkle in my memory of 'The Naked Truth'. I LOVED what I caught of this show: enjoyably daft plots and some good supporting characters provided the setting for the diamond of the show - Tea Leoni as, 'Nora Wilde'; cute, clownish, and wonderfully accident-prone - How refreshing to see an actress who can clown - it's no wonder Hollyood doesn't seem to know how to cast her. But where-oh-WHERE are the DVD releases? The amount of (bleep) they release, it's incredible me that this little gem continues to remain buried. (Someone please correct me if I'm wrong.)",1 +20143,"I like musicals but as a Dickens fan I HATE this one. **MILD SPOILERS** Starving boys who have enough energy to sing and dance in the workhouse? The poor of London coming out to sing? Fagin and Dodger walking off into the sunset? Not exactly faithful to the novel. As I recall, Dodger was publicly hanged and Fagin went crazy in prison. **END OF SPOILERS**<br /><br />Oliver Reed is very weak as Sykes, doing little more than growling to indicate his evil. Worst however, is Mark Lester as Oliver, who often comes across so awkward and passive you wonder if he's really the main character. His portrayal is in no way helped by the fact that the best they could do when he sings is dub in the voice of a girl. Guess they didn't realize that boy trebles can be found in almost every church in England.<br /><br />Self-respecting Dickens fans: stick to David Lean's amazing 1948 film or the BBC 6-hour adaptation from the mid-80's. Avoid this bloated whitewash of a musical.",0 +689,"Upon the first viewing, I found this tale to be at least less annoying than other Cannon Movie Tales. After many more, I think it's one of the best. Some of the songs are pretty bad, especially the love song, but two things stand out that make the movie, even the singing, worthwhile. One is the art direction. Like the other Cannon Movie Tales, this is a beautifully decorated period piece; every piece of cloth and jewel (both of which have major parts in this movie's plot) look fresh and new, and contrast with the plain clothes of the peasants. Even during the love song I find myself studying the dress and hair of the princess, wonderfully done. The other thing is the comic timing. A lot of the movie is cheesy, but the emperor's vanity (and his making fun of himself in the end), the suspicious guard, the guard chasing Nicholas, and the stupid prince, were all quite funny and seem to be ridiculous quite on purpose. And the sequence during the song Weave-O makes up for the songs that weren't so good.",1 +18221,"or anyone who was praying for the sight of Al Cliver wrestling a naked, 7ft tall black guy into a full nelson, your film has arrived! Film starlet Laura Crawford (Ursula Buchfellner) is kidnapped by a group who demand the ransom of $6 million to be delivered to their island hideaway. What they don't count on is rugged Vietnam vet Peter Weston (Cliver) being hired by a film producer to save the girl. And what they really didn't count on was a local tribe that likes to offer up young women to their monster cannibal god with bloodshot bug eyes.<br /><br />Pretty much the same filming set up as CANNIBALS, this one fares a bit better when it comes to entertainment value, thanks mostly a hilarious dub track and the impossibly goofy monster with the bulging eyes (Franco confirms they were split ping pong balls on the disc's interview). Franco gets a strong EuroCult supporting cast including Gisela Hahn (CONTAMINATION) and Werner Pochath (whose death is one of the most head-scratching things I ever seen as a guy who is totally not him is shown - in close up - trying to be him). The film features tons of nudity and the gore (Tempra paint variety) is there. The highlight for me was the world's slowly fistfight between Cliver and Antonio de Cabo in the splashing waves. Sadly, ol' Jess pads this one out to an astonishing (and, at times, agonizing) 1 hour and 40 minutes when it should have run 80 minutes tops. <br /><br />For the most part, the Severin DVD looks pretty nice but there are some odd ghosting images going on during some of the darker scenes. Also, one long section of dialog is in Spanish with no subs (they are an option, but only when you listen to the French track). Franco gives a nice 16- minute interview about the film and has much more pleasant things to say about Buchfellner than his CANNIBALS star Sabrina Siani.",0 +22453,Never see this movie.<br /><br />It tries to be a spoof on scifi/thriller films of the 1950s and 1960s but all it succedes at is making you wish really badly that you were watching one of them and not it.<br /><br />It is very lame. A spoof has to have some aspect which has some above par quality to it. This movie does not have any such aspect.<br /><br />Save yourself. It's too late for me but... just don't watch it.,0 +19259,"I was looking forward to Kathryn Bigelow's movie with great anticipation after the endless hype and 6 Oscars which it was awarded. Unfortunately it really isn't a good movie. The depiction of the situation certainly seemed to be accurate and believable on all counts, but beyond that the story simply came across as incomplete and the direction of the movie appeared to be uncertain and haphazard. The actors put in a good effort, but for me I didn't really get what the movie was trying to be. It's not as atmospheric and gripping as Full Metal Jacket, not as epic as Band of Brothers, not as action packed as...well, anything. I certainly can't see why it was nominated for so much, nor why people are 'hyping it up' to these epic proportions. Mind you, given the calibre of movies in the last couple of years I suppose there's not a lot to choose from.",0 +9732,"Jodie Foster, Cherie Currie (the former lead singer of the seminal all-girl rock group the Runaways in her remarkably able acting debut), Marilyn Kagan, and Kandice Stroh are uniformly believable, splendid and touching as the titular quartet, who are a tight-knit clique of troubled, fiercely loyal adolescent girls with negligent, uncaring, self-absorbed parents who do their best to grow up and fend for themselves in the affluent San Fernando Valley, California suburbs. The girls are forced to make serious decisions about sex, drugs, alcohol, commitment, and so on at a tender young age when they're not fully prepared to completely own up to the potentially harmful consequences of said decisions. Foster, giving one of her most perceptive, affecting and underrated performances to date, is basically the group's den mother who presides over the well-being of both herself and the others; she's especially concerned about the good-hearted, but reckless and self-destructive Currie, whose carelessly hedonistic lifestyle makes her likely to meet an untimely end.<br /><br />This picture offers a poignant, insightful, often devastatingly credible and thoroughly absorbing examination of broken, dysfunctional families which exist directly underneath suburbia's neatly manicured surface and the tragic net result of such families: tough, resilient, but unhappy and vulnerable kids who have to confront the trials and tribulations of growing up on their own because their parents are either too inconsiderate or even nonexistent. Adrian (""Fatal Attraction,"" ""Jacob's Ladder"") Lyne's direction is both sturdy and observant while Gerald Ayres' script is somewhat messy and rambling, but overall still accurate in its frank, gritty, unsentimental depiction of your average latchkey kid's nerve-wrackingly chaotic, capricious and unpredictable everyday life. Leon Bijou's soft, dewy, almost pastoral cinematography properly suggests a delicate and easily breakable sense of tranquility and innocence. Giorgio Moroder arranged the excellent score, which makes particularly effective use of Donna Summer's elegiac ""On the Radio."" The top-notch cast includes Sally Kellerman as Foster's neurotic, insecure, peevish mother, Scott Baio as a sweet skateboarder dude, Randy Quaid as Kagan's rich older boyfriend, British 60's pop singer Adam Faith as Foster's feckless, absentee rock promoter father, and Lois Smith as Kagan's smothering, overprotective mother. Appearing in brief bits are Robert Romanus (Mike Damone ""Fast Times at Richmont High"") as one of Foster's morose ex-boyfriends and a gawky, braces-wearing Laura Dern as an obnoxious party crasher. Achingly authentic, engrossing and deeply moving (Currie's grim ultimate fate is very heart-breaking), ""Foxes"" is quite simply one of the most unsung and under-appreciated teen movies made about early 80's adolescence.",1 +5710,"This is an excellent stand-up DVD! Eddie Izzard is the funniest person I have seen in years. His routine is hilarious and makes for great conversation with others who have seen it. I HIGHLY recommend this one. The part about the history of Europe is a bit slow, but the ending jokes in French are quite good, because you don't have to speak French to get it (although if you do, it is still hilarious). Also, the parts about being a transvestite are quite good. The first scene (about San Francisco) is not great, but funny the first time. Skip over those if you can. It's almost not worth watching. However, this really is a funny, funny stand-up show that everyone should see. ""I was dead at the time!""",1 +16034,"I went to see this one with much expectation. Quite unfortunately the dialogue is utterly stupid and overall the movie is far from inspiring awe or interest. Even a child can see the missing logic to character's behaviors. Today's kids need creative stories which would inspire them, which would make them 'daydream' about the events. That's precisely what happened with movies like E.T. and Star Wars a decade ago. (How many kids imagined about becoming Jedi Knights and igniting their own lightsabers?) Seriously don't waste your time & money on this one.",0 +15228,"Apparently Shakespeare equals high brow which equals in turn a bunch of folks not seeing something for what it really is. At one point in this film, someone (I believe Pacino's producer) warns him that film is getting off track, that it was once about how the masses think about Shakespeare through the vehicle of RICHARD III. Instead he decides to shoot a chopped up play with random comments sprinkled throughout. Some scenes seemed to be included as home movies for Al (was there really ANY reason for the quick visit to Shakespeare's birthplace, other than for a laugh about something unexpected which happens there?), and, before the film has really even begun, we are treated to seeing Al prance around and act cute and funny for the camera. I thought his silly act with Kay near the end of GODFATHER III with the knife to his throat was AN ACT - but apparently it's how Al really behaves in person.<br /><br />Enough rambling. Here's a shotgun smattering of why I didn't even make it 3/4 of the way through this: 1) pretentious - Al always knows when the camera is on him, whether he's acting as Richard or in a 'real' conversation with someone - you can see it in the corner of his eyes, also, some of the actors around the rehearsal table become untethered and wax hammy to the extreme. If anyone reading this has ever spent any time with an group of actors and has witnessed this kind of thing from the outside, it's unbearable. ""Look at me, chewing all the scenery!"" 2) Winona Ryder. When she appears as Lady Anne, this film comes to a screeching halt, which it never recovers from. She has nothing to add in the discussion scenes but the camera lingers on her to bring in the kiddoes. Her performance is dreadful, to boot. 3) the only things you really learn from this are told to you by the very scholars the filmmakers are trying to keep out of the picture. Of course, you also learn that Pacino shouldn't be directing films (or doing Richard in the first place). I'd rather watch BOBBY DEERFIELD than this.<br /><br />Lastly, read the play and learn it for yourself. Go out and see it performed. In 1997 I saw the play performed at the University of Washington Ethnic Cultural Theater, and it made what we see in this film seem like high school drama (except for the gratuitous throat slashing of Clarence! My God! Was that necessary?!)<br /><br />It's all just a bunch of sound and fury, signifying nada.",0 +1093,"I was speechless and devastated after my first viewing of this - many parts of GREY GARDENS are very funny and unbelievably surreal - documentary of not, this really gives Fellini or David Lynch a run for their money in the weirdsville sweepstakes. I kept focusing on how these women (who are clinically way beyond eccentric) reveal their own humanity in the most surprising of ways, and I wonder whether their retreat from the world was prompted by something beyond the stuffiness of life in the unreal blue-blood universe, perhaps some abuse, or perhaps simply a streak of defiance and rebellion that spiralled out of their control and took on a life of its' own. This might be one of the greatest ever films that comes dangerously close to exploitation, without going completely over the edge - as the Edies do their thing, I kept noting things like the empty gin bottles in the rubble-strewn bedroom, cats urinating on the bed, racoons emerging from holes in the walls, and the final scene seemed incredibly sad - like a child's birthday party gone seriously wrong. Very definitely worth seeing and seeking out - you'll never forget it, but very disturbing.",1 +18965,"Add to the list of caricatures: a Southern preacher and ""congregation,"" a torch singer (Sophie Tucker?), a dancing chorus, and The Mills Brothers -- it only makes it worse.<br /><br />Contemptible burlesques of ""Negro"" performers, who themselves often appear in films to be parodying themselves and their race. Though the ""Negro comedy"" may have been accepted in its day, it's extremely offensive today, and I doubt that it was ever funny. Though I wouldn't have been offended, I don't think that I'd have laughed at the feeble attempts at humor. As an 11-year-old white boy, however, I might not have understood some of it.",0 +6718,"This is not a movie for fans of the usual eerie Lynch stuff. Rather, it's for those who either appreciate a good story, or have grown tired of the run-of-the-mill stuff with overt sentimentalism and Oprah-ish ""This is such a wonderful movie! You must see it!""-semantics (tho' she IS right, for once!).<br /><br />The story unfolds flawlessly, and we are taken along a journey that, I believe, most of us will come to recognize at some time. A compassionate, existentialist journey where we make amends för our past when approaching ourt inevitable demise.<br /><br />Acting is without faults, cinematography likewise (occasionally quite brilliant!), and the dialogue leaves out just enough for the viewer to grasp the details od the story.<br /><br />A warm movie. Not excessively sentimental.",1 +24801,There were times during the movie I wish I had been beat to death. The only reason I endured the entirety of the movie was because I couldn't believe how bad it really was and thought it must get better. This truly was a horror film. I was horrified that I wasted what seemed like 4 hours of my life that I will never get back. The other two hours I spent mourning at the loss. Please recommend this movie to whomever you wish to torture and tell them the suspense will kill them.,0 +15899,"Preposterous sequel stretches credibility to a great degree as diabolical sociopath Stanley Kaldwell returns this time infiltrating the movie production of the novel he wrote for the garden drownings, assuming the identity of a second unit director he murdered.<br /><br />Film pokes gleeful fun at Hollywood, with a tongue-in-cheek script taking shots at tyrannical directors who sleep with their actresses(..looking for a way up the ladder)and dislike anyone challenging them for complete spotlight. Brian Krause, who I thought was dreadful, overacting to the point where the satire felt incredibly forced, portrays the loud, temperamental director who doesn't like the fact that his second unit director and screenplay writer, Alison(..played by Dahlia Salem)seem to be taking over the production. Andrew Moxham is Paul Parsons, who is the brother of a victim from the first film. The film's dark humor this time takes the idea of a serial killer actually operating as director of a movie set and exploits it for all it's worth. Nelson again ably slides back into his psycho role without any difficulty, with Stanley as clever as ever, using his brains to commandeer a film production, killing whoever he has to in order to maintain full control of his work, letting no one stand in his way..that is until Alison realizes who Stanley really is. Alison is the type of ambitious writer who wants to capture the essence of her subject..what motivated Stanley to kill, why would he do such a thing, and what led such a man down this dark path? The humor of Alison actually working with that very man is also part of the satire at the heart of this dark comedy thriller. Of course, you get the inevitable showdown between Alison and Stanley, with a really ridiculous, unbelievable conclusion regarding the killer's fate(..quite a hard pill to swallow). Unlike the first film, which was photographed with sophisticated polish, director Po-Chih Leong uses unnecessary techniques which are not needed(..such as shooting an all kinds of weird angles, slow-motion in a sepia color, and several instances which are captured on video)and rather annoy instead of impress. This sequel, to me, just wasn't on target as much as the original, with a lot of the humor less effective and more obvious.",0 +16544,"I absolutely love all of Tom Robbins books, so I was very excited and interested to see a movie made after one of his books. I knew that there would be no way that the movie would capture even half of Robbins' magic, but after seeing the movie, it made me never want to read the book again. The movie Even Cowgirls Get the Blues doesn't include an eighth of the content in the book, and it seems to focus more on the love connection between Bonanza Jellybean and Sissy than anything else. Along with the incredibly weak plot line in the movie, I think that better actors definitely could have been chosen to play the characters. The only actors in the movie that I thought played their roles fit to Robbins' descriptions in the book were Julian's friends, in their five minute clip in the beginning of the movie. Those who haven't read the book might enjoy the movie, but as a huge Tom Robbins fan, this movie was nothing but a disappointment.",0 +203,"This is probably Karisma at her best, apart from Zubeidaa. Nana Patekar also gives out his best, without even trying. The story is very good at times but by the end seems to drag, especially when Shahrukh comes in the picture. What really made me like it were the performances of the leads, the dialog delivery, as well as the story, for what it was. It could've been directed better, and edited. The supporting case was even great, including Karima's mother in law, even though she just had one shining moment, it was great to watch her.<br /><br />The sets were also pretty good. I didn't really like their portrayal of a Canadian family, but once they step in India, it's as real as it gets.<br /><br />Overall, I would give it a thumbs up!",1 +20324,"It really was that bad. On a par with the (mercifully!) short-lived ""Dirty Dozen"" TV series that starred Ben Murphy and was made at around the same time (also on the cheap in Yugoslavia).<br /><br />I was embarrassed for the cast members of this film - and for Telly Savalas in particular. He was waaaaaay too old and fat for the role (pushing 70 when he made this garbage), and the reviewer who draws parallels with Telly the Greek in this and John Wayne in ""The Green Berets"" pretty much sums it up.<br /><br />Other reviewers have pointed out some of the many laughable howlers that this crime against celluloid contains, so I won't repeat them here. But I will add that I'm amazed that no-one's yet mentioned the ridiculously tiny-looking helmet that Savalas wears on his big, bloated head. <br /><br />I'm also astonished that this trainwreck of a film has a rating as high as 4.7 here at IMDb.<br /><br />As far as I'm concerned, it's a ""1"" right across the board. If you want a good example of why flogging a franchise to death really is a bad idea (especially 20-plus years after the original) - look no further than ""The Dirty Dozen - The Fatal Mission"".<br /><br />Awful - avoid!!!!",0 +22378,"This is one of those movies that's trying to be moody and tense, and instead, ends up tripping all over itself. Having seen it at a queer film festival, I was intrigued by the ""young college threesome gone wrong"" write-up, however, over-all ended up quite disappointed.<br /><br />It's hard to critique a ""true story"" since there's not much that can be done about the plot - but I found this disjointed, melodramatic and wholly depressing. It's dark and almost sinister, painting a darn creepy flash of the seventies with imposing music and jerky close-ups. It just doesn't work - some scenes where so cheesy that instead of hushed awe, my audience was supressing snickers and rolling eyes.<br /><br />The story has an interesting premise, but this just spins downward into a dark, miserable spiral.",0 +23668,"Look, I loved the PROPER Anchorman film, but this was reaaaaallly bad. The kind of bad that makes you wish you could get that time back in your life, the kind of bad that makes you think ""what on Earth were they thinking to film this in the first place"", the kind of bad that makes you wish you'd taken 50 more minutes when stepping into the kitchen to grab a snack during the film, the kind of bad that makes leprosy look fun, the kind of bad that makes you think you wish you rented a Pauly Shore film instead....seriously, I cannot explain how very bad this was.<br /><br />Having said that....there were some semi-amusing laughs, but they are all so much LESS funny than Anchorman. Sure, they tried to make it entertaining and fun, but the entire subplot that was left out of Anchorman that made it here was genuinely left out for a good reason...it wasn't even a little bit good.<br /><br />Do yourself a favour (or in the USA, a favor), and don't watch this DVD...it will tarnish the good movie that Anchorman is and you don't want to do that.<br /><br />Okay...I'm alright now.",0 +4933,"This is your standard musical comedy from the '30's, with a big plus that it features some well known '30's actors in small fun cameo's.<br /><br />There is not much to the story and basically the movie is all about its fun and 'no-worries' overall kind of atmosphere, with a typical Hal Roach comedy touch to it. Appereantly it's a 'Cinderella story' but I most certainly didn't thought of it that way while watching the movie. The story gets very muddled in into the storytelling, that features many different characters and also many small cameo appearance, when the main characters hit the Hollywood studios.<br /><br />Of course the highlight of the movie is when Laurel & Hardy make their appearance and show some of their routines. It's like watching a movie and getting a Laurel & Hardy short with it for free. Also Laurel & Hardy regular Walter Long makes an appearance in the routine and James Finlayson (without a mustache this time) as the director of the short.<br /><br />It's certainly true that all of the cameo's and subplots distract from the main plot line and character but in this case that is no problem, since its all way more fun and interesting to watch than the main plot line and the shallow typical main character.<br /><br />The movie is most certainly not any worse than any of its other genre movies from the same time period, though the rating on here would suggest otherwise.<br /><br />7/10",1 +10006,"WRITTEN ON THE WIND, directed by Douglas Sirk and released in 1956, is like all of Sirk's mid 50's films- pure melodrama. Yet it is engrossing, richly developed melodrama, and Sirk's trademark lurid colour expressionism, throbbing, barely repressed emotions, symbolism and juxtaposition of the classes make this a film to crave.<br /><br />The film opens brilliantly, with the four central characters and the plot being introduced as the credits are still rolling. Sirk uses a clever flashback structure to take us into his world...<br /><br />Robert Stack and Dorothy Malone are magnificent as the two Hadley ""kids"", Kyle and Marylee. He drinks and sleeps around with women. She drinks and sleeps around with men. They both are worth millions, thanks to the Hadley oil business. Hunky, yet poor, Mitch Wayne (Rock Hudson) is Kyle's lifelong friend, and Marylee's dream lover. Enter into this sordid mess Lucy Moore (Lauren Bacall), a slim, attractive young woman who falls under Kyle's charms after he picks up a phone and flies her across the countryside one evening. Mitch loves her too, but Kyle wins her. They quickly marry, and Kyle stops drinking. But fate seems to be written on the wind, and it is not long before a conniving Marylee (who will ""have Mitch"", marriage or no marriage), a secretly smitten Mitch, the confused Lucy and the sad drunk Kyle come to blows....<br /><br />Malone is just wonderful as Marylee Hadley, thoroughly deserving her Best Supporting Actress Oscar. She steals every scene she is in. Stack is almost just as good, amping up the melodrama, while still maintaining subtly and quiet desperation. Hudson and Bacall are a lot more restrained than those two, yet it is in keeping with the characters they play.<br /><br />So, what's all this melodrama really about it? Well, a lot of things. Stack's powerful portrait of male inadequacy and fear, for one thing. Sirk surrounds Stack with phallic symbols throughout the film- note his tiny little gun, the oil derricks and the ultimate phallic symbol, Kyle's seeming inability to conceive children. Stack seems to be suffering from a massive male superiority complex, made worse by his father's preference for Hudson, his sister's desire for Hudson, and his suspicion that his wife is carrying on with Hudson. With all this wealth Kyle Hadley still ends up at the wrong end of town, buying cheap corn liquor like a ""bum"".<br /><br />It's about impossible dreams, and having to let go of them. The river where Kyle, Marylee and Mitch used to play when they were kids is constantly referenced throughout the film, symbolising Kyle and (especially) Marylee's wish for the innocence and simplicity of youth. In an excellent melodramatic scene, perfectly pulled off by Malone, Marylee's stands by the river and imagines herself again as a child, with voice-over of Mitch telling Marylee that she will always be his girl. This is where Sirk strikes a huge emotional chord with the viewer. Who hasn't dreamed about going back to that special place in childhood? Who hasn't, at some point, lived on a treasured memory? Who hasn't wanted something they couldn't have? And Hudson's last line of the film (yes, he gets no dialogue in the last 10 or so minutes, only close-ups) recollects on how ""far we've come from the river, Marylee"". Amazing.",1 +24953,"Rosario Dawson stars as a girl who is date raped and then begins a decent into darkness until given a chance at revenge. While its clear why Dawson took the role, its a chance to show her acting chops and to make a small independent, decidedly un-Hollywood film, its also clear that aside from stunning good looks, Dawson seems out of place in the role. Forgive me I simply couldn't find her. Thats not a mistake, thats how I felt, I had no idea where she was. Yes I know she's on the screen but even though I spent the better part of two hours looking at her she left no impression on me whats so ever. I blame the script for this since other than the ending, not a whole heck of a lot that happened on screen seemed to make any real sense. The people seemed to be more posture than real and what happens didn't seem to fit together. Forgive me for being vague but nothing in this film, other than the end (which I would love to talk about but can't cause it would spoil it), and the image of Rosario Dawson as nothing more than an image, stayed with me.What can I say, this may click with you, it may not, for me it's time I can't get back. For Rosario Dawson fans only, though be warned there's several real reasons why this is NC17. (And Rosario- please, you're a better actress, pick better scripts)",0 +1230,"The Sopranos (now preparing to end) is the very peak of adult television and drama. When The Sopranos hits the mark, it really hits the mark. Using great writing and great actors (most of them being extras from Goodfellas) the series is aloud to progress in a satisfyingly unpredictable and exceptional way. Heading up the cast is James Gandolfini, who for all intensive purposes is Tony Soprano, and Edie Falco, who certainly holds her own. The series also boasts a great collection of regulars to push the plot along by any means necessary (usually violence and foul language). Tony Sirico, Michael Imperioli and Steve Van Zandt are great secondary characters that make every episode more interesting. Seasonal extras are also worth note including names like Steve Buscemi (great!), Joe Pantoliano (great!), David Proval (good), Robert Patrick, Robert Loggia and Frank Vincent.<br /><br />The Sopranos is a great family drama and a realistic interpretation of modern day mafia societies that despite the rare bad story lines manages to be unique TV. Symbolism and simple story lines, dreams and shoot-outs and many other things create intertwining stories and relationships that at the end of each season are resolved to create yet another perfect HBO package. Watch it...",1 +15796,"Here we have 2 misunderstood kids who never stood a chance against a cruel, poverty riddled existence: Robin Hoods singled out by the police for persecution because they were a trifle wild at times. Gad! According to this crap Bonnie was the sweetest little thing west of the Missouri who was taught to be a psychopathic murderer by a fun loving boyfriend who didn't really want to hurt anybody....he just wanted things without putting a lot of energy into getting them. Badly acted, poorly filmed, unbelievable dialogue, unrealistic use of weaponry, gore that looked more like grape jelly than the real thing. Avoid this bilgewater. Thumbs down. -5 stars.",0 +19430,"Les Visiteurs, the first movie about the medieval time travelers was actually funny. I like Jean Reno as an actor, but there was more. There were unexpected twists, funny situations and of course plain absurdness, that would remind you a little bit of Louis de Funes.<br /><br />Now this sequel has the same characters, the same actors in great part and the same time traveling. The plot changes a little, since the characters now are supposed to be experienced time travelers. So they jump up and down in history, without paying any attention to the fact that it keeps getting absurder as you advance in the movie. The duke, Jean Reno, tries to keep the whole thing together with his playing, but his character has been emptied, so there's not a lot he can do to save the film.<br /><br />Now the duke's slave/helper, he has really all the attention. The movie is merely about him and his being clumsy / annoying / stupid or whatever he was supposed to be. Fact is; this character tries to produce the laughter from the audience, but he does not succeed. It is as if someone was telling you a really very very bad joke, you already know, but he insists on telling that joke till the end, adding details, to make your suffering a little longer.<br /><br />If you liked Les Visiteurs, do not spoil the taste in your mouth with the sequel. If you didn't like Les Visiteurs, you would never consider seeing the sequel. If you liked this sequel... well, I suppose you still need to see a lot of movies.",0 +7957,"by Dane Youssef <br /><br />""Coonskin"" is film, by the one and only Ralph Bakshi, is reportedly a satirical indictment of blaxploitation films and negative black stereotypes, as well as a look at life black in modern America (modern for the day, I mean--1975). Paramount dropped it like a hot potato that just burst into flame.<br /><br />But this is a Bakshi film, controversial, thrilling, and a must-see almost by definition alone. Not just another random ""shock-jock"" of a movie which tries to shock for the sake of shock. It's by Ralph Bakshi. Anyone who knows the name knows that if HE made a movie, he has something big to say...<br /><br />Although it's roots are based in cheap blaxploitation, ""Coonskin"" isn't just another campy knock-off of mainstream white film or any kind of throwaway flick. ""Coonskin"" wants to be more. It aims it's sights higher and fries some much bigger fish.<br /><br />The movie doesn't just poke fun at the genre. Nor does it just indict black people, but actually seems to show love, beauty and heart in the strangest places.<br /><br />""Coonskin"" tells a story out of some convicts awaiting a jail-break. The fact that it's even possible to break out of a prison in the ""Coonskin"" world alone makes it old-fashioned.<br /><br />One of the inmates tells a story about a trio of black brothers in Harlem named Brother Bear, Brother Rabbit, Preacher Fox who want respect and a piece of the action and are willing to get it by any means necessary. The Itallian mob is running all the real action.<br /><br />Big name black musicians star: Barry White and Scatman Crothers, as well as Charles Gordone, the first black playwright to take home the Pulitzer. Something big is happening here obviously.<br /><br />The movie plays out like a descent into this world, this side of the racial divide. From an angry, hip, deep, soulful black man with a hate in his heart and a gun in his hand.<br /><br />Bakshi's films never know the meaning of the word ""sublety."" This one looks like it's never even heard of the word. But maybe a subject like this needs extremism. Real sledgehammer satire. Some subjects can't be tackled gently.<br /><br />Bakshi is god-dammed merciless. Here, no member or minority of the Harlem scene appears unscathed.<br /><br />The characters here are ""animated"" to ""real"" all depending on what the mood and situation are. The animated characters and the human ones all share the same reality and are meant to be taken just as literally.<br /><br />Bakshi never just shows ugly caricatures just for shock value. He always has something to say. Nor is black-face is gratuitously. Here, unlike in Spike Lee's ""Bamboozled,"" he seems to be using it to try and really say something.<br /><br />Like 99.9% of all of Bakshi's films, this one incorporates animation and live-action. Usually at the same time. Bakshki isn't just being gimmicky here. All of this technique is all intertwined, meshing together while saying something.<br /><br />Somehow, this one feels inevitably dated. Many of these types of films (Bakshi's included) are very topical, very spur of the moment. They reflect the certain trend for the day, but looking back of them years later, there's just an unmistakable feeling of nostalgia (as well as timeless truth).<br /><br />Even though the music, clothes, slang and the city clearly looks like photos that belong in a time capsule, the attitude, the spirit and the heart remain the same no matter what f--king ear it is. Anyone who's really seen the movies, the state of things and has been in company of the people know what I'm talking about.<br /><br />Even some of the of the black characters are a bunny (junglebunny), a big ol' bear and a fox. One of the most sour and unsavory racist characters is a dirty Harlem cop who's hot on the trail of these ""dirty n-----s"" after the death of a cop. But for him, it's not just business. Nor is it for the rest of the brothers who wear the shield. It's just pure sadistic racist pleasure of hurting blacks.<br /><br />The sequence involving the Godfather and his lady is one of the most moving pieces in the whole film, of which there are many. It plays out like an opera or a ballet.<br /><br />The promo line: WARNING: ""This film offends everybody!"" This is not just hype. Proceed with extreme caution.<br /><br />You have been warned...<br /><br />by Dane Youssef",1 +19299,"The movie is bad. Nothing special - just a ""kid"" movie with no serious thing in it. There is though one reason to watch this for: the animal talk. Some of them are so funny in what they say, you just can't stop laughing. So if you want to hear a dog in the dog pound saying ""I'm Keyser Soze"", or another animal saying ""You're a dead cat walking"", or many other funny one liners, see it. Cause there's no other good movie to watch it. Vote: 4 out of 10.",0 +23849,"The original ""Cube"" is a fantastic B-movie rich with paranoia, meaty characterization, and fine over-the-top performances. It's creepy, cryptic, and cool. And it stands perfectly well, on its own, without a stupid sequel like ""Cube Zero."" <br /><br />This third (!) film in the Cube series is part retread (most of the booby traps are sadly recycled), part aberration. It takes the bold step of explaining what the cube is - something that was never revealed in the first movie - but, since said explanation is bland, I'd rather it was kept a secret. There are some potentially interesting references to the society that exists outside of the cube, but they never develop beyond hints about some kind of political-religious totalitarian state. So, what little social commentary there is feels flat and unfocused.<br /><br />What works? Basically nothing. The acting is purely amateur hour, the pacing is slow (how much of this movie consists of two nerds watching a screen?), and the gore effects, while revolting, fail to convince. In short, ""Cube Zero"" reminded me of a ""Cube"" fan-fic, a sloppy and sophomoric clone of a good movie that definitely did not need a sequel.",0 +23963,"Nominated for the oscar ""worst script ever"" in my opinion. There's no decent story, rediculous acting, VERY lousy humor. By every means possible, if you have little self respect please don't waste your time seeing this movie. Although u can see the actors CAN act, it leaves you dumber after watching it. Precious braincells are being killed watching this crap...<br /><br />i warned u<br /><br />DON'T SEE THIS MOVIE",0 +21307,"This is a copy of the 1948 Doris Day classic, Romance on the High Seas.<br /><br />The story line is more or less same but is contemporary. Govinda plays a sharp witted fellow who replaces the husband on the trip. While Rani plays the college friend of the wife who does her the same favour. They ostensibly try to catch each other out while the actual husband and wife tries to trip each other in Bombay.<br /><br />On the trip, Govinda mistakes another girl for Sanjiv's wife and spies on her while falling in love with the ravishing Rani.<br /><br />Lever plays a dual role of father and son both lawyers specialising in divorce proceedings. They are pitted against each other for the warring couple.<br /><br />It is a poor attempt at copying the original classics and the songs are quite appalling. The comedy is slap-stick and will not make one laugh too much.",0 +4251,"My father grew grew up watching George Reeves as Superman and when I was a little kid he had episodes on VHS and let me view them including this movie (passing them down in the family if you will), and I loved it.<br /><br />Clark Kent and Lois Lane get sent to a small town with and oil mine and from the mine emerge mole men radioactive and targeted by the town assumed to be deadly and it's up to Superman to stop this mayhem.<br /><br />It's just so wonderful and fun to view. The old style special effects and sound - the crew pulled off such a beauty with such little technology. George Reeves was my hero when I was a little kid, and I'm 16 now, it just goes to show how timeless and classic these adventures are.",1 +15020,"The Japenese sense of pacing, editing and musical score must be different than American tastes, but surely this movie could have been so much more with a little more post production work.<br /><br />Someone in Hollywood needs to re-make this movie and I think it would be a big hit. The story is interesting and creepy. There's something about the edges of the city, gritty policemen, earthquakes, sanitariums and mysterious saltwater killings that is enough to be captivating. However, this story has to make just a little bit of sense and maybe be about 40 minutes shorter.<br /><br />I do have to say that the ""sixth-sense"" effect was in full force in this movie, and that was evident from the very beginning.<br /><br />As it stands, only the die-hard Japanese film lovers should bother seeing this oh-so-boring movie.",0 +13440,"The directors cut version, which was the one I saw, was very long for this type of movie. Almost two hours is way too long. If you have the choice, definitely go for the non-directors cut.<br /><br />The main plot is almost not taken up at all, the movie consists to the main part of several murder scenes, which are connected but the feeling is that they're only shown in order to fill the movie with splatterish violence. The connection is not revealed until the latter part and the lack of context bored me out long before I was there.<br /><br />As a horror movie it doesn't work. You never get the required feel for the characters due to mediocre acting and the general disposition (character is presented, 15 minutes later character is dead). This pictures strong side lies in the splatter part.",0 +12226,"The last time I saw the movie I was around seven years, so my opinions might be jaded over time. At the time I enjoyed the filming that switched between cartoon and live action. At the time I felt sad for the blue camel and his sad life. Also I felt glee when after Captain Contagious kidnapped the heroine (a princess or toy shepherdess) the tables the were turned on him. Unfortunately the producers never decided to transfer this movie to VHS, so all I have are twenty year old memories. I am sure that if I saw the movie again I would consider it corny and sappy, but I really enjoyed it the movie at the time.",1 +19109,"Mad Magazine may have a lot of crazy people working for it...but obviously someone there had some common sense when the powers-that-be disowned this waste of celluloid...the editing is el crapo, the plot is incredibly thin and stupid...and the only reason it gets a two out of ten is that Stacy Nelkin takes off some of her clothes and we get a nice chest shot...I never thought I would feel sorry for Ralph Macchio making the decision to be in this thing, but I do...and I REALLY feel bad for Ron Leibman and Tom Poston, gifted actors who never should have shown up in this piece of...film...at least Mr. Leibman had the cajones to refuse to have his name put anywhere on the movie...and he comes out ahead...there are actually copies of this thing with Mad's beginning sequence still on it...if you can locate one, grab it cuz it is probably worth something...it's the only thing about this movie that's worth anything...and a note to the folks at IMDb.com...there is no way to spoil this movie for anyone...the makers spoiled it by themselves...",0 +4334,"That's right. The movie is better than the book. Don't get me wrong, I love the book. But the movie is just so much better. This film has Jack Nicholson and Shelly Duvall at their best. (I haven't seen Scatman Crothers and obviously Danny Lloyd in anything else.) Some of the ideas used in this movie are better than the ones used in the book. But I already talked about those in my comment on the mini series. But, I missed a few. The film is shot at a better location than where the mini series was shot. And the REDRUM scenes are creepier than those in the book. So if you're looking for a great movie, get Stanley Kubrick's The Shining. But count on having nightmares every night for 3 weeks",1 +10744,"1927, and Hollywood had been on the map as the centre of the cinematic world for a little over a decade. Now that it had become the site of a multi-million dollar industry and the vertically integrated studio system had been established, some of those in the calmer quarters of this film-making factory were taking the time for a little self-reflection. The Last Command, while its heart may be the classic story of a once prestigious man fallen on hard times, frames that tale within a bleak look at how cinema unceremoniously recreates reality, and how its production process could be mercilessly impersonal. It was written by Lajos Biro, who had been on the scene long enough to know.<br /><br />Taking centre stage is a man who was at the time among Hollywood's most celebrated immigrants Emil Jannings. Before coming to the States Jannings had worked mainly in comedy, being a master of the hammy yet hilariously well-timed performance, often as pompous authority figures or doddering old has-beens. He makes his entrance in The Last Command as the latter, and at first it looks as if this is to be another of Jannings's scenery-chomping caricatures. However, as the story progresses the actor gets to demonstrate his range, showing by turns delicate frailty, serene dignity and eventually awesome power and presence in the finale. He never quite stops being a blustering exaggeration (the German acting tradition knowing nothing of subtlety), but he constantly holds our attention with absolute control over every facet of his performance.<br /><br />The director was another immigrant, albeit one who had been around Hollywood a bit longer and had no background in the European film industry. Nevertheless Joseph von Sternberg cultivated for himself the image of the artistic and imperious Teutonic Kino Meister (the ""von"" was made up, by the way), and took a very distinctive approach to the craft. Of note in this picture is his handling of pace and tone, a great example being the first of the Russian flashback scenes. We open with a carefully-constructed chaos with movement in converging directions, which we the audience become part of as the camera pulls back and extras dash across the screen. Then, when Jannings arrives, everything settles down. Jannings's performance is incredibly sedate and measured, and when the players around him begin to mirror this the effect is as if his mere presence has restored order.<br /><br />Sternberg appears to show a distaste for violence, allowing the grimmest moments to take place off screen, and yet implying that they have happened with a flow of images that is almost poetic. In fact, he really seems to have an all-round lack of interest in action. In the scene of the prisoners' revolt Sternberg takes an aloof and objective stance, his camera eventually retreating to a fly-on-the-wall position. Compare this to the following scenes between Jannings and Evelyn Brent, which are a complex medley of point-of-view shots and intense close-ups, thrusting us right into the midst of their interaction.<br /><br />As a personality on set, it would seem that Sternberg was much like the cold and callous director played on the screen by William Powell, and in fact Powell's portrayal is probably something of a deliberate parody that even Sternberg himself would have been in on. Unfortunately this harsh attitude did not make him an easy man to work with, and coupled with his focus on his technical resources over his human ones, the smaller performances in his pictures leave a little to be desired. While Jannings displays classic hamming in the Charles Laughton mode that works dramatically, it appears no-one told his co-stars they were not in a comedy. Evelyn Brent is fairly good, giving us some good emoting, but overplaying it here and there. The only performance that comes close to Jannings is that of Powell himself. It's a little odd to see the normally amiable star of The Thin Man and The Great Ziegfeld playing a figure so stern and humourless, like a male Ninotchka, but he does a good job, revealing a smouldering emotional intensity beneath the hard-hearted exterior.<br /><br />The Last Command could easily have ruffled a few feathers in studio offices, as tends to happen with any disparaging commentary on the film-making process, even a relatively tame example like this. At the very least, I believe many studio heads would have been displeased by the ""behind-the-scenes"" view, as it threatened the mystique of movie-making which was still very much alive at this point. As it turned out, such was the impact of the picture that Jannings won the first ever Academy Award for Best Actor, as well as a Best Writing nomination for Lajos Biro and (according to some sources, although the issue is a little vague) a nomination for Best Picture. This is significant, since the Academy was a tiny institution at this time and the first awards were more than ever a bit of self-indulgent back-slapping by the Hollywood elite. But elite or not, they recognised good material when they saw it, and were willing to reward it.",1 +24388,"Spend your time any other way, even housework is better than this movie. The jokes aren't funny, the fun rhymes that are Dr. Seus aren't there. A very lousy way to waste an evening. My kids 4-16 laughed a little at the beginning the younger ones got bored with it and left to play Barbies and the older ones left to play ps2 and surf the net. My wife left and did dishes. So I finished it alone. It was the worst ""kids"" movie I have seen. If you want to watch a fun kids movie watch Shrek 2, that movie is fun for kids and their parents. AVOID THIS MOVIE. It isn't funny, isn't cute, the cat's makeup is about the only good thing in it and you can see that on the disc label.",0 +16767,"For starters, I would like to say that I'm a fan of the American Pie series. Even though 'the naked mile' and this one are the two worst, this one seems to be the downfall of the whole series.<br /><br />First of all, the best part of the film was that it was an American Pie film, which is always appreciated.<br /><br />However, there are tonnes of bad things to say about this film. First of all, the story has a very stale 'arc' structure. First, there is the introduction of the characters, then the pledging of the beta house and finally the Greek Olympiad. Each of which has exactly 25 minutes of length. Apart from the general staleness of the plot, there is little to no character development, which makes a double whammy of a bad plot.<br /><br />Apart from that, I deeply disliked the stereotyping in this film. That is, showing the jocks as the extremely cool, only-thinking-about-sex guys, and explicitly displaying the geeks as inferior. Also, it shows females only as sexual objects, and males as only wanting to treat the females as sexual objects.<br /><br />Apart from that, the acting was also poor. With perhaps the exception of Steve Talley.<br /><br />So, in the end, a generally horrid film, if seen from a critical point of view. If seen from a teen point of view, I guess that it's better, but this film is rated 18+ in most countries, so it shouldn't really be seen by minors.",0 +13680,"Way to go ace! You just made a chilling, grossly intriguing story of a necrophiliac cannibal into a soft, mellow, drama. Obviously a movie called Dahmer would be one of two kinds: Horror, or documentary right? This was neither. It wasn't close to any detailed facts, (in fact it barely had any substance at all) It wasn't really morbid or scary or didn't even try to be very disturbing.(as if you would've had to try!!) What the hell was this writer/director thinking?? Here's one of the most REAL examples of sick serial killers ever and we get badly shot, poorly acted gay bar roofie rapes and lengthy droning flashbacks to alone time in his old parent's house. I think Jacobson was actually trying to present (or invent) 'the soft side' of j.Dahmer.",0 +7485,"A case of being in the right place at the right time. What a fascinating film. It is easy to see why Chavez is so popular with his people. He gets things done. He is accessible. And it is also easy to see why the west hates him so much. He has control of the resources of his country and gives the profits back to the people. Mostly the poor. And it easy to see how the TV stations can portray misleading images to put there case. Just like the Iraq war, or the war on Terror. Or those missing WMD's. Or how about the axis of evil. People need to wake up. And get different points of view. Stop the neo cons ruling the world. Go watch this movie with an open mind. And make your own mind up. Then I suggest you see Aaron Russo's: America: Freedom to Fascism. It is not the people of America that are the problem. It is the government.",1 +12945,"Enough is enough...sometimes they just need to stop making movies based on a concept that is long dead. The first Tremors movie was great. The second one was ridiculous. The third one was nauseating. The tv series was depressingly awful. And this movie just drives the stake deeper.<br /><br />Basically another excuse for cheap computer effects and puppetry, now we have the series set in the Wild West, in the 1800's, and they fight graboids. Like a rehash of the first one, they have to learn how to beat them all over again. Mildly entertaining I suppose. Otherwise this straight-to-video release, just like Tremors 2 and 3, is just going way too far. Oh and I continue to wonder how there is never any record of these events taking place...did they just simply forget to record this unprecedented event? I think something like this would be history-making, so our pals in the first film wouldn't be so unprepared. <br /><br />Movies like this that ruin the original just make me crazy. Avoid this garbage.",0 +4886,"I love this show. Period. I haven't been watching very long, probably only about six months or so, actually, but it is now my favorite show and probably will be for quite a while. I love all of the characters, except I don't really care for Donna. I'm not completely sure why. I just..don't find her funny, and I don't think Laura Prepon is a very good actress. Other than her, I find the rest of the cast pretty good. Kurtwood Smith and Debra Joe Rupp, who played Erics parents, were extremely funny. Topher Grace is also a great actor. Unlike a lot of fans, I did not completely hate the 8th season. I still watch it, and it does make me laugh. But, if you compare it to the shows earlier seasons, its..not good. Randy is horrible. The finale was decent, nothing amazing, but good. =] I do think it would have been better to cancel the show after Ashton and Topher decided to leave, but oh well. I have the fourth season on DVD, and someday I hope to have all eight seasons on DVD. Some of its most hilarious episodes, in my opinion, were 'Dine&Dash', 'Grandmas Dead', 'Red&Stacey', and 'Streaking', but I love every episode I've seen so far, which is most of them, I think. =] 9/10 stars, I would definitely recommend it. =]",1 +857,"John Candy's Performance in Once Upon A Crime is possibly his best ever. It's been My Favourite Movie since it came out. I Spent 5 Years searching for it. That's How Good It Is. If You Disagree, well, that's your opinion. Enjoy The Movie.",1 +16754,"I love Jamie Foxx.<br /><br />And I enjoy 99% of all movies I see.<br /><br />And I walked out of this one.<br /><br />Now, I admit, it may have had something to do with the two middle-aged white women in the back of theatre who laughed at every little thing (""Oh no, Jamie's knocking on a door! HEE HEE HEE!""), but... this was just so incredibly annoying. There could be no sustained camera shot, and no camera shot from a conventional angle... everything had to be in-your-face, loud, and annoying.<br /><br />The bad guy tried to be smooth and Malkovich-like, but at this point, it's just old and tired. He brought nothing new or interesting. From all the characters, too many lines you saw coming, too many you've heard before, and too many ""tough guy"" lines... and I don't mind that sort of thing, really, as long as there's a bit of originality to it. In fact, pretty much the entire supporting cast just sucked.<br /><br />I love Jamie Foxx, and I think he's really funny, and I thought he was funny in this movie... but not nearly funny enough for me to endure everything else. <br /><br />This movie needed less shoot-em-up, less annoying camera shots, more emotion, more feeling, and more Jamie Foxx. I gave it a 2.",0 +6539,"Since the advent of literature, people of all nationalities have been fascinated and easily touched by accounts of unhappy love. Even more fascinating have always been the tales of impossible love, love that cannot be. The Israeli filmmaker Eytan Fox' latest film The Bubble"" is about that. And then it is also not. The title of the film refers to the bubble"" that is Tel-Aviv set against the background of the political realities of Israel. The country's cosmopolitan and unofficial capital city doesn't have much in common with Nablus, a city in the Palestinian West Bank which also features in the film. It doesn't have much in common with the tense and hateful atmosphere at the Palestinian checkpoints. Actually, it doesn't seem to have much in common with anything surrounding it. The bubble"" of Tel-Aviv allows people to have a lifestyle which isn't much different from what you may expect in any Western city. Teenage girls looking for Britney Spears' records, a lifestyle magazine editor looking for a sexy cover for his next issue, trendy people sitting in trendy cafes discussing trendy things over cups of cappuccino and other similarly trendy drinks, while those at home are watching the local edition of Pop Idol. It is this bubble"" that also has the potential to lull one's mind into a false sense of reality.<br /><br />The film evolves around the lives of three young Israelis who share a flat and, for the most part, try to stay out of politics. Yelli, the camp owner and manager of Orna & Ella"", a hip cafe, rarely leaves the city and prefers not to think about the crap that surrounds them"". Noam, a soft and easygoing employee of a slightly avantguard record store, seems to be equally unwilling to engage in long political discussions and contemplations. Lulu, the only female of the lot, is on the contrary linked to the Israeli Left, although her political activities seem to be confined to raves against the occupation"". Yelli and Noam naturally don't object to participating in these. Lulu and her political friends make t-shirts with the rave's logo, put up posters and hand out booklets advertising it in the neighbourhood. Their main concern seems to be that there are never any actual Palestinians participating and that the police might come and spoil all the fun for them again. The closest they come to an actual confrontation is when they get into a scuffle with some not so Palestinian-friendly locals who try to prevent them from handing out the leaflets. In other words, predictable products of the bubble"".<br /><br />The opening scenes of the film take us to a checkpoint on a road to Nablus where we also find Noam doing his reserve duty. A group of Palestinians is being thoroughly checked before entering Israel, among them a pregnant woman who suddenly goes into labour and gives birth to a stillborn child despite the best efforts from Noam and the doctor who eventually arrives in an ambulance. The woman is comforted by a young man who later turns up on Noam's doorstep in Tel-Aviv with his ID which the latter obviously dropped during the ordeal on the border. His name is Ashraf, he's Palestinian and he's gay. And he hasn't just come to hand back the ID, he has come to see Noam. Without a permit to live in Israel and despite the initial hesitation from Noam's flatmates he stays. He soon gets a Jewish name and a job at Yelli's cafe. Having grown up in Jerusalem with Hebrew, he doesn't have an Arabic accent which makes it possible for him and his newly found friends to conceal his identity. The sky is light blue and the air is sweet. But it cannot last. For he has become part of an equation which was never meant to be.<br /><br />At one point, Noam and Ashraf watch a play called Bent about two prisoners in a Nazi concentration camp who have a love relationship which can never become physical or visible to the surrounding guards. They find a way of being together on another level, a metaphysical one, a level where no one else has access. This is also where our couple arrives in the end. And it couldn't have been much different for them, not in today's Israel.<br /><br />The Bubble"" is a political statement about the bubble that bursts when confronted with the political realities of today's Israel set against the background of a beautiful and awkward love story involving an Israeli and a Palestinian, the impossible love story in a divided world where no such things as compromise or other colours than black and white exist. The Bubble"" is also a beautiful film about people, gay and straight, inhabiting that strange city, Tel-Aviv, shown through the eyes of people who really care about them. The film's premise may have its flaws and the fatal chain of events may seem somewhat construed, but its strong message and emotional impact will not leave you untouched.",1 +18945,"I must admit I do not hold much of New Age mumbo jumbo. When people ""exchange energy"" I always wonder how much kJ is actually exchanged and how it may contribute to solving the global warming problem. When energy ""is enforced"" I always wonder how they managed to violate the laws of entropy and still are without Nobel prizes. When people feel how well instinct enables them to flawlessly navigate through the complexities of life I wonder how they fail to do a simple thing like finding the train station.<br /><br />But then again, this is not the first movie with plot holes and most of them I find perfectly acceptable and entertaining. If this were the case with ""The Celestine Prophecy"" I wouldn't burn this movie down, but unfortunately it isn't. Every actor seems to be bored out of his head and unable to grasp what he are actually supposed to be doing on location. This results in many ""Ah-s"" and ""Oh-s"", like I tend to do when talking about quantum physics with somebody who actually knows what he is talking about and pretend to understand.<br /><br />The direction is uninspired as well. You might expect something more from the guy who did ""What dreams may come"", but hey, I supposed he got well paid for the job and adopted the attitude of a New York taxi driver: ""It's your money, buddy.."" The only one who seems to be having fun is all-time bad guy Jürgen Prochnow. Not only does he have a job, he is one of the few actors in this movie who may have a few wise cracks at this eternal and terribly boring New Age chatter.<br /><br />This movie is much like one of these dinner dates when you find out that your date is actually a horrible bore who seems to be unable to shut up. At one moment in time it seems the words turn into small ping pong balls that are thrown to your head incessantly until it hurts.<br /><br />If you want to have a good time and have to choose between this movie and sticking safety pins in your eyelids, take my advise: choose the latter.",0 +20185,"First off - there's absolutely no flirting going on in this film - with Anthony or anyone else. These people don't flirt - they just do it. Your first test of endurance is to wade through more than 15 minutes of intense violence and sexual perversion. This wouldn't be so bad - hell, I like violence and perversion as much as the next reviewer, but without a context to put it in, it is repellent. So you make it through the torture and mayhem. Then we meet Donna and the movie turns into something all together different - not better - just different: a road picture without heart. There are lame attempts at comedy thanks to cameos - broadly written and broadly played by broads like Judy Tenuta and Mink Stole (and a few hookers and drag queens, too). They all deserve better. The photography is purposely disorienting, so if you get motion sickness (or really ANY kind of sickness) - this flick is not for you. Come to think of it, I'm not sure just who this flick IS for -except maybe gay and bi-sexual S&M fans who like poorly scripted, poorly shot indy films about themselves.",0 +20639,"In THE FAN Robert De Niro plays Gil Renard . Or is it Travis Bickle ? or Rupert Pupkin ? Or Max Cady ? You see the problem with this type of role is that De Niro has played very very similar characters in TAXI DRIVER , THE KING OF COMEDY and CAPE FEAR and unfortunately the characters were better developed and had better scripts . I found it slightly difficult to believe that Renard would have started out as a frustrated obsessive sports fan into being an out and out psycho<br /><br />The character arc isn't the only problem with this script - It also lacks a character focus ( A problem I had with THE UNTOUCHABLES where De Niro should have been superb but ended up slightly flat ) , for several stretches of the movie I kept thinking that Bobby Rayburn was the main character then the story switches back to Renard . It also seems to have disappointed a lot of sports fans who seem to think this should have concentrated a bit more on baseball . I'm not sure if this was meant to appeal to baseball fans originally but again there are elements which hint it might have if the producers had made up their minds has to who and what the story should focus upon <br /><br />I will admit I was entertained by THE FAN ( Especially by the soundtrack ) but it is a very flawed film and it should be remembered that by the mid 1990s characters being stalked by nutters as in SINGLE WHITE FEMALE , UNLAWFUL ENTRY etc had run out of steam a long time ago",0 +12682,"I just saw this at the Venice Film Festival, and can't quite decide about it. We were never allowed to get close enough to any of the characters to care about them. Maybe that was the point, that we are all in a ""bubble"" of our own, but these people didn't compel me to be concerned about them or shocked at their various fates. At a running time of just over an hour, the characters weren't very well developed. Lots of time was devoted to shots of factory equipment (forklifts, conveyor belts, shovels); and the slightly-creepy-looking baby dolls with surprisingly lifelike eyes, that most of the characters made for a living, were somehow more interesting than the live people. An interesting experiment, but somehow it never quite came together.",0 +10539,"Due to the invention of a ""The Domestication Collar"", flesh-eating zombies are brought under control, and become productive members of society; however, they perform menial tasks. The servile dead attend to those living in fenced US 1950s-styled small towns, while untamed zombies roam around in ""The Wild Zone"". In the town of ""Willard"", pre-teen K'Sun Ray (as Timmy Robinson) lives with parents Carrie-Anne Moss and Dylan Baker (as Helen and Bill Robinson). Alas, the Robinsons are the only family on their street who do not own a zombie; their new neighbors, the Bottoms, have six. So, to keep up, the Robinsons obtain zombie Billy Connolly (as Fido).<br /><br />Unfortunately, Mr. Connolly's ""Domestication Collar"" is damaged by an old lady's walker, and he eats her; then, new and hungry zombies infest the town. Meanwhile, young Ray has grown attached to Connolly (the boy and his zombie are like TV's ""Timmy and Lassie"") and, the Robinson family find it difficult to cooperate with the controlling ""Zomcom"" authorities. <br /><br />""Fido"" doesn't go far enough into its own intriguing ""Wild Zone""; but, it is a colorful, stylish, and amusingly satirical addition to zombie film lore. Ray and the cast perform well, individually; with nubile zombie Sonja Bennett (as Tammy) and owner Tim Blake Nelson (as Theopolis) the most memorable pair. Director Andrew Currie and crew, including Rob Gray (design), Jan Kiesser (photography), Don MacDonald (music), and James Willcock (design), deservedly won awards.<br /><br />******* Fido (2006) Andrew Currie ~ K'Sun Ray, Carrie-Anne Moss, Billy Connolly, Dylan Baker",1 +8841,"By submitting this comment you are agreeing to the terms laid out in our Copyright Statement. Your submission must be your own original work. Your comments will normally be posted on the site within 2-3 business days. Comments that do not meet the guidelines will not be posted. Please write in English only. HTML or boards mark-up is not supported though paragraph breaks will be inserted if you leave a blank line between paragraph.We sent an e-mail to when you registered. You must click on the link in that e-mail to complete your registration and enjoy the full benefits of being registered at IMDb.com. Whilst you wait for that e-mail, you can still update some of your registration details by using the links below. Don't forget to keep checking your e-mail though!",1 +6859,"A doctor and a policeman in New Orleans have only 48 hours to locate a killer infected with pneumonic plague.<br /><br />An effective, and classy, little thriller directed by Elia Kazan that blends documentary realism with a race against time pulpy heartbeat. Set and filmed in and around New Orleans, Panic In The Streets is taken from the story Quarantine, Some Like 'em Cold by Edna and Edward Anhalt who won an Oscar for original story. It also boasts a fine ensemble cast that deliver top rate performances for their director. In turn, Richard Widmark {bringing the method a year before Marlon did for Kazan in A Streetcar Named Desire}, Paul Douglas, Jack Palance (as Walter Jack Palance) & the wonderfully named Zero Mostel, all get sweatily moody as the pursuers chase the pursued to halt the onset of a potential Black Death epidemic.<br /><br />Where the film scores its main suspense points is with Kazan's astute ability to cut back and forth between the protagonists without altering the flow and mood of the piece. From Widmark's Public Health doctor, with hypodermic needle in hand, running around trying to locate the bad guys so he can do good; to the bad guys themselves who are bemused as to why there is such a wide scale hunt for them; the tension is stacked up to fever breaking point. To which thankfully the final thirty minutes becomes a cracking piece of cinema. With Palance excelling as a nasty villain that ironically puts one in mind of Widmark's own Tommy Udo from Kiss Of Death three years prior.<br /><br />It's an imaginative and intelligently written story, one that cunningly links rats and criminals to being carriers of disease. A blight on society as it were. It's noirish elements, such as paranoia, blend nicely with its basic procedural thriller being. While some memorable scenes are suitably cloaked by the stifling atmosphere that Kazan has created. Although some of the early character psychologizing threatens to steer the film down some over talky based alleyway, this definitely is a film worth staying with to the end. Not essential film-noir, and maybe not even essential Kazan, but certainly a highly recommended film that begs to be discovered by a new generation of film lovers and reappraised by the old guard who may have missed it back in the day. 7.5/10",1 +10973,"My god ! Buttgereit's masterpiece is one of the best movies I've ever seen. Closer to Peter Greenaway and Jean-Luc Godard's movies, this one is really disturbing but not gruesome as the Nekromantiks. All the little stories have a deep philosophic interest and the directing is totally inventive, in spite of the lack of money (see the ""bridge"" sketch). Highly highly recommended !",1 +20689,"there are three kinds of bad films - the cheap, the boring, and the tasteless. the only really bad movies are boring and tasteless. <br /><br />boring films are just, well, boring - if you don't leave quickly enough, you fall asleep.<br /><br />tasteless films actually have their defenders; but the fact remains that they are masturbatory aids for very sick people.<br /><br />only the cheap bad films are really funny, because the filmmakers wanted to make their films so desperately, they way-over-reached beyond their abilities and available resources.<br /><br />Bo Derek is just naturally boring and tasteless; fortunately, fate and a lack of funds and skill redeem her by making her seem cheap as well. this film is hilarious and it may well be the last really funny-bad film ever made.<br /><br />i first saw this in a theater, may god forgive me; i was laughing so hard i was rolling off my seat, and so too with most of the rest of the audience.<br /><br />it's clear that Derek and her husband-promoter, conceived of this film as, partly, a satire; unfortunately, the dereks clearly lacked any of the necessary resources to pull that off; consequently, the 'satirical' element comes off as some school-girl's impression of some gay young man's impression of frank gorshin's impression of the riddler in batman trying to pretend he's robin - it doesn't fly over our heads, it has no clue where any human head might be.<br /><br />on the other hand, there are some supposedly serious moments in this film - it is supposed to be an action film, remember - that are so astoundingly cheesy, one wonders if someone squirted spoiled milk in one's eye.<br /><br />as for Derek's infamous tendency to reveal her breasts - i can't imagine a less erotic nudity photographic display, she is so weird looking with those broad shoulders, i can't imagine what any one ever saw in her.<br /><br />as for the plot - such as it is - well, it isn't; Derek chases around Africa, and god alone knows why. then her father - Harris - pretends to act in some maniacal puppet-show, and then of course there's the hunk'o'Tarzan that seems to have wondered in from advertisement without knowing that the subject's changed - probably because he hasn't seen a script - apparently no one has.<br /><br />negligible camera work, shoddy editing - if it weren't for the 3-way with the chimp, the film would be unbearable -<br /><br />as it is, it's a real hoot.",0 +10625,"First of all, I think the below comment is unworthy for a site like this. Obviously you have no taste and you don't respect the taste of others. Not to give you a history lesson but I think it needs to be done. Black actors out there are just, if not more, successful as others. If you are not a part of the ""Black"" race you cannot understand the quality, creativeness, and vibrant of old movies such as ""Sparkle"" and ""Mahogany"" and ""Cooley High."" Since unfortunately you are not Black, you do not have the pleasure of feeling what we feel when we watch these classics, so therefore you need to keep your freaking mouth shut and just stick to your non-dancing race. Thanks.",1 +954,"This movie was a fairly entertaining comedy about Murphy's Law being applied to home ownership and construction. If a film like this was being made today no doubt the family would be dysfunctional. Since it was set in the 'simpler' forties, we get what is supposed to be a typical family of the era. Grant of course perfectly blends the comedic and dramatic elements and he works with a more than competent supporting cast highlighted by Loy and Douglas. Their shenanigans make for a solid ninety minutes of entertainment, 7/10.",1 +7404,"This happy-go-luck 1939 military swashbuckler, based rather loosely on Rudyard Kipling's memorable poem as well as his novel ""Soldiers Three,"" qualifies as first-rate entertainment about the British Imperial Army in India in the 1880s. Cary Grant delivers more knock-about blows with his knuckled-up fists than he did in all of his movies put together. Set in faraway India, this six-fisted yarn dwells on the exploits of three rugged British sergeants and their native water bearer Gunga Din (Sam Jaffe) who contend with a bloodthirsty cult of murderous Indians called the Thuggee. Sergeant Archibald Cutter (Cary Grant of ""The Last Outpost""), Sergeant MacChesney (Oscar-winner Victor McLaglen of ""The Informer""), and Sergeant Ballantine (Douglas Fairbanks, Jr. of ""The Dawn Patrol""), are a competitive trio of hard-drinking, hard-brawling, and fun-loving Alpha males whose years of frolic are about to become history because Ballantine plans to marry Emmy Stebbins (Joan Fontaine) and enter the tea business. Naturally, Cutter and MacChesney drum up assorted schemes to derail Ballentine's plans. When their superiors order them back into action with Sgt. Bertie Higginbotham (Robert Coote of ""The Sheik Steps Out""), Cutter and MacChesney drug Higginbotham so that he cannot accompany them and Ballantine has to replace him. Half of the fun here is watching the principals trying to outwit each other without hating themselves. Director George Stevens celebrates the spirit of adventure in grand style and scope as our heroes tangle with an army of Thuggees. Lenser Joseph H. August received an Oscar nomination for his outstanding black & white cinematography.",1 +5944,"An ultra-nervous old man, ""Mr. Goodrich,"" terrorized by the news that a gang is stalking the city and prominent citizens are disappearing, really panics when someone throws a rock through his window with a message tied to it, saying ""You will be next!"" <br /><br />He calls the detective agency wondering where are the guys he asked for earlier. Of course, it's the Stooges, who couldn't respond because had come into the office, robbed them and tied them up. Some detectives! The moment poor Mr. Goodrich hangs up the phone and says, ""I feel safer already,"" a monster-type goon named ""Nico"" appears out of a secret panel in the room and chokes him unconscious. We next find out that his trusted employees are anything but that. Now these crooks have to deal with the ""detectives"" that are coming by the house for Mr. Goodrich.<br /><br />Some of the gags, like Moe and Larry's wrinkles, are getting a bit old, but some of them will provoke laughs if I see them 100 times. I always laugh at Shemp trying to be a flirt, as he does here with Mr. Goodrich's niece, in a classic routine with a long, accordion-like camera lens. The act he puts on when he's poisoned is always funny, too. Shemp was so good that I didn't mind he was taking the great Curly's place.<br /><br />Larry, Moe, Curly/Shemp were always great in the chase scenes, in which monsters or crooks or both are chasing them around a house. That's the last six minutes in here. At times, such as this film,",1 +16999,Terrible movie. Nuff Said.<br /><br />These Lines are Just Filler. The movie was bad. Why I have to expand on that I don't know. This is already a waste of my time. I just wanted to warn others. Avoid this movie. The acting sucks and the writing is just moronic. Bad in every way. The only nice thing about the movie are Deniz Akkaya's breasts. Even that was ruined though by a terrible and unneeded rape scene. The movie is a poorly contrived and totally unbelievable piece of garbage.<br /><br />OK now I am just going to rag on IMDb for this stupid rule of 10 lines of text minimum. First I waste my time watching this offal. Then feeling compelled to warn others I create an account with IMDb only to discover that I have to write a friggen essay on the film just to express how bad I think it is. Totally unnecessary.,0 +18959,"Disney has now made straight-to-video sequels to a good bunch of their many animated features. Two of these were made for their 1991 classic, ""Beauty and the Beast"". Well, these ones aren't really sequels, as they are both set in between the events of the first film. The first of these two straight-to-video films was ""Beauty and the Beast: The Enchanted Christmas"", which seems to be disliked by quite a few fans of its theatrical predecessor, but I think that can usually be expected with sequels. However, this second one, ""Belle's Magical World"", is definitely inferior.<br /><br />The film features three short stories, all of which take place while Belle is in the castle, and the place is under the spell of the enchantress. The first is ""The Perfect Word"", where a misunderstanding at the table between Belle and the Beast leads to trouble, and neither wants to be the first to apologize. The next story is ""Fifi's Folly"", where Fifi and Lumiere's fifth anniversary is coming up, and Lumiere is unprepared, so Belle helps him. However, Fifi sees Lumiere practicing romance with Belle, and thinks they're actually in love. The film ends with ""The Broken Wing"". In this story, Belle takes care of a bird with a broken wing, but a bird in the castle will probably mean trouble if the Beast finds out, as he hates birds! <br /><br />The plot description I gave is for the original VHS version of Disney's third ""Beauty and the Beast"" movie. Apparently, in the DVD version, there is another story added called ""Mrs. Potts's Party"", but I've only seen the original version. However, since I highly doubt that one story would stand out as a classic over the rest, I see no point in watching the special edition. Anyway, the first thing I will say about ""Belle's Magical World"" is that the animation is very 2-dimensional compared to what we're used to from Disney, which would obviously disappoint many people. I didn't like ""Beauty and the Beast: The Enchanted Christmas"" that much, but you certainly can't say the same about its animation. I'm sure the stories in ""Belle's Magical World"" could entertain many kids (mostly younger ones, I think), and each story has a moral, so they could also teach them some valuable lessons. However, for adults, the film really doesn't have a lot. I personally didn't find any good humour in it, found that the constant conflict between Belle and the Beast got tiring, and the stories did not impress me too much at all in any way (they're not very well written). In ""The Perfect Word"", the way Belle says to the Beast, ""You're acting rude... and foolish!"" is a bit cheesy, and I think there are quite a few other cheesy moments in these stories.<br /><br />By the time this straight-to-video movie first came out, I was around eleven or twelve years old. I don't know what I would have thought of it at the time, as I had lost interest in Disney by then, and it would be years before I would gain any of that interest back. Even when this movie was first released, I think I was a bit past the age group it was aimed at. I never saw ""Beauty and the Beast: The Enchanted Christmas"" until a couple months ago, but unlike that film, I never even heard of this one until recently, I think just after seeing the first sequel to Disney's 1991 hit. Well, as much as I like the theatrical original, I wouldn't have been missing much if I never became aware of this film's existence. For little kids, I'm sure ""Belle's Magical World"" can be highly entertaining, and probably somewhat educational with its morals, but I do not recommend it for adult Disney fans.",0 +53,"Every once in a while the conversation will turn to ""favorite movies."" I'll mention Titanic, and at least a couple people will snicker. I pay them no mind because I know that five years ago, these same people were moved to tears by that very movie. And they're too embarrassed now to admit it.<br /><br />I just rewatched Titanic for the first time in a long time. Expecting to simply enjoy the story again, I was surprised to find that the movie has lost none of its power over these five years. I cried again.... in all the same places. It brought me back to 1997 when I can remember how a movie that no one thought would break even became the most popular movie of all time. A movie that burst into the public consciousness like no other movie I can recall (yes, even more than Star Wars). And today, many people won't even admit they enjoyed it. Folks, let's get something straight -- you don't look cool when you badmouth this film. You look like an out of touch cynic.<br /><br />No movie is perfect and this one has a few faults. Some of the dialogue falls flat, and some of the plot surrounding the two lovers comes together a little too neatly. However, none of this is so distracting that it ruins the film.<br /><br />Leonardo DiCaprio and Kate Winslet are wonderful. Leo is one of the fine actors of his generation. Wait 'til you see him in Gangs of New York before you call him nothing more than a pretty boy. Kate Winslet was so strong in this film. The movie really was hers, and she held it together beautifully.<br /><br />James Cameron managed what many believed was impossible by recreating a completely believable Titanic. The sinking scenes were horrific, just as they were that night. How anyone can say the effects were bad is beyond me. I was utterly transfixed.<br /><br />This film is one memorable scene after another. Titanic leaving port in Southampton. Rose and Jack at the bow, ""flying"". ""Iceberg, right ahead!"" The screws hanging unbelievably out of the ocean. The screams of the doomed after she went down. And that ending that brought even the burliest man in the theater to tears.<br /><br />The music, which has also been a victim of the film's success, was a key ingredient. James Horner's score was simply perfect. And the love theme was beautiful and tragic. Too bad Celine Dion's pop song version had to destroy this great bit of music for so many.<br /><br />I confess, I am a Titanic buff. As such, I relished the opportunity to see the ship as we never got to see it -- in all its beauty. Perhaps watching it sink affected me more than some because I've had such an interest in the ship all my life. However, I doubt many of those I saw crying were Titanic buffs. I applaud Cameron for bringing this story to the masses in a way that never demeaned the tragedy. The film was made with such humanity.<br /><br />Another reviewer said it better than I ever could: Open up your hearts to Titanic, and you will not be disappointed.",1 +6410,"If anyone is wondering why no one makes movies like they used to, with conversation, character and a simple theme of friendship struggling to evolve into something new, better and different, those folks need to take in this film and see top notch writing, directing, and acting that melds into a wonderful evening of observation on how things used to be in Italy and England. Other days, other times funneled into a terrific comedy of entertainment, made in 1992 with Alfred Molina, Joan Plowright, Polly Walker, Josie Lawrence, Jim Broadbent, Miranda Richardson, and Michael Kitchens in the major roles. Under the brush stroke direction of Mike Newell, these actors accomplish vividly memorable performances that are photographed with a sublimely subtle painter's eye. Reminiscent of the theatrical bedroom farce of the turn of the century, this film might be called a friendship farce that becomes a worthwhile experience in the growth of the romantic nature within each character, and the viewer, too. An artistic telegram on the importance of caring about those around us.",1 +19724,"I read some comments on the internet about this film like ""...harder then Hostel..."", ""the camera never screens of when it's getting really brutal..."". But none of them is true. The camera never screens of, because there is nothing to screen of. The same scene is repeated hundred and hundred times again. Women lies on a table, killer rapes women a few times, killer cuts women into pieces (you never see this during the whole film!). Police come and arrested him. Killer fools the jury. Film over. In Germany we would say :""Viel Lärm um Nichts"". All in all, one of the most boring films I ever see. Absolutely non-recommendable.",0 +3516,"This show is awesome. I thought that the two episodes where Paul died were so sad; I actually cried. But the other shows were awesome; Kerry was my favorite character, because she was in ""the dark side."" I also thought that Bridget was funny because she was all perky. I also thought that guy who played Kyle was really, really cute. I loved it when Kerry made sarcastic remarks about everything. The guy who played Rory was cute, and Paul, played by John Ritter, was really funny. This whole entire TV show is funny, and I wish they still showed it on TV. when they did show it on TV, though, I watched it every single time it was on. The next time it shows, I will watch it over and over again.",1 +19275,"I just rented this today....heard lots of good reviews beforehand. WOW!! What a pile of steaming poo this movie is!! Does anyone know the address of the director so I can get my five dollars back???? Finally someone bumped ""Stop-loss"" from the 'Worst Iraq War Movie Ever' number one spot. To be fair, I don't think there are any good Iraq war movies anyway, but this was REALLY bad. <br /><br />I won't get into any technical inaccuracies, there's a hundred reviews from other GWOT vets that detail them all. If the director bothered to consult even the lowliest E-nothing about technical accuracy however they could've made the movie somewhat realistic....maybe. I guess the writer should be given the ""credit"" for this waste of a film. He or she obviously hatched the plot for this movie from some vivid imagination not afflicted with the restraints of reality. Does anybody but me wonder what the point of this movie was? Was there a message? Seriously though.....WTF????<br /><br />I'm pretty amazed at all the positive reviews really. This film is hard to watch as a vet because of all the glaring inaccuracies but even if one could overlook that, the plot sucks, characters are shallow (to say the least) and the acting is poor at best. It's ironic, I suppose, that this movie is supposed to be about Explosive Ordinance Disposal, because it's the biggest bomb I've seen this year.",0 +20029,"Revolt of the Zombies is BAD. There is nothing remotely entertaining about the movie. It is dull, lifeless, poorly acted, and poorly scripted. I've often complained that the original Dracula is a little slow for my taste, well this movie makes Dracula look like a roller coaster ride. The 65 minute running time seemed like 165 minutes.<br /><br />The story: An expedition is sent to Cambodia to find the secrets of mind control through ""zombification"". One man finds the secret and uses it to make the woman he loves marry him. Once this happens, he releases the zombies under his control to horrific consequences. That's it. That's the whole story.<br /><br />For most of the movie, I was trying to figure out where I had seen the male lead. He looked so familiar. I had plenty of time to think this over. Nothing was happening in the movie. Just before the ""zombies revolted"", it hit me. It was Dean Jagger. I had seen him recently as the General in White Christmas. This is how I ""entertained"" myself throughout most of the movie.<br /><br />I'm just glad I didn't buy the DVD for this movie. King of the Zombies is on the other side and it's a masterpiece of film making compared with this movie. For what it's worth, I'll give it a 2/10. (I won't go to 1/10 because, believe it or not, I've seen worse.)",0 +11748,"I've read a few of the reviews and I'm kinda sad that a lot of the Story seems glossed over. Its easy to do because its not a Book, its a movie and there's only so much that can be done in a movie- US Or Canadian- or anywhere.<br /><br />Colm Feore does, at least for a recovering ""F@g-Hag"" like myself, a great job of not only playing the 'friendly neighborhood' gay man- but playing sick. I mean, the man really can't get much more pale! Though, you might never know it from the strip down near the... um, end.<br /><br />If you need decrepit, there are a few SKing movies you might like.<br /><br />Being the daughter of a Recovering Alchoholic, the druggie brother {David Cubitt} was the trick for me. I'm going to give him cred, he grew up quick- and believe me that's good. And, as an Aspiring writer, moimeme, I can dig a lot of his insights and overviews. But I'm more prosy than poetic.<br /><br />I may be easy to please, but I enjoyed it. A nice story pretty well put together- by Canadians, quelle surprise. Just toed the line of the 'Movie of the week,' missing it by not being as drawn out, GREATLY Appreciated. And it was rather cleverly portrayed.",1 +489,"This movie is intelligent. That is, more than most other movies, it transcends the least common denominator - stupid people will probably not appreciate it. The story also relies heavily on dialogue. It has some parallels to Lost in Translation, although Before Sunrise is much brighter, somehow less abstract, and simply a lot better.<br /><br />The script, the characters and even the slightly surreal atmosphere feel totally realistic. The actors play absolutely brilliantly. Rarely have I seen a movie where the script and the acting has melted this perfectly together.<br /><br />The dialogue moves into very personal issues, with the risk of becoming a little over the top. It does, however, stay on the right side almost all the time, although I found a few moments a little awkward and embarrassing. Balancing on this fine line demands outrageously talented actors. Sometimes, it yields great results, and overall this movie is simply stupendous! Only very, very rarely is ""love"" in films depicted in a way that I find trustworthy and realistic. Every time that is achieved, the result is fantastic. I think the stunning and apparently timeless beauty of the female lead actress helped quite a bit in this respect. She still looks stunning in this film, 12 years after.<br /><br />This is simply a gem of a movie that you can't miss. One of the best movies I have seen from the 1990s!",1 +13145,"There was not one original idea in this story. Themes were pulled from various sources; a few being The Ninth Gate, In the Mouth of Madness (another Carpenter film), and The Ring. It even went as far as featuring the same damn glowing circle from The Ring and using it as the film's namesake. The soundtrack by Cody Carpenter was all but lifted from Suspiria. Hopefully no one will oppose this comment by spewing the word HOMAGE around. Yes, I saw that the theater was playing Argento's Deep Red. Claiming an homage would be a bullshit cop-out. This was bottom-of-the-barrel. Throwing gore and ""disturbing"" imagery into the pot does not make a good horror film. Carpenter used to know that. He should fade into obscurity or acquire a time machine.",0 +15935,"This is my first movie review on IMDb. I was forced to register after watching this movie. I cannot in good conscience allow this movie to be unreviewed by me. The people must be warned!<br /><br />First of all, my rating is: 0 (as in ""zero"")<br /><br />I love Jack Black, Ben Stiller, Rachel Weis, and Christopher Walken, and yet, I hated this movie. There is a plot, but who cares when there's no script. The dialogue is unreal and plain boring, the situations are contrived, the flow of events is slow and somewhat arbitrary, the characters are unsympathetic and uninteresting, and the story, although based on a good premise, is stupid. This movie is a piece of poo.<br /><br />Never mind wasting MONEY on this movie, it's not even worth your TIME spent watching it. Please do not see it... I beg of you!",0 +18196,"The plot of "" Astronuat returns to Earth as a mutating monster "" died out in the 1950s mainly down to the scientific fact that travelling outside the Earth's orbit doesn't humans cause to turn in to mutated monsters , and that the first film to use this plot THE QUATERMASS EXPERIMENT was the only decent sci-fi movie to use the idea . So the idea of having the redundant plot return seems doomed from the start . Alas watching THE INCREDIBLE MELTING MAN it seems the plot is the least of its problems <br /><br />First of all this is an incredibly badly made movie . The budget is in single figures and I'm talking about lira not dollars . There is no cinematography to speak of and there's countless editing blunders . For example a photographer takes his ( Barely legal ) model for a photo shoot . Cut to a shot where the sun is directly behind model , then cut to shot of photographer where the sun is directly behind him, then cut back to the model where the sun is ...<br /><br />The lack of budget drags the film down in other aspects too . According to the trivia page the budget was so low the producers couldn't get any stock footage of Saturn so when astronaut Steve West mentions how beautiful Saturn looks we get footage of the sun . Actually the sun gives the most impressive performance in the film since the human actors wouldn't be employed by a porn studio . If I was appearing in this I wouldn't be scared by the eponymous monster - I'd be terrified of splinters from the rest of the cast . Perhaps we should be slightly forgiving though since the obvious lack of budget manifests itself in things like the actors having to wear their own clothes . A general for instance doesn't wear his nice fancy dress uniform complete with medals - he wears a denim jacket and baseball cap <br /><br />There has to be suspension of disbelief for a film like this to work but it fails on every level . The tone is set early on in the film where Mr Melty murders a nurse and escapes from the hospital . Instead of the police getting a call saying there's been a murder Dr Nelson just decides to track down his patient on his own own same as he'd look for a missing cat . It's also strange a thoroughly decomposing homicidal monster can walk down the road without anyone noticing , but this is typical of a film where horny 70 year olds stop their car down dark roads for a quickie and people nonchalantly mention their wife is pregnant whilst forgetting to tell the police that there's a monster on the loose .<br /><br />THE INCREDIBLE MELTING MAN is Z grade rubbish . I can certainly understand why people enjoy this movie because it does reach the heights of "" It's so bad it's good "" but apart from Rick Baker's sometimes impressive make up effects it's nothing more than a very guilty pleasure",0 +22562,"I picked this DVD up at the Dollar Store. The DVD was on the 2 for $1 rack, but since it had Michael Madsen in it, I thought that since I had never seen the movie, I bought it anyway.<br /><br />I must say that I didn't like the movie. The movie played more like a documentary or an advertisement for religion than anything else. I found that the director's use of flashbacks did not add to the story line for me. I would have preferred to view the story line in chronological order.<br /><br />I won't throw it away like one of the other commentators, but It may be quite awhile before I would consider watching this movie again.<br /><br />Who knows, since it was Michael Madsen's film debut, maybe it might have some archival value at some future date.",0 +17374,"I, like many people, saw this film in the theatre when it first came out in '97. It was a below average film at best, defiantly not the ""masterpiece"" that all these ""Titanic"" fanboys like to make it out as. First off, DiCaprio is a terrible actor no matter which way you look at it. People just like him because of his looks. His acting ""skills"" essentially consist of saying a lot of cheesy lines and trying to act sexy. Second, the film itself had a rather boring and simple plot: girl falls in love with guy, ship they're on sinks, lots of crappy love scenes thereafter. Anyone with an IQ above 50 will realize this isn't ingenious in any way whatsoever. Nor is it original. Plus the director felt the need to drag it out for 3+ hours. I could compress it into a 1 hour block without losing any of the plot. In conclusion, ""Titanic"" is the most overrated movie to date. Why it got so much attention and money is beyond me.",0 +24561,"""La Lupa Mannara"" aka. ""Werewolf Woman"" of 1976 is a film with a highly promising title, but, sadly, the film itself is pretty far away from being a must-see for my fellow Italian Horror buffs. You won't hear me say that Rino Di Silvestri's film is entirely bad - it has its stylish moments, and the first half is actually great fun to watch (though the fun is unintentional). The film also profits from an exceptionally exhibitionist leading actress, Annik Borel. However, the film, which has no real plot (at least no linear one) often makes no sense at all, and it drags incredibly throughout the mostly superfluous second half.<br /><br />Daniella (Annik Borel) has strange dreams about a dancing around naked in the night before turning into a Werewolf Woman. Since she was a raped as a girl, Daniella is afraid of men. Then, when her sister (cult siren Dagmar Lassander) comes to visit with her husband, Daniella suddenly feels attracted to the husband and subsequently turns into a Werewolf Woman herself... or something. The storyline really doesn't make the slightest sense, which makes the film a lot of fun to watch throughout the first half. The leading character Daniella is some schizophrenic mixture of frigid hysteric and lusty nymphomaniac, who occasionally turns into a werewolf woman. Director Di Silvestri chose to make up for the plot-holes with a lot of of female nudity, which works fine for me. There are also some pretty well-done gore moments. The film is never even slightly suspenseful or creepy, but it is very entertaining in the beginning. Also, there are no attempts to hide that this is a slice of sleaze, the camera often does close-ups on the Miss Borel's private parts for the simple heck of it. I'm not complaining. Then, for some reason, Di Silvestri chose to make the film longer by completely changing the direction in which it was going. While Daniella is, at first, a typical werewolf, who cannot help but follow the urges of her curse, this suddenly changes when she meets a guy (Howard Ross, who was in Fernando Di Leo's ""Il Boss"" of 1973). Suddenly, she goes back to normal again, and the subsequent part of the film does not at all go in hand with the first half. It gets pretty damn boring after a while; all things considered, it probably would have been better for this 99 minute film to be only 70 minutes long. At the end, they even want to make us believe that the absurd story (if one can call it that) is based on true events. ""Werewolf Woman"" has some redeeming qualities; my fellow Italo-Horror fans can give it a try. However, if you wanna watch Italian Horror/Exploitation cinema from the 70s, there are hundreds of films that you should see before seeing this one.",0 +21645,"Damp telling of the American Revolution.<br /><br />When farmer 'Tom Dobb' (Al Pacino) and his son arrive in New York Harbor, they are immediately conscripted by street urchin Annie Lennox... Annie Lennox?... to contribute to the war effort.<br /><br />After getting chopped down by bits of chain-link fired from British cannons, Tom and his son are promptly chastised by Continental Army sympathizer 'Daisy' (Nastassja Kinski) for 'not standing their ground'. Following this Kodak moment, a series of digressive chapters take place including Tom's participation in a 'foxhunt' in which he must carry a model of ""poor old Georgie Washington"" stuffed in effigy while running from a lace handkerchief-wielding English captain (Manning Redwood), and having a barbecue with a group of Iroquois Indians as they plan on the best way to sneak back into the fighting so Al and his ingrate kid can kick the crap out of British officer Donald Sutherland's butt.<br /><br />Director Hugh Hudson presents a unique style of film-making and the atmosphere is as thick as the proverbial London fog, but the scriptwriter's painting of the redcoats as evil monsters once again reveals Hollywood's patented hatred of the British.<br /><br />Steven Berkoff appears as an enlisted American soldier.",0 +11705,"I saw this film at the Toronto International Film Festival. Filmed during an actual qualifying match for the 2006 World Cup, Offside works brilliantly as both a comedy and a tragedy. The film follows the fortunes of a group of young women who are caught trying to sneak into a football match at Tehran's Azadi Stadium. The country's Islamic religious leaders have decreed that women may not sit with men at sporting events, lest they be exposed to cursing and other morally questionable behaviour. This hasn't stopped the country's young female fans, who continue to sneak in using various tricks. But Panahi focuses on a small group who have been caught and are being detained agonizingly close to the action. They beg the bored soldiers guarding them to let them go or at least to let them watch the match. The soldiers tell them they shouldn't have tried to get in, that they could have watched the game at home on TV. They banter back and forth in almost real-time as the game continues, just off- camera.<br /><br />There is one very funny sequence where a young soldier accompanies one of the girls to the restroom. Since there are no female restrooms at stadiums, he has to clear the room of any men before he can allow her to go in. Plus, he makes her cover her face so no one can see she's a woman. This is accomplished using a poster of Iranian soccer star Ali Daei as a mask, with eye holes punched out.<br /><br />You get a real sense that even the soldiers are baffled by the prohibition, and are only carrying out their orders so as to hasten the end of their compulsory military service. One soldier complains that he was supposed to be on leave so he could take care of his family's cattle in the countryside. Little by little, the girls and the soldiers talk to each other, and there are numerous small acts of kindness on both sides to show that these are basically good people living in terrible circumstances. However, the soldiers' constant reminder that ""the chief"" is on his way lends a sense of menace, since we don't know what sort of punishment the women will face.<br /><br />Unlike most Iranian films, which are known for their strong visuals, Offside is filmed in a realist style with no artifice. In fact, the film was made during the actual qualifying match against Bahrain that took place on June 5, 2005. The ""plot"" in many ways was determined by the result on the pitch. If Iran won the match, they would qualify. If they lost, they would not. Since the World Cup has come and gone, I don't think it is a spoiler to say that Iran won the match. The scenes of celebration at the end of the film were real and spontaneous, which gave the film a real authenticity. Seeing how much this meant to the people of Iran was deeply touching.<br /><br />As well, one of the young women makes reference at the end of the film to seven fans who died during the Iran-Japan match on March 25, just a few weeks before. They were trampled to death after police began to spray the crowd with water to move them in a certain direction. Knowing that this was a real-life tragedy added another level of poignancy to the celebrations.<br /><br />I don't want to go off on a long political tangent, but this film gave me real hope that there are those in Iran who are hoping for change and working at it. Iran is a nation of young people, and it is only a matter of time before they take the place of their elders in the political sphere. Films like this one show the proud spirit of the Iranian people in spite of their present difficulties, and it's my sincere hope that there is a brighter future for them.",1 +2972,"Just like Al Gore shook us up with his painfully honest and cleverly presented documentary-movie ""An inconvenient truth"", directors Alastair Fothergill and Mark Linfield also remind us that it's about time to improve our way of life in order to save our beautiful planet. ""Planet earth"" is also a wake-up call that the global warming of our planet has disastrous consequences for all living creatures around the world. Al Gore showed us the bleak future of planet Earth by presenting hard facts backed up by documented examples through long yet always interesting monologues. The creators of this documentary choose a different yet equally powerful way to accomplish this. They do not present us with a future representation of what might occur to our planet if we don't radically change things around, but they rather show us the genuine beauty of planet Earth in all of its amazing glory. We see places that we knew that existed but never thought they could be so beautiful. In this movie, we see a wide array of the most extraordinary places such as forsaken deserts, giant forests full of fauna and flora and icy-landscapes as far as the eye could see. And in all of those immensely different environments, we see the most beautiful animals trying to survive.<br /><br />This is exactly the kind of movie that had to be made, in combination with the one from Al Gore, in order to make us realize that our planet is too precious to meddle with. The voice-over by Patrick Stewart is always relaxing and thus very well done although at first it sounded as though I was watching an X-men movie instead! The cinematography is probably the most remarkable thing of this documentary. At times: what you see is so unreal that you tend to forget that a man with a camera actually had to film all of that delightful footage.<br /><br />In short: This is definitely a must-see for everyone since it concerns every single person on this beautiful planet Earth! The truth is: I never thought our planet was so astonishingly beautiful!",1 +23083,"I knew this movie wasn't going to be amazing, but I thought I would give it a chance. I am a fan of Luke Wilson so I thought it had potential. Unfortunately, a lot of the movie's dialog was very fake sounding and cheesy. I think that Aquafresh gave some money towards the production of the film because they were seriously dropping some hints throughout. There is a shot where the Aquafresh sign sticks out at you that you can't help but notice it. Maybe they should have focused on writing and acting more than how many times can we drop Aquafresh products in the movie without people getting annoyed. The movie had its moments, but I'm glad I didn't spend $9.50 to see it in the theater.",0 +2942,"This is one of the shallowest episodes in that the plot really seemed like an excuse to just have fun. BUT, I appreciated this light-hearted approach and this is truly one of the best episodes to see on a purely fun level. Think about it--the crew members have encounters with the white rabbit and Alice from Wonderland, a Bengal tiger, a samurai warrior, a knight on horseback who kills McCoy, and a host of other seemingly bizarre events that just don't make any sense at all until the very end. Despite all the danger, you just can't take everything very seriously--it's just too fun and the whole episode seems very surreal. So, on a purely non-aesthetic level, it's great stuff.",1 +3163,"Either or, I love the suspension of any formulaic plot in this movie. I have re-visited it many times and it always holds up. A little too stylized for some but I fancy that any opera lover will love it. Norman Jewison, a fellow Canadian, takes enormous chances with his movies and his casting and it nearly always pays off in movies that are off centre and somehow delicious, as this one is. I have often wondered at the paucity of Cher's acting roles, whether she has chosen to minimize this part of her life or she does not get enough good roles to chew on. I have found her to be a superb actress who can retreat into a role, as in this particular one or be loud and daring and fierce as in ""Mask"". I found the comedic strokes broad at times ( a hair salon called ""Cinderella"")but this was the whole intent of both the writer and director. Nicolas Page plays the angst ridden tenor of opera, all extravagant gestures, at one point demanding a knife so as to slit his own throat. The Brooklyn scenes are magical, this is a Brooklyn under moonlight, romanticized and dramatic, just like opera. All in all a very satisfying film not to everyone's taste by a long shot, I loved the ending, everyone brought together like a Greek Chorus, every part subtly nuanced and blending with the others, the camera pulling away down the hall, leaving the players talking. 8 out of 10.",1 +2618,"I really liked this movie, and went back to see it two times more within a week.<br /><br />Ms. Detmers nailed the performance - she was like a hungry cat on the prowl, toying with her prey. She lashes out in rage and lust, taking a ""too young"" lover, and crashing hundreds of her terrorist fiancé's mother's pieces of fine china to the floor. <br /><br />The film was full of beautiful touches. The Maserati, the wonderful wardrobe, the flower boxes along the rooftops. I particularly enjoyed the ancient Greek class and the recitation of 'Antigone'.<br /><br />It had a feeling of 'Story of O' - that is, where people of means indulge in unrestrained sexual adventure. As she walks around the fantastic apartment in the buff, she is at ease - and why not, what is to restrain a ""Devil in the Flesh""?<br /><br />The whole movie is a real treat!",1 +19996,"I think my summary sums it up. I found it inane and stupid. I also saw the ending a mile a way. Everyone is copying that ending anymore when doing a TV/Theater crossover anymore. Sometimes, it's better to let the movie stand alone.<br /><br />Others, its better to forget the movie altogether. This is one of the others....",0 +8235,"I loved this masterpiece and quite frankly I, too found Mary Poppins (although I love Julie Andrews and Dick VanDyke) to be silly and sacrine-sweet. Angela Lansbury plays her character to perfection and I don't know why people think of this film as distorted. It was magical and it was lots of fun to watch. Every scene held a certain charm as you got to know the characters better. You truly see how this little thrown together family learn to bond with each other, despite their age and differences. I thought the characters were well developed, especially Charles who was at ""The Age of not Believing"". Mary Poppins may be more popular and cherished by others but this little gem will be the one that I will always love and cherish.",1 +11618,"Hare Rama Hare Krishna was the biggest hit movie of 1971. Filmed almost entirely in Kathmandu, the capital of Nepal, the movie depicts not only with the theme of a broken family, but also a relationship between a brother and a sister, as well as drugs and the hippie movement, which made many people think that it involved the ISKON - the movement for Krishna consciousness.<br /><br />The movie begins with scenes of drugs and being informed that the woman dancing in front is the narrator's sister. Going back to the past the brother and sister are happily playing around the house only to hear their parents arguing. This soon leads to a split in the family. The brother goes with the mother and the sister with the father.<br /><br />As years pass, the brother goes in search of his sister and is informed that she no longer lives with the father and that she has moved to Nepal. Here, Prashant, the brother not only finds love, but he also finds his sister, Janice. But he finds out that she is not only in the wrong company of friends but is also on drugs as she wants to block all memory of her past. With help of Shanti, his love, the brother tries to get his sister away from all this but has to overcome many obstacles, including people who stoop to all sorts of levels to stop him This is a multi cast movie and is led by the director and producer himself, Dev Anand and also stars Zeenat Aman (her first movie), Mumtaz, Rajendranath, Prem Chopra, Jnr Mehmood, A.K. Hangal and Achala Sachdev. The music is superbly provided by the late R.D. Burman, whose last score was ""1942 - A Love Story."" During the filming, Dev Anand asked Panchamda (R.D. Burman) to compose something special for this film. Days later Panchamda came back with the composition of ""Dum Maro Dum."" The song was an instant hit.",1 +20176,"The same difficulty I have with the musical version of ""Les Miserables"" applies equally to ""Oliver."" Instead of the composers' writing in the stylistic period of the play settings, they merely wrote Broadway-type melodies, which were historically unidiomatic and stylistically skewed.<br /><br />Too, the blatant brutality and unsavory activities of the dramaturgy do not mix well with some of the sunny ditties which permeate the score. It's a uncomfortable mixture that leaves a decidedly sour undertaste.<br /><br />The casting of the boy Oliver doesn't help matters: tentative of timbre and vexingly precious, there's something less than solid here. Fagin performs his traditional routine adequately, though the tunes he's obliged to sing have little basis in period manner.<br /><br />""As Long As He Needs Me"" is given a strident rendition, throaty and strained. The two big production numbers, ""Who Will Buy"" and ""Consider Yourself"" seem over-produced, with everything but the kitchen sink thrown in. It's one thing to go all out, yet another to cross over the line into excess. <br /><br />The gloom, despair and depravity of much of the novel does not seem to lend itself to such ditties and choreography. While the novel is considered a classic, I must confess I have trouble with Mr. Dickens' consciousness, in that his works tend to emit a negative vibration. This may be due to the extension of his joyless personal life, which was full of disappointment and regret. <br /><br />Not all the combined talent of this production, either on- or behind camera, can overcome the unconstructive nature of the basic material. All this results in an uncomfortably downer experience for me.<br /><br />",0 +11763,"True, the idea for this TV series may have sprung from the immense success which Ally McBeal is enjoying worldwide, even here in Germany. However, this said, Edel & Starck is very different from Ally McBeal in many ways.<br /><br />The two main characters work beautifully together. Felix Edel (Felix Noble), played by well-known German actor, Christoph M. Ohrt and Sandra Starck (Sandra Strong - Noble & Strong, get it ???), played by charming Rebecca Immanuel, exchange quick romantic repartees and continually spy on each other while engaging in sitcom-like criminal cases in Berlin and surroundings. Further, they are aided by a magnificent cast of co-stars, most notably their secretary, played by Isabel Tuengerthal, who is a rare gem with GREAT comic potential. Also the shady wheeler-dealer, Otto, and the noble childhood pal of Felix, Frank, work very well, not to forget Sandra's best friend and room-mate, Patricia, played by the beautiful Barbara Demmer.<br /><br />All-in-all a joy to watch on Monday nites: no wonder that the series and its stars have received several prizes. Will Felix get Sandra ?<br /><br />I hope that we will have to wait for many more episodes to find out......",1 +11577,"*SPOILER ALERT: I wish I could discuss this without revealing specific plot points, but I can't. Sorry.*<br /><br />I was looking for an IMDb review of the George C. Scott movie when I stumbled across the summary and reviews for this version. It had so many positive reviews that I decided to order it even though: (a)while truncated and rushed, I thought George C. Scott embodied the tortured nature (and physical appearance) of the book's Rochester to a T; and (b)even while looking at the DVD's cover, I was thinking ""Isn't Timothy Dalton too good-looking for the role?"" The latter concern was reinforced by the fact that I decided to re-read the book while the DVD was on backorder. That said, the minute I started watching this, I was captivated. At first it was disconcerting to hear 1840's dialog spoken as written--with little or no attempts at modernization--but Dalton and Clarke threw themselves into it so thoroughly, that I actually enjoyed the fact that the adapters trusted the audience to follow archaic speech. To have so much of the book up on the screen was an extra bonus. I know someone who won't watch any versions of Jane Eyre because ""who wants to see a film about a man who keeps a poor crazy woman in the attic?"" Frankly, if someone who hadn't read the book stumbled across the hour and a half or two hour versions, they would think that's pretty much all the story entails--Rochester's secret and its affect on everyone around him. Luckily, this version is actually about Jane Eyre's whole life.<br /><br />Some people have criticized the casting. Dalton is too dashing; Clarke is too reserved. I can't argue against the first point, but he is so ""in the moment"" that I believe he IS Rochester. To me, Clarke's performance is on the mark. Jane Eyre is quiet, guarded. If one remembers the book, so much of the adult Jane's fieriness and passion occurs during her private struggles. Some of the criticisms baffle me. Reviewers say Clarke is too short or isn't pretty enough. The book goes on ad infinitum about how small and plain Jane is. Ms. Clarke shouldn't be tall and the filmmakers toned down her looks to make Jane's declarations of her lack of beauty credible. She can scarcely help it if Dalton is tall. Some say there is no chemistry between the leads. What?!! The scene when Jane finally comes out of her room after the wedding fiasco fairly vibrates with passion and longing and sadness and regret--and that's just the first example that comes to mind.<br /><br />I do agree with some of the other criticisms. I too missed more scenes with Helen Burns and the Rivers siblings. Some of the dialog was oddly truncated. When Rochester declares, ""Jane, you misjudge me. I do not hate her because she is mad,"" I waited for the rest of the exchange when Rochester explains how if Jane were to go mad, he would still love and care for her. It's a powerful moment in the book, and I wish it had been included. I think it was a mistake to bring a scene with Rochester into the part of the story where Jane is on her own. It might have been done for clarity's sake, but I found it jarring. I wanted the sly humor of the scene where Jane opines that Rochester's ardor will cool and he'll become gruff again, but he may ""like"" her again by and by. Dalton's performance is so good that the rare misstep is glaring--when Rochester weeps in the library, I saw him as an actor doing a crying scene, not as Rochester. As for the sets, if anyone has ever caught an episode of the 1960's show ""Dark Shadows,"" one knows what to expect--very stark and sometimes rickety looking interiors. Others have commented thoroughly and succinctly about the make-up job Rochester sports at the end. Yikes! It IS bad. The conclusion is too abrupt. After all that anguish and suspense, I wanted a more rounded off ending. And, on my copy of the DVD, having credits at the beginning and end of all eleven 25-30 minute episodes gets to be a bit much. That said, I am so glad I have this film and will watch it again and again.",1 +2854,"This film is a great fun. I recommend you watch it yourself and then watch it again with your friends. I did last night and it was fascinating how well Norma Khouri could pull everybody into her world! I did feel a little bit strange watching my friends go through the same roller coaster as I did the first time. But they all thanked me and loved the movie. You know it is a great film if you spend 2 hours after the film talking about the movie! <br /><br />I once saw a con man almost up toNorma Khouri's level, but no where near the same size ring. He fooledtons of very gullible and rich folks at my old Berkeley CA A.A. group where everyone trusts everyone else. He would ""sponsor"" only people who seemed very well to do. Who knew he would have stolen in excess of 100k(in 1987 when that was real money) after being in town for only 1 month. His victims were very fragile as they were in their first month or week of being sober. He was evil with a great laugh and a great smile on his face.<br /><br />The above crime is nothing compared to what Norma Khouri did to her old neighbor. But I don't want to give anything away.<br /><br />I just found this one night on a late night movie channel,""Showtim"" I think. This is always a movie fans greatest experience to be totally tricked into seeing something and having your mind blown. Just drag your friends over to see this and don't tell them a thing. It is a very entertaining film, it moves quickly and never bores you.<br /><br />This should be a international classic for all time. I believe all great movies eventually rise to the top. Time will be very good to this film. I am just sorry no one has heard of it yet,in some ways that makes the surprises even better.<br /><br />The director and editor were fantastic. They deserved winning the best documentary.<br /><br />JUST WATCH THIS FILM!",1 +3439,"When I first read the plot of this drama i assumed it was going to be like Sex and the City, however this drama is nothing like it. The stories the characters seem more real and you empathise with the situations more. The concept of the drama is similar, four 30 something women guide us through there friendships and relationships with problems and strife along the way. Katie the GP is a dark and brooding character who you find difficult to relate too and is best friends with Trudi a widow. Trudi's character is heart warming as you can relate to difficulties she is having along with the fact she is the only mother of the four. Jessica is the party girl very single minded and knows what she wants and how to get it. She is a likable character and is closest to Siobhan the newly wed who whilst loving her husband completely can't help her eyes wandering to her work colleague. Over all the drama is surprisingly addictive and if the BBC continue to produce the series it could do well. It is unlike other female cast dramas such as Sex and the city, or Desperate Housewives. This if played right could be the next Cold feet. Plus the male cast are not bad on the eyes too.",1 +1892,"This is a great movie. Some will disagree with me but , if you know anything about the bible you know it is. I think everyone should see it!! I agree a new updated version like be nice but the message is still right on. If you can see this movie. Is not a ""scare the hell of you movie"",it is truthful with the Bible. I think the U. N. will play a major role in the world government to come. The last days are lining up with the Bible. Look at what has happened with the chip for dogs and cats that now has come to light to protect on children from being kidnapped. It's the size of a grain of rice. This I feel is the fore runner of the mark of the beast spoken of in the Bible. Without the mark you can't sell or buy, with this chip that small in the future there is no telling how much info can be put on it.",1 +24168,"...but the actress playing the daughter just doesn't come across as credible.<br /><br />It doesn't work for me when I see an actress of about 25 years playing the role of a 12-year-old... Other commentators have suggested that this is one of the messages of this film, that children may sometimes seem more adult-like than adults, but with the casting as it is in this film, it just doesn't work for me.<br /><br />you might want to check other comments to find out what this film is actually about, because i couldn't bear watching it to the end.<br /><br />i agree that the premise for this film is beautiful though - I wish another director would try to pick up this story again.",0 +15768,"Okay, if you've seen The Ring, you've basically seen The Grudge. It's trying to be scary by just having freaky camera work and loud sounds, but it fails miserably. The plot, if you can call it that, is weak and rather full of holes, for instance, how would the care center have known that Yoko didn't show up for work when the people who lived in the house were not there? And it's not really clear what Bill Pullman's character had to do with anything. He just kind of came out of nowhere to advance the plot. It didn't make a lot of sense what happened to the original family. Who was hanging in the room, the little boy or the dad? And was Yoko alive or dead when the care center guy found her? There were too many unanswered questions and I was too bored to think about it more.",0 +13006,"I'd give this a negative rating if I could. I went into this movie not expecting much, but I had an open mind. The whole thing is stupid! The snakes are obviously fake and the first two things they bite are a boob and a guys johnson. Oh how original; if I were a 12 year old boy I might laugh at that. I have no idea how this movie became so popular. Seriously,the worst thing I've ever seen. I wasn't entertained, it wasn't funny,I wasn't even bored! I wasn't anything. It wasn't even so bad it was good, it's just bad. Ridiculous actually. Please do not waste your money on this movie. Don't even rent this movie. No clue how it's getting such a high rating.",0 +11767,"Sandler is amazing again... I have already become a Sandler fan. This movie is the saddest Sandler story. Its expression is fantastic. I cried more watching Click but there are some similar points. To consider the value of the family before losing it and to be able to say 'I love you' are a few of the most impressive truths in life... It is tough, it is real... and actually there is a real owner of this success, Binder. I don't think another director could give these emotions in such a way. <br /><br />Cheadle and Burrows are also amazing... Cheadle is one of my favorites since Crash. Don't expect laughing or much positive atmosphere... If you are ready to face the realities of life, don't miss this movie.",1 +17889,"A question for all you girls out there : If a man you`ve never met before accidentally phoned you up on purpose and continued to do so at the most indiscreet moments would you be intrigued by him or so freaked out you`d phone the police ? Yeah that`s what I thought so I couldn`t swallow the idea of Marti Gerrard putting up with the unwarrented attention of Connor Hill<br /><br />***** MILD SPOILERS *****<br /><br />This is a really dumb story . Connor Hill`s wife is murdered and the plot revolves around the question is Connor phoning Marti so he can have an alibi ? But there`s a massive gap in logic here , couldn`t Connor have employed a hit man ? something the prosecution seem to have ignored . And wasn`t there any forensics at the murder scene ? So why does the whole trial rest on Connor phoning Marti at the time of the murder ? Dumb . Dumb . Dumb . And it`s as predictable as it is brainless .<br /><br />My abiding memory of this film is that for someone who made the winter Olympics Marti Gerrard is a really crap downhill skier",0 +670,"I get tired of my 4 and 5 year old daughters constantly being subjected to watch Nickelodeon, Disney and the like. It all seems to be the same old tired cartoons rehashed over and over again. When my daughters couldn't go to the fair this afternoon because one of them was sick, I wanted them to just relax and rest for a while. I flipped the TV on and in searching for something different, I flipped the channels. My finger stopped channel surfing the moment I heard Harvey's voice. I adore every single solitary thing this man has done and when I saw that he was doing voice-over work for a little duck ... well, I couldn't change the channel! My daughters were instantly mesmerized by the cartoon and the more we watched the show TOGETHER, the more I grew to love it along with the message that was being portrayed. It's not necessarily a proponent for ""gay rights"" but rather for anyone who has ever been ostracized as a child for ANYTHING. I had friends who were picked on for one thing or another .... too fat, too skinny, too feminine, being a bully, not being smart enough, only having one parent .... you name it! Kids, as a rule, can be very very cruel to one another so I was happy to see an entertaining cartoon that actually conveyed a LIFE MESSAGE to its audience. My girls already accept others as they are and don't pick on others for being different. My older daughter actually stands up for her friends if they're picked on (one happens to have a single Mom and that little girl is picked on quite often -- it warms my heart when Kassie stands up for her!).<br /><br />So, those of you who are condemning this show because you feel that it's an advocate for ""gay rights"" or are being forced to ""accept certain views"", you clearly and completely missed the point of this poignant little cartoon.<br /><br />And if you need it explained to you .... well, you need more help than any television show could ever offer.",1 +24296,"Oh a vaguely once famous actress in a film where she plays a mother to a child . It`s being shown on BBC 1 at half past midnight , I wonder if ... yup it`s a TVM <br /><br />You`ve got to hand it to TVM producers , not content on making one mediocre movie , they usually give us two mediocre movies where two themes are mixed together and NOWHERE TO HIDE is no different . The first theme is a woman in danger theme cross pollinated with a woman suffering from the pain of a divorce theme which means we have a scene of the heroine surviving a murder attempt followed by a scene having her son Sam ask why she divorced ? And being a TVM she answers that the reason is "" That people change "" rather than say something along the lines like "" I`m a right slapper "" or Your daddy cruises mens public toilets for sex "" as does happen in real life divorce cases . And it`s young Sam I feel sorry for , not only are his parents divorced but he`s as thick as two short planks . Actually since he`s so stupid he deserves no sympathy because he`s unaware that a man flushing stuff down a toilet is a drug dealer , unaware that you might die if someone shoots at you , and unaware that I LOVE LUCY is painfully unfunny . If only our own childhoods were so innocent , ah well as Orwell said "" Ignorance is strength "" . Oh hold on Sam is suddenly an expert on marine life ! Is this character development or poor scripting ? I know what one my money`s on . And strange that Sam the boy genuis hasn`t noticed that if the story is set in 1994 then why do people often wear clothes , drive cars and ride trains from the 1950s ? But as it turns out during a plot twist it`s the mother who`s the dummy . Then there`s a final plot twist that left me feeling like an idiot for watching this",0 +15240,"This movie was slower then Molasses in January... in Alaska. The man who put togeather the preview should get an award for managing to put every one of the 30 seconds that were interisting into the preview. I had to wake up the people I was watching it with, several times. After it was over, I felt bad for having woken them up. <br /><br />Most of the film is taken up with hoping something will actually happen, but nothing ever does. It was easy to loose track of people's motives, and the characters were flat and uninteristing. By the end of the movie, you just hoped everyone would died. Everyone runs around either being contemptible, petty, or pitiful, and usually all three. <br /><br />And worse, we watched a minute or two of the added features, just for kicks and giggles you understand, and all that we saw was people being smug about how socially aware they are. If they had spend the time on the movie that they did patting themselves on the back, it might have been worth watching. <br /><br />I was brought in expecting the excitement of '24.' I got a lecture on social awareness through the blery eyes of the sandman.",0 +14896,"I couldn't believe this terrible movie was actually made at all. With the worst actors you could find, the worst script written (Mark Frost & Sollace Mitchell) and by far the worst waste of time in viewing. I won't belabor the story as it's really not worth it. But I will elaborate on some of the performances and definitely the story. As to the story, it is very hard to believe that this bitty crazy schemer could actually do what she did. That in reality the wife couldn't defend herself against a little bitty of a thing. That the husband could actually find the nut case attractive at all. That the defense attorney could break every court rule there was and keep on doing it after the judge ordered the blankety blank to shut up. And the final result of the film is an insult to justice, movie codes, and the male species. The theme of this mess is let women do as they wish, kill whom they want, defend the killer and get away with it, while the guy rots in jail the innocent victim. Hard to believe that Sollace Mitchell, the director and a man, would even want to make this dribble.<br /><br />As to the acting: Jordan Ladd, the killer, is awful. A loony toons, who does needlepoint during her murder trial (is this allowed in court?) She bored me to the hilt. One more look of her batting her eyes and indicating how innocent she was and I'd throw up. She's not even attractive enough for any guy to leave his wife. The husband, played on one level by Vincent Spano, just seems to look and act stupid most of the time. He was so predictable in his performance falling into the traps set for him by all the women surrounding him. The worst by far was Holland Taylor as the Defense Attourney. She over acted throughout the film and made a mockery of justice. If she would cross examine me anytime, I'd have told her to go take a hike. Everybody else in this sleazy film did their job as directed to do so.<br /><br />I wish I could give this film a zero rating. However we are forced to start with 1. Too bad. Let's not have anymore painful watching films like this. Lifetime can do better then this, I know it.<br /><br />This is a postscript: Made the mistake of turning this insipid movie on by mistake. As soon as I saw the bimbo Jordan Ladd I knew I'd seen it before and didn't like it or her. I not only turned the darn thing off but had to add my anger at people like Sollace Mitchell who wrote the screenplay but also directed this horrible flick. Doesen't anyone see that her/his message is that sickness pays. Being ill and going around killing people is okay with this director/writer. Totally making the male species idiots. Well, this male tells you to go stuff it somewhere painful. We're not all that stupid and will speak out to your so called movie, which in this person's mind deserves to be trashed.<br /><br />And again this loser is shown. Why???? Can't you read the comments on this stupid and despicable movie? Are we constantly subjected to see the bimbo Jordan Ladd again and again? Get her off TV, films and out of sight. She's just terrible in every sense of the word. Phew!!!!",0 +9471,"No Strings Attached features Carlos Mencia doing stand-up that makes us both laugh and think. Not only does he poke fun at racial issues (like many haters claim), but he also talks about the best way to get illegal immigrants out of the country...what women mean when they say they want to be treated equally...why Americans are crazier than Arab terrorists...why nobody needs to pray for the pope - and what he hopes he's doing in heaven...a theory of how Easter (aka Big Ups to Jesus Day) traditions got started...his viewing of the movie Passion of the Christ - and his sub-sequential argument with a woman about whether or not he's affected by Jesus...how society should treat the physically handicapped...and even if you have the right to tell a joke or not.<br /><br />Also, he never stops reminding us that each of us has a voice. So we should use it to speak the truth, say what we think, and not be afraid if others are offended.<br /><br />Carlos is the bomb.",1 +21845,"A young American woman visits her Irish roots and fends off a druid witch who is out to possess her. Sounds intriguing but after an interesting start, I got lost and spent most of the time wondering where it was going. The movie seems to be dithering in two directions -- are we watching the travails of the Irish-American woman battling her alcohol problem or are we watching a straight off horror flick about an evil witch that returns from the past? The director can't seem to decide. The two doesn't seem to gel and in the end you get nowhere. This could be so much better done and the story seemed to drag towards the end. This was most boring and disappointing.",0 +897,"I enjoyed every moment of this movie, even though I knew they could never really be together. With the life expectancy of a Bomber pilot being only six weeks, It made me feel for all of those women and men back in the 1940's who must have lived this story.",1 +3306,"While thinking of ""The Great Escape"" I allowed my mind to wander back to this little gem of a movie from my childhood. I had read and re-read the autobiographical novel from 1949 which inspired it, and when it came to the only cinema (we never used that word then , actually) in town that showed ""foreign"" films, I was first in line to buy my ticket.<br /><br />As someone brought up on wartime newsreels and propaganda films during WWII, I had an avid interest in exploring the realities of that conflict as reflected in the memoirs and stories of men who were there in person. That extended later to a keen willingness over the years to buy any book on the subject, and eventually to read the equally compelling novels of Hans Helmut Kirst and Erich Maria Remarque, which provided an even deeper sensibility. The movie versions, however, were unlike this one in that they rarely delivered the goods.<br /><br />The medium of black-and-white film has never been served so well as it was in those years. I have never seen any technicolor version of war that seems as authentic as do the deep chiaroscuros of films like ""The Wooden Horse."" If it is true that we are destined always to be captive to the images of our childhood, then I confess it freely.<br /><br />And there will never be another the likes of Leo Genn as the emblematic British war hero on film. Not even Sir Alec.",1 +8026,"Every movie critic and metal head hated this movie but I enjoyed it. I saw this as a child on TV somewhere and was amazed by the scene where Sammi comes on stage and plays Trick or Treat by Fastway.<br /><br />The movie itself was typical 80's, guy gets pushed around by bullies and enlists supernatural help to beat up the bullies but goes to far and has to be destroyed.<br /><br />Matt from Melrose Place picks on Skippy from Family Ties so Skippy gets a record of Tony Fields from Gene Simmons to comfort him and all hell breaks lose, the highlight being where Tony sings (lip-synchs) and dances to a metal song before the shyt hits the fan.<br /><br />There were a lot of errors and stuff but the music and the overall imagery was enough to keep my fists pumping 8 out of 10",1 +10858,"I was a fan of the book ever since third grade, so of course I had watched the movie, read the sequel, and then watched the television show. It was a good show in itself, and now as an adult I still enjoy the show. My only real problem with it was that it didn't follow the book. The first time I saw it, I was so disappointed that I turned it off. But that's coming from a girl who owns a first addition of the book. But after time I decided to give it a try again and ignored the book (kind of like what you have to do with the Harry Potter movies). I found the series wonderful! It was clean cut and something that everyone could enjoy, just the right amount comedy to keep everyone going. It is truly enjoyable! Clean and wonderful!",1 +2890,"Vivacious & irrepressible, ANNE OF GREEN GABLES brings unlooked-for happiness into the lives of a lonely old sister & brother on Prince Edward Island.<br /><br />Lucy Maud Montgomery's well-loved novel comes to life in this wonderful little movie. Excellent production values, a literate script and first class performances gives the story exactly the touch of quality it deserves.<br /><br />Taking her professional name from the character she portrayed, actress Anne Shirley is a joy as the red-headed fourteen-year-old orphan who completely alters the lives of her new guardians. Completely assured in her starring role, Miss Shirley is a delight, entertaining the viewer with Anne's boundless imagination, quick temper and not-so-secret sorrows.<br /><br />Playing the stern spinster who gives the girl a home, Helen Westley also completely commands her role; the viewer will enjoy seeing this sharp-tongued woman slowly unbend to Anne's affection and child-like innocence. Australian character actor O. P. Heggie gives one of his finest performances as Westley's shy, gentle brother who welcomes Anne into his heart from the moment he arrives to fetch her from the railroad station.<br /><br />Tom Brown most agreeably plays the schoolboy who quickly grabs Anne's attention. Sara Haden is appropriately prickly as a nosy neighbor. Charley Grapewin makes the most of his few moments as Avonlea's doctor.",1 +14394,"This stuffy melodrama is quite easily the worst film starring Ingrid Bergman that I've seen. Even her luminous screen presence can't save this insufferably slow and meandering movie that's nearly impossible to sit through without fast-forwarding a lot of it.<br /><br />Only for die-hard Bergman fans; others are very likely to fall asleep. I suggest you to watch ""For Whom the Bell Tolls"" instead.",0 +20986,"I waited almost 25 years to see this movie, thinking it might be an underrated work, from a period animation was no longer of the quality it had once been. It starred one of the best film villains of all time, was based on a beloved series of children's books, and was a Disney Studios production. What could possibly be wrong with it? As it turns outs, almost everything.<br /><br />Well, not everything. Vincent Price as Rattigan and Henry Mancini's swanky score are the movie's two saving graces. Price is wickedly enjoyable, and Mancini more professional than the material deserves. They bring class to a project that otherwise belongs in obscurity. <br /><br />Meanwhile the rest of the movie, while filled with inappropriately adult situations, still suffers from a completely dull script, blandly generic voice work, terrible songs, and lazy animation that wouldn't have been out of place on any of Disney's mid-1980s Saturday morning TV shows.<br /><br />This was a complete disappointment to me. It's amazing that this movie was nearly contemporary with The Secret of NIMH. Costing a fraction of this, an independent studio produced something with more creativity in its trailer than GMD has in its endless running time.<br /><br />The extra star that keeps this from being ""awful"" goes to Price and Mancini.",0 +8397,"Silly, hilarious, tragic, sad, inevitable.<br /><br />A group of down-and-outs team up with a ""seasoned"" crook to elevate themselves out of their poverty. Great idea...if you ignore the screwup factor.<br /><br />Nice to see George Clooney doing something genuinely funny for a change. The casting is perfect and the acting standards very high. Although it could be said that the motley crew subject isn't new, I think this movie handles it in an interesting and unique way. Sufficiently so that it stands out from what has gone before.<br /><br />Very well done guys.",1 +14005,"""Nat"" (voiced by Trevor Gagnon), along with his brainiac friend ""IQ"" (voiced by Philip Bolden) and the always hungry ""Scooter"" (David Gore) are kids with big dreams. They want to be the first flies in space. And what encourages their dreams is the first spacecraft to land on the moon, the Apollo 11, is waiting for its historic trip on the launch pad near where the three hang out.<br /><br />The first thing you notice is the animation of the film. I found it done very well done. The scenery had depth to it, as things in the distance actually looked like they were behind the focus of the scenes. I didn't see the movie in 3-D, as it was broadcast on HBO. However, I could see that there really wasn't any scenes which took advantage of the 3-D effects except a fight between characters near the end. I also wasn't really impressed with the design of the characters. To me, they didn't look like anything resembling a fly, especially in the coloring. The flies were an unusual blue-gray that was kind of distracting to me.<br /><br />The performances from the cast was not bad, but it wasn't good either. There were many times I focused more on my computer than the story. The writing was certainly written for a younger audience, with comedic moments that will make younger kids laugh. I saw nothing for adults, like jokes that they'll get the punchline for the adults to understand the meaning.<br /><br />History was not followed in this film. In fact, I think it was completely ignored, as the main focus was the flies. I also hated when a well known astronaut popped up on the screen and explained that the stories about the flies in the film was a work of fiction, and no flies were on Apollo 11. I did like how he thanked the men and women who sacrificed their lives for space exploration though.<br /><br />If you are an adult, this is not for you. It was not made for the entire family. This is certainly just for kids. But, save this one for a rainy day.",0 +16386,"This film is a huge steaming pile. <br /><br />I have no idea why anyone felt that the Garland/Mason version needed to be redone, nor why Striesand would have been a first choice to star.<br /><br />For that matter, I have no idea why our people (Gay Americans) tend largely to regard Striesand as some kind of treasure. At least in my opinion, she had peaked professionally with with Funny Girl, and Bogdanovich's What's Up Doc. <br /><br />Do yourself a favor and rent the Judy classic, or even the original (a fine film in its own right), but please, Please, PLEASE skip this stinkpot!",0 +14162,"This warning against anti-semitism is well-meant and may have had its purpose at the time, but it is made without the slightest notion of how to make a film. The director has no idea about mise-en-scene; the cast varies from bad till even worse.<br /><br />The great Austrian comic Hans Moser is wasted. In his part he ends in an asylum for the crazy, that is designed as a set from Das Kabinett des Dr. Caligari; one wonders whether the makers had all their mental capabilities.<br /><br />The restored copy I saw (Dutch Filmmuseum) gives the impression that some scenes were not put into the right place, but may be the original editing was bad as well.",0 +11996,"It is an excellent thriller from Turkey which can make sense.Great job from Gokbakar brothers.<br /><br />First of all,i want to point on screen play.Generally screen play in most films from Turkey is not enough,but GEN has the best shots to be said ""perfect"".And also transition parts are really excellent.<br /><br />On the other hand,""Gen"" has a great topic that influence everyone.Especially,a woman ,who wants to be a psyciatrist in a sanitarium ,has a mother that is a habitual insanity.Principal causes and psychological consequences are given in Gen.The only thing you have to do is to combine all the hints.<br /><br />There is an impressive aggression part Doga Rutkay and Sahan Gokbakar played.This performance may be more realistic than "" Irréversible(Monica Bellucci) "".<br /><br />The last thing i want to say is ""Watch this movie,you'll get confused""",1 +634,"James Cagney is best known for his tough characters- and gangster roles but he has also played quite a lot 'soft' characters in his career. This musical is one of them and it was the first but not the last musical movie Cagney would star in.<br /><br />Cagney is even doing a bit of singing in this one and also quite an amount of dancing. And it needs to be said that he was not bad at it. He plays the role with a lot of confidence. He apparently had some dancing jobs in his early life before his acting career started to take off big time, so it actually isn't a weird thing that he also took on some musical acting roles in his career. He obviously also feels at ease in this totally different genre than most people are accustomed to seeing him in.<br /><br />The movie is directed by Lloyd Bacon, who was perhaps among the best and most successful director within the genre. His earliest '30's musicals pretty much defined the musical genre and he also was responsible for genre movies such as ""42nd Street"". His musicals were always light and fun to watch and more comedy like than anything else really. '30's musicals never were really about its singing, this was something that more featured in '40's and later made musicals, mainly from the MGM studios.<br /><br />As usual it has a light and simple story, set in the musical world, that of course is also predictable and progresses in a formulaic way. It nevertheless is a fun and simple story that also simply makes this an entertaining movies to watch. So do the characters and actors that are portraying them. Sort of weird though that that the total plot line of the movie gets sort of abandoned toward the end of the movie, when the movie only starts to consists out of musical number routines.<br /><br />The musical moments toward the ending of the movie are also amusing and well done, even though I'm not a too big fan of the genre itself. Once again the musical numbers also feature a young Billy Barty. he often played little boys/babies/mice and whatever more early on in his career, including the movie musical ""Gold Diggers of 1933"", of one year earlier. <br /><br />A recommendable early genre movie.<br /><br />8/10",1 +12508,"This film is mediocre at best. Angie Harmon is as funny as a bag of hammers. Her bitchy demeanor from ""Law and Order"" carries over in a failed attempt at comedy. Charlie Sheen is the only one to come out unscathed in this horrible anti-comedy. The only positive thing to come out of this mess is Charlie and Denise's marriage. Hopefully that effort produces better results.",0 +16915,"I would like to say that unlike many of the people who disliked this film and found it impossible to understand I was fully able to understand it for what it is.. A very incoherent attempt at a plot line.<br /><br />I don't like to toss this word around but in this case it fits very well. The director firstly presents the material in an extremely ""arrogant"" way and worse, extremely incoherently. It is incoherent in that it presents the material in a messy dislodged order, making us think that the director was too drunk to remember which scenes come first, and arrogant in that at 2 hours long they expect us, the viewer to CARE by the end of it.<br /><br />I respect surrealist cinema for what it is. (creating a story around a more than real world that does not tie to real life) But there is nothing surreal about having a story placed in ordinary modern times, and a modern day earth setting, that is most importantly not able to engage the audience but furthermore, simply a dislodged series of events that barely tie together. The most accurate way to describe the experience of viewing this film is like viewing a story; perhaps even a very GOOD story as it was based on a book, but being frustrated by the fact that the camera doesn't seem to capture the necessary moments and tie together any means of coherence.<br /><br />Let's compare stylistic cinema. Compare Gaspar Noe's ""Seul contre tous"" to this. He gave us a coherent, extremely engaging and intellectually deep story. This movie offers no intellectual study, and while it is very stylistic in it's fragmented presentation, the director has ultimately abandoned the essential art of good storytelling and all we are left with is a mess of events that barely tie in together.<br /><br />Yes indeed it IS possible to make sense of things.... to a POINT. But as i said earlier the viewer will reach a stage where they simply say ""Who cares."" It plays out like watching a drab mundane story of a man going to a supermarket and buying groceries in uncronological order. Even with murders it is completely uninteresting and unengaging. Too many people these days will give high marks to something they are unable to understand or make sense of simply for fear of looking foolish, and in every way this film TRIES to make the viewer look foolish.<br /><br />If you have too much time on your hands, then please watch this film, taking into account what I have said of it. It is a story based on a book that could have been presented in a MUCH more effective way and that is my bottom line reasoning.",0 +23246,"Before I begin, I want to briefly say that this movie in and of itself is very well made and well acted by all involved, including Whittaker, who indeed deserves his nomination. It is highly entertaining, and . . . taken in the right context as a work of FICTION, it is a very good movie. For that, I give it the two stars.<br /><br />However, rather than wasting your time with what you can read a hundred times elsewhere, I want instead to point out the absolute fictional nature of this film and how dangerous it is to sell people a work of fiction as if it is truth. I stress that this film nowhere in the credits lets us know that the main character, Dr. Nicholas Garrigan, is a complete invention of fiction. Rather, it presents this character into a real historical setting, and allows the uninformed viewer to assume he was in fact real, and what they are seeing is the truth. I have no problem with the blending of fact and fiction - but to do so in such a dishonest matter is, in a word, reprehensible.<br /><br />There can be no doubt that Africa, along with most Third World Countries is rife with human misery and suffering. Hollywood has long attempted to capture the suffering of people in these countries on film. But Hollywood also has its eye toward making money. The only true way to capture the suffering that seems to happen everywhere but the West is to either experience it for yourself, or to at least have it captured in an honest documentary.<br /><br />But these depictions of fictional characters in real historical settings can only do so much. At the end of the day, they become less about presenting the facts for the viewer to decide for himself, and more about leading you from image to image and hitting you over the head screaming, ""SEE, WE TOLD YOU IT WAS BAD!"" The seminal example of this can be found by anyone willing to watch the documentary on the DVD after sitting through the movie. Arguably the most shocking image of the film is the viewing of the body of Kay Amin, Idi's second wife, whom he killed when he discovered her infidelity. In the film, we see that her limbs have been severed and reattached in reverse (arms for legs and vice-versa). This is the director making sure you understand that Amin is, as the Gungans say, Bom-bad! But watching the documentary, we learn that this is in fact nothing more than a myth, which the sitting Minister of Health at the time himself tells us is not true.<br /><br />So . . . what . . . they just MAKE UP these things? Why? Because Hollywood has a low opinion of our intelligence, that's why! They don't trust us to come to the right conclusion ourselves. Look, that she was murdered and dismembered is in itself enough for us to conclude that Amin was not the likable guy he portrayed to the media - we don't need this Texas CHAINSAW MASSACRE inspired imagery to reinforce that! And this is just the tip of the iceberg. What is also not explained to the casual viewer is that lead character Garrigan is himself fictional. There was no young Scottish doctor taken under Amin's wing. As such, Garrigan is clearly present only for the sake of helping us dumb Westerners understand the African world. The producers seem to thing we won't be interested in a film about Africa unless there is a white face in it. (Ironically, even the titular character is portrayed by an American black actor!) The problem with this is that the movie is no longer an expose of Amin and his regime, but instead an exploitative thriller about a white Westerner coming to Africa for all the wrong reasons, making several horrible mistakes, and then ""redeeming"" himself, even at the cost of three other innocent lives. Honestly, I have to say it is nearly reprehensible to suggest that the real tragic death of Mrs. Amin was the result of a tryst with a fictional Scottish doctor - it almost seems to become a morbid joke for the sake of entertainment! I really wish Hollywood would stop jerking us around for our money. I first realized its propensity to do this with the woefully manipulative A BEAUTIFUL MIND, Ron Howard and Akiva Goldsman's sugary-sweet adaptation of the life of John Nash, which deleted the darker side of the man to present only the tortured hero that America just can't get enough of. The sad truth is that Hollywood has been selling us these fakes for years, and viewers, who are predictably and understandably too lazy or uncaring to investigate for themselves, buy these fake portraits hook, line, and sinker.<br /><br />Look, I'm certainly not suggesting Amin is being turned into a villain he wasn't. My point is, with the truth being so shocking enough to convince us of the brutality of the man, why must Hollywood then go to such fictional lengths? Why must Hollywood continue to insult us by holding our hands through these films? Why can they not trust us to think for ourselves!? Can we not just put the honest portrayals on screen and let the audience decide for themselves? I urge all who continue to watch Hollywood's purportedly ""true"" movies to do yourself the favor of ALWAYS investigating for yourself, and to NEVER assume that what is on screen is even close to the truth!",0 +24467,"This film has been receiving a lot of play lately during the day on either HBO or Cinemax. The reason is that they are assuming people would be interested in comparing it to the Leonardo DiCaprio/Tom Hanks caper of the same name. The only reason to see it is for the attractive Matt Lattanzi. Yum! Although I must say Matt was more than a little long in the tooth to be playing a high schooler. If he were a woman, they'd have had him playing the MOTHER of a high schooler! (Is is just me, or is his daughter starting to look like Shelley Duvall?) Oh yeah, the plot--who cares? Typical teen highjinx played by adults.",0 +6476,"This program is a lot of fun and the title song is so catchy I can't get it out of my head. I find as I get older I am drawn to the wrinklies who get things done, and these four are excellent in their endeavors. Some of what they do is outrageous but brilliant considering that now days with our PC world we'd never be able to do it in real life. I always learn something from the shows. But if you like mystery, drama, comedy, and a little forensic work you'll love this show. It reminds me of Quincy, ME in one way and Barney Miller in another the way they work and inter-react with each other. They screw up a lot but they get the job done, and that's what counts.",1 +15169,"I always thought people were a little too cynical about these old Andy Hardy films. A couple of them weren't bad. Modern film critics are not ones who usually prefer nice to nasty, so goody-two shoes movies like these rarely get praise<br /><br />Nonetheless, I can't defend this movie either. You can still have an dated dialog but still laugh and cry over the story. Watching this, you just shake your head ask yourself, ""how stupid can you get?"" This is cornier than corny, if you know what I mean. It is so corny I cannot fathom too many people actually sitting through the entire hour-and-a-half.<br /><br />The story basically is ""Andy"" (Mickey Rooney) trying to get out of jam because he makes up some story about involved with some débutante from New York City as if that was the ultimate. People were a lot more social-conscious in the old days. You'd hear the term ""social-climber"" as if knowing rich or beautiful people was the highest achievement you could make it life. It's all utter nonsense, of course, and looks even more so today.<br /><br />However, it's about as innocent and clean a story and series (there were a half dozen of these Andy Hardy films made) as you could find. Also, if you like to hear Judy Garland sing, then this is your ticket, as she sings a couple of songs in here and she croons her way into Andy's heart. Oh man, I almost throw up even writing about this!",0 +4177,"Those who know who know the Kelly ""legend"" & are hoping that this film would be an accurate depiction of his life may be disappointed with the creative license taken with this film (eg. Naomi Watt's character never existed in reality), but if you look at it purely as a piece of entertainment, it holds up pretty well. Ledgers performance in the title role is quite solid, taking the mantle of cinema's best Ned (not hard considering the previous Ned's include Yahoo Serious, Mick Jagger & former Carlton champion (Australian Rules Football) Bob Chitty, a great footballer but a poor actor. Some location shooting film in the area I live, Bacchus Marsh outside Melbourne as well as Clunes & Ballarat.",1 +23503,"The movie was completely misleading and the bonus material confirmed my impression that it was a rip-off of Joeseph Conrad's Heart Of Darkness ,the River is replaced by a road and the boat becomes a Jeep and Walter Kurtz is Osama.<br /><br />The claims made on the outside of the DVD box was overt fraud to<br /><br />take this fabricated death of a Journalist and present it as factual<br /><br />while some portions have Muslims supporting the 9/11 attacks for the USA's treatment of Muslims around the world .<br /><br />I alerted the Video store that the movie should be removed from their ""Documentary"" section and be placed in the War-drama area for quasi fictional accounts of actual events.",0 +24638,"Movies have put me to sleep before, but no movie has ever done that twice, so it took me three sittings actually to finish it. The dialog was bad. Women spoke stiltedly and the men were caricatures. And two of the supposedly Japanese women looked Chinese, had Chinese names and spoke with clearly Chinese accents. I'm still trying to figure out why the Emmenthal men were sexually wrapped up with each other. 10 minus 8 1/2 equals a tough choice: Do I give this movie a rating of one? or two?<br /><br />Movies have put me to sleep before, but no movie has ever done that twice, so it took me three sittings actually to finish it. The dialog was bad. Women spoke stiltedly and the men were caricatures. And two of the supposedly Japanese women looked Chinese, had Chinese names and spoke with clearly Chinese accents. I'm still trying to figure out why the Emmenthal men were sexually wrapped up with each other. 10 minus 8 1/2 equals a tough choice: Do I give this movie a rating of one? or two?",0 +11064,"I recently (May 2008) discovered that this childhood favorite was available as a DVD. Although I've seen a great deal of high quality movies since then (late 70's (I was 10 in 1978)), this three-episode, low budget thing still stands strong.<br /><br />What's fun is that I now watched it with my 10 year old daughter, and she experiences just the same as I remember from back then: The creepy music (she had to hold my hand, even though she's been raised with watching LotR and Resident Evil), the ever changing theories of who the culprit actually is, and also complaining about the theatrical voices from an era before Norway discovered the difference between stage acting and movie acting.<br /><br />This is the one and only good science fiction movie (or series) ever made in Norway. And it's still worth watching.",1 +19790,"This is almost the worst film you will ever see! 2012 Doomsday currently pulls the rug from under this one, for me. The props are a perfect example of what Frank Zappa once referred to as 'cheepnis.' It looks as if the space scenes were made in a 1950s power station, just prior to demolition. The music really sucks. The acting is wooden and ham. The characters they portray are shallow and unconvincing. The plot is predictable. It is immediately and brazenly obvious when they copy techniques and ideas from other films. The quality of direction beggars belief.<br /><br />But you have to see it, if only to experience what has to be one of the biggest wastes of a tiny budget ever. This is a priceless example of a stupid movie!",0 +10531,"This is a quite slow paced movie, slowly building the story of an ex stripper who begins a new family life with a complete stranger. The viewer slowly feels that there's something wrong here ...<br /><br />I really loved this movie even though it leaves a slight bitter taste in the end. It is clever, well paced and very well acted. Both Philippe Toretton and Emmannuelle Seigner are deeply into their characters. <br /><br />The little son ""pierrot"" is also very touching.<br /><br />A thriller which does not seem like one. A very unconventional movie, very particular atmosphere throughout the whole movie though you might feel awkward a few times with a couple of scenes.<br /><br />i'll give it a 8/10 !!",1 +5991,"FATTY DRIVES THE BUS is simply the funniest, most original and entertaining piece of work i have ever had the pleasure of seeing.<br /><br />this movie is by no means up to Hollywood standards, or even that of a straight-to-video movie fluff comedy starring terry ""hulk"" hogan, in terms of camera work, editing, acting, budget, or anything else.<br /><br />what this movie DOES have though, is a very original and enjoyable story, and it is obviously done by people who love making it, and the enthusiasm of the all the cast and crew really break through all its budget and acting downfalls.<br /><br />this movie proves that you don't need a huge budget or decent actors to make a great film, all you need are some original ideas and some passion for what your doing.<br /><br />simply the best movie ever. i don't care how you get it, rent it, order it, steal it, download it, just see this movie.<br /><br />now i just hope they make a DVD version.",1 +20845,"A couple move into their dream home, unaware that it and its neighbours have been built over land formerly used as a cemetery. The film is said to have been based on a true story, although how much of it is supposed to be true is not disclosed. The plot is hardly unique - see Spielberg's 'Poltergeist' (1982). Within a short time, they experience various supernatural phenomena: these range from the disturbing - mysterious shadows, the serious illness of the daughter - to the frankly ridiculous - toilets continually flushing and garage doors going out of control. There is little depth to the story: once it has become established that the land had been used as a cemetery, we do not learn anything more. The plot does not seem to develop. The characters are not particularly well drawn or in any way memorable, nor is the atmosphere particularly special. The film could be disturbing to some viewers. There is no sense of catharsis or any kind of positive message from it.",0 +18949,"This film fails to capture any of the mystery and intrigue that the book offers. The main point of the book, the insights, are hardly even touched upon, leaving the viewer wondering exactly why everyone is making such a big deal about them and why they are willing to risk their lives.<br /><br />The character development is not good at all. No background or personal development leaves the audience not really caring at all about what happens to them, and so the action sequences fall flat.<br /><br />The search for the manuscripts ends abruptly, and with no real explanation, not leaving any sense of satisfaction as to what the whole search was for.<br /><br />This is one of the worst adaptations of a book I have ever seen. It is horrible and a waste of time. If you have not read the book, skip the movie and read it. If you have read the book, skip the movie and reread it.<br /><br />It is almost as if the point of making the movie was to discredit the book, that is how poorly done and ridiculous this movie is. It is a shame too, because it could have been good had they capitalized on it at the height of its success and they probably would have been able to get a good screenwriter and some good actors.<br /><br />Please don't waste your time, READ THE BOOK!!!",0 +2581,"This is the best Chinese movie I have ever seen, and, in my opinion, a lot better than Hero or Chrouching Tiger, Hidden Dragon. The movie is a unique combination of several genres: It's a beautiful love story, action movie, comedy and horror at the same time. And the most amazing thing is that it really succeeds in all of this!<br /><br />This movie definitely makes it to my top 5, and should be enjoyable to every movie lover. The action sequences do have the traditional unrealistic jumping and even flying, but the way it's shot differs from the style of Hero a lot and the flying always looks great and usually even makes sense (ghosts can fly)<br /><br />See this movie, you won't regret it. 10/10",1 +22873,"The movie lacks credence with the helicopters which didn't exist until the 1950s. But no woman would do what was done here, even a woman before the women's movement of the 60s and 70s. About the only portion of the movie that you could believe in was that Germany would want to know where the landing would be. Ignore for the moment that the British had captured all the spies but even if they had not, they wouldn't have let one roam around like this just to reassure the Germans that the landing would be at Calais. It isn't one major thing that makes the movie not work. It is the culmination of all the things wrong that makes the movie fail. Bad directing, bad scripts, no attempt at authenticity (at all) all combine to just make the movie fall flat. Generally speaking spies should fade into the woodwork. The suspense comes in with the spy wondering if the information they have is valid or not and worrying about being detected. On this one that game was over from the start. This spy was doing anything but spying. Your only chance at getting something that has some credibility and instills some suspense may be to read the book.",0 +11999,"Despite of the success in comedy or drama, the Turkish directors are failure in horror-thriller. ""Okul-D@bbe"" are good examples for the awful horror Turkish films.<br /><br />But if you watch ""Gen"" you will understand that it is a strike. The atmosphere of the movie is impressive and dark. Also the special features are colorful and not cheap. The soundtracks fit the movie, but the script is not totally perfect and the theme of the movie is ordinary.<br /><br />As a result ""Gen"" does not add any difference to horror movies, but it does not disappoint thriller fans. In this respect it is a success for Yesilcam and Turkey. (7/10)",1 +8385,"Great fun. I went with 8 friends to a sneak preview viewing of this film. We came to see different one but after 10 minutes wondering what the heck we got ourselves into this time the jokes became funny and they stayed funny throughout the movie. In the first part you just keep asking yourself about this 'malinski' and 'bellini' stuff (there are many more examples of this lingo) and because they keep repeating the same jokes (with different twists) they get funnier and funnier. In search for this malinski all the main characters are introduced the first one even wackier than the next. Until half of the film was over we didn't even know the name of this movie because there were no opening credits and we went to this sneak viewing, but we sure had a good time. The house was loaded (appr. 250 people) and I think about half of them didn't like it and the other half loved the film. If you like weird comical movies with great dialogue you will love it. Apart from Clooney This movie deserves a lot better than the 5.6 IMDB rating it has at the time I write this, but when more ppl have seen it I am sure it will go up. 7.0 is reasonable I guess, I would give it an 8 out of 10. (10 out of 10 after a few beers)<br /><br />",1 +18991,"As a physics student, I've become aware of many idiot professors, and other so-called experts, in the field. As I continue with my studies, I learn more and more about real physics experiments going on, and about the people who are doing things right.<br /><br />Then, my friends tell me of this ""physics movie"" they want to see. Knowing nothing of it, I'm excited, hoping that the information will be presented well.<br /><br />I've done REAL quantum mechanics; this wasn't it.<br /><br />This movie starts with the basic assumption that anything that occurs to a subatomic particle can, and will, occur to you, if you just open your eyes. Let's think about that, for just a moment.<br /><br />Our bodies are composed of somewhere around 10^30 such subatomic particles. That is a million billion billion billion particles! The more ""mysterious"" quantum effects of just two particles can have a 50% probability of cancelling each other out completely. As you add more and more particles into the mix, it becomes almost impossible to have a large net quantum result. To tell us to believe that this is a valid assumption, with no rationality behind it...it's just stupid.<br /><br />My friend, also in physics, and I counted 3 facts during the course of this movie. But they were presented in the most misleading manner I've EVER SEEN.<br /><br />I cannot say as much for the neural portion of the movie, as I have not had any kind of medical training. It seemed as though it might have had a slight bit more truth to it, remembering my days in biology, but I cannot say.<br /><br />At least this film had a redeeming quality: the dancing peptides (or whatever they actually were) scene. Not to ruin the invaluable plot that drives this movie, but the main character goes to a wedding, where she sees all different types of personalities ""driven"" by their peptides*, and then the film cuts to the dance floor, where we are spliced between people dancing, sometimes surrounded by CG peptides, and a fully CG scene, filled with dancing peptides. The film, at that point, was trying to tell us how we're ""addicted to emotions,"" so we're treated to the full song of that smash hit, ""Addicted to Love.""<br /><br />This scene was redeeming, because anyone who could go through THAT scene, and still take this movie seriously...well, you are the ones that need to ""open your eyes.""",0 +10674,"Not so many people like the movies of Bertrand blier simply because they don't understand them. Simply because they are different kinds of people.<br /><br />If you have not been living under a deep desperation intertwined with great personal hope it may be hard for you to enjoy the humor blier shown here.<br /><br />And also the film of blier cannot be classified easily as black-comedy or cult etc. like those of pulp fiction etc. Because there is this delicacy which the audience of north-america frequently fail to appreciate.<br /><br />When I looked at these two `hooligans' dining with Jeanne moreau in the seaside restaurant, I felt they were more gentil than any gentleman can have been.<br /><br />The urge to make love wildly like these is the normal reaction we feel under the unbearable pressure of meaningless being-symbolized by the camion suddenly emerges at the Carrefour.<br /><br />SO, les valseuses is much better a name than going places. To dance a valse you need to be elegant, but going places you don't.",1 +9447,"Not sure one can call this an anti-war film, it shows war at an elite level. These are elite troops that know what they are doing and take great pride in it. Even when they are pacifist, they still enjoy the skill level and defeating their foes, even if it does go against being a pacifist. The movies is slow and rather uneventful and in many ways is rather tame as war movies go-more so by todays standards, no body parts flying off as in modern movies. It is brutal in other ways though as you see killing at a personal level. This is more of a thinking man's movie. Once you start to watch you don't want to miss anything. The thoughts of the men in the movie and their interactions, is what the movie is about- not the combat itself or a big exciting storyline. This maybe called a war triller.<br /><br />If you are into the skill of war, if you are into reading or seeing programs about the SAS and so on, YOU WANT TO WATCH THIS MOVIE!!!!!<br /><br />Comparable movies are The Hill (1965) with Sean Connery, 49th Parallel (1941) with an all star cast, The Naked and the Dead (1958) with Cliff Robertson. All are unusual in their way and show war at a personal level. Enjoy!",1 +2104,"Tea Leoni plays Nora Wilde, a serious photographer, who is going through a bad divorce. She wants her freedom but it comes at a cost. She wants to legitimate photography but is hired to work for the tabloids as a paparazzi. Her boss is played by the wonderful and divine Holland Taylor. The show was well-written most of the time. TEa's Nora was beginning to develop into quite a memorable character but the network just didn't support comedy and they still don't. Even when they brought in George Wendt from Cheers, they made unnecessary changes in casting and characters. The show was fine in the beginning and the audience was getting used to it but then the network botches it up like a bad plastic surgery.",1 +24132,"I rented this one to see Vanesa Talor one more time. She can act, but doesn't get a chance in this clunker. The opening sequence is an elaborate crane shot of mountain landscapes. Must have come from a stock archive, because the movie is shot direct to videotape. The production values make _Blair Witch_ look professional. There's a really cheesy animated statue, but no other effects worth noting. This movie is bad, but not amusingly so. The players would do well not to mention it on their resumes.",0 +21549,"Sadly IMDb does not allow me to rate Judges lower than 1. What a shame. This ghastly movie is so bad that I actually turned the damned thing off well before the ending. The script had a few bright moments, but the directing, editing, acting, audio quality, and especially timing on line delivery was so abhorrent as make Judges utterly unbearable.<br /><br />Judges was advertised as being like a modern day comic book style western, but in reality was nothing of the sort. What it is most like is dog poop on the bottom of your shoe. You can try to pretend it is okay, but it just keeps on stinking.<br /><br />Why video stores think it is okay to carry this kind of crap with constant gaps in the audio and worse than high school drama class acting is beyond me. We rent movies in order to see something better that what is on television. But Judges is worse than the most pathetic SciFi Channel original. I intend to demand my money back from Hollywood Video.",0 +3764,"This film revolves as much around Japanese culture as it does the lives of one modern Japanese family. Physical contact is frowned upon for those over 7 (especially in public) hence all that bowing instead of hugging even when you are close friends/ relatives. Ballroom dancing involves putting your arms around someone else and that in public too! Never the less Ballroom dancing is (on the quite) immensely popular. People who do Ballroom dancing in Japan are viewed a bit like nudists in the west... many more would like to than do but are inhibited by the culture. A delightful family film, which any amateur dancer would enjoy for the dance sequences alone. I understand that it was more popular than Titanic in Japan. I guess the Japanese are just like the rest of us - they like to be hugged too.",1 +4234,"Released in December of 1957, Sayonara went on to earn 8 Oscar nominations and would pull in 4 wins. Red Buttons won the Oscar for Best Supporting Actor in his role as airman Joe Kelly who falls in love with a Japanese woman while stationed in Kobe during the Korean War. Oscar nominated for Best Leading Actor, Marlon Brando plays Major Lloyd Gruver, a Korean War flying ace reassigned to Japan, who staunchly supports the military's opposition to marriages between American troops and Japanese women and tries without any success to talk his friend Joe Kelly out of getting married. Ironically Marlon Brandos character soon finds love of his own in a woman of Japanese descent. This movie highlights the prejudices and cultural differences of that time. Filmed in beautiful color and with stunning backgrounds I found this movie to be well worth watching just for these effects alone. Good movie, gimme more...GimmeClassics",1 +4994,"I like this film for several reasons. I have a soft spot for films about intricately plotted criminal plots like TOPKAPI. I also enjoy films (like TOPKAPI and BIG DEAL ON MADONNA STREET) that spoof the the genre. One of the best ones is DISORGANIZED CRIME.<br /><br />Corbin Bernsen has met four cons over the years, and he decides they can all be useful in a bank robbery he is planning in a small Montana town. But he hasn't given any details on the crime to the fellows, nor do they really know each other at all. Shortly after he sends for them Bernsen is arrested by two New Jersey policemen (Ed O'Neill and Daniel Roebuck) whom he escaped from before and have a warrant to bring him back. While he is in their custody the four cons (Fred Gwynne, Lou Diamond Philips, Ruben Blades, and Will Russ) show up without a clue about why they are there except that Bernsen was planning something. <br /><br />The first twenty minutes of the film deal with the four cons slowly getting used to each other, with Gwynne and Philips managing to push away their own suspicions to figure out they have to trust each other. At the same time we see Bernsen patiently waiting for the right moment to escape from O'Neill and Roebuck again - not too difficult as they are not the brightest bulbs who ever existed. The result are two sets of plots that will keep juxtaposing against each other throughout the film: the four cons trying to figure out what Bernsen's scheme was, and how to put it into operation, and Bernsen trying to maintain his own freedom from his pursuers and regain his cabin (and hopefully find his gang there for him to take command of). There is also a third, smaller, plot involving the growing annoyance and anger of local Sheriff Hoyt Axton against the idiots from New Jersey who keep getting into his hair.<br /><br />There are many delightful moments in the film, such as Axton, egged on by O'Neil and Roebuck, into surrounding a house in the town that Bernsen is supposed to be hiding inside of, and yelling (through a megaphone, ""Come out, we have you surrounded!!"", only to have the scene switch to a huge, Montana plain that Bernsen is struggling and stumbling through miles from where the police think he is at that moment. There are moments of misadventures by our four cons, who fortunately put the oldest (Gwynne) into leadership position. This does not always guarantee anything. At one point their car won't start, and they have to thumb a ride by truck. Unfortunately it is a truck carrying manure.<br /><br />The conclusion with the gang successfully carrying out the robbery, including disabling all the police cars at the critical time (Philips specialty is cars) is also a gem of timing, suspense, and comic results. The film is very entertaining, and certainly worth watching.",1 +21679,"Unless you understand wretched excess this movie won't really mean much to you. An attempt was made to interject a bit of humanity into a cold and bleak period consumed by alcohol and drugs -- it doesn't work.<br /><br />When Salma Hayak does her big disco number her voice is so obviously dubbed it is pathetic -- the producers could at least have gotten someone that sounded remotely like her.<br /><br />The documentary that has been playing on television lately is far superior and gives a much truer view of that period of our history.<br /><br />No one, with the exception of Mikey Myers, could be accused of acting; however, he does an incredible job.",0 +5057,"Besides the fact that it was one of the few movies that I ever shed a tear over (bye-bye manhood), this is one of the most beautifully crafted Indian films that has ever been made. From the finely crafted sets, to those haunting looks Meena Kumari gives, no one can ever forget it. The music of Pakeezah is amazing, all the more if you can understand the sublime poetry, and is definitely one of those ""OMG, 5 minutes another song"" movies. You get the feeling of how trapped Sahibjaan is in among all the amazing jewelery she wears and fountained court yard she casually walks past.<br /><br />A parody of all the dreams you've ever had..........",1 +17042,"This movie's one of my favorites. It's not really any good, but it's great to laugh at. The dialogue can become incredibly ludicrous and poorly acted (eg, ""Manji, can we ask you a few questions?"" ""Sure."" ""We think you can help us with the answers."") Any fighting is more or less surrealistic. Make sure to watch for Brock, the oafy white guy who attacks the main characters. He only has two lines, but he's one of the best guys in the movie!",0 +4434,"As I have matured, my fascination with the Academy Awards has evolved from intense interest to casual amusement. As in a few other comments that I have written, the bizarre results of Academy Award voting are often difficult to explain. The omission of ""In Cold Blood"" in 1967 as one of the five Best Picture nominees is one of those inexplicable instances, especially when one of the nominations that year went to the wretched and unwatchable ""Dr. Dolittle."" While only an insomniac or masochist would tune in to that Rex Harrison disaster, Richard Brook's powerful adaptation of Truman Capotes non-fiction novel retains its ability to capture the viewer's attention and leave him or her completely drained by the final fade out. While there is nothing particularly graphic or gruesome on screen, the film is definitely adult material. Based on a Nebraska multiple murder in the 1950's and filmed in the actual locations where the murders took place, ""In Cold Blood"" was filmed by master cinematographer Conrad Hall in stark black and white, and his screen compositions demand to be seen in their correct widescreen aspect ratio. Together with Quincy Jones's unsettling score, Hall's work should have been credited above the title with Brook's screenplay as the three pillars on which this intense classic is built. The performances are fine as well. Scott Wilson is all cold charm and Robert Blake intense introversion as the two killers. (There is an inside joke at one point when Blake speaks of Bogart and ""The Treasure of the Sierra Madre"" while the duo are driving to Mexico. As a child star, Blake sold the lottery ticket to Bogart in that John Huston film.) The film, like the book, is definitely slanted towards the killers and has an anti-capital punishment tilt, although the remorselessness of the murderers somewhat negates that sentiment despite the difficult-to-watch final scenes. Some have criticized the film because it does focus on the criminals, their backgrounds, and lives, while the Clutter family, which was literally murdered in cold blood in the middle of the night, come across as one-dimensional characters of little import. This lack of balance comes from the book as Capote spent much time with the two killers while they were on death row. The Clutter family was apparently not researched to the same depth. However, whatever feelings one may have for or against capital punishment, ""In Cold Blood"" will leave you mired deep in conflicting thoughts. Run a double bill with ""Dead Man Walking,"" and you may not speak for days.",1 +11676,"One word: suPURRRRb! I don't think I have see anything like this in a long time on network or cable television. Watching this show was like taking a breath of fresh air amid TV schedule filled with reality shows and boring re-runs. <br /><br />I have to say I had my reservations. After all, critics were almost unanimous in crying foul and downgrading the show. But when half an hour was over (by the way, thank you, NBC, for running a commercial-free show), I was left with the feeling of instant love, love at first glance, the true love that one feels in his guts. Everything about this show screamed EXCELLENCE.<br /><br />Graphics in this show were at least as good as Finding Nemo and Shrek. No small feat considering those movies took years to be developed.<br /><br />Cast was marvelous. I am partial to John Goodman's voice, but the rest of the team certainly were on par with John. Special mention: Lisa Kudrow's guest appearance. She was on top of the game creating neurotic, pudgy, and lovable panda with a Jewish streak in her. (Panda from Brooklyn? Only in this show.) <br /><br />Script was funny, with a lot of inside and adult jokes which were sharp, yet not tacky. A note for all parents: this is NOT for children. This show was never advertised as such, and there's a reason why it's set for 9PM, not 8PM. So if you'd like to complain about ""objectionable context"", save your breath. Adults deserve a comedy made just for them, and Father of the Pride is it. <br /><br />Not everything was perfect. I was a bit puzzled by Siegfried and Roy's characters. Do I sense ""stereotype"" when it comes to them? Yes, they are gay. Yes, they are flamboyant. Yes, they speak with German accents. But that's yesterday's news. Give us something new, something fresh, something funny. Putting the old jokes in a new show is definitely the wrong approach. I understand that the creators of this show wanted to use the ""star power"" that these guys have. That's fine by me. But please don't dwell on something everybody already knows by heart. Hopefully, the rest of the show is not going to play the same old record over and over. <br /><br />In general, the show is definitely a Must-See-TV. Funny, witty, with a few unexpected twists here and there -- there haven't been a comedy this good since Seinfeld. I am certainly looking forward to the next episode.",1 +717,"This great film is composed mostly of documentary footage is currently contained on a DVD along with Prelude to War. The great American filmmaker and story teller Frank Capra made these films which simply and clearly call attention to the main points that caused World War II and Hitler's rise.<br /><br />Every school child, nay, every American should watch these films today because they are so apropos. History has been repeating itself over and over again! The Lord Chamberlains are still alive and kicking; the tactics used by the Nazis of infiltrating countries through sympathizers and then the Communists and now by Muslim terrorist groups, are still working to these evil group's advantage.<br /><br />By sitting back and letting Hitler as early as 1935 be aggressive - France, America and England caused over 50 million people's deaths. Americans, French and British today would happily let Hitler do exactly the same thing despite the fact that we should have learned from history what happens when you let dictators break treaties.<br /><br />These great films may be too simplistic for World War II history buffs. They don't tell the horrors that the Soviet Union caused simply because at the time America was teamed up with them, fighting Hitler. This film does tell the plain facts and motives that led to the terrible war.",1 +3816,"Poor Basil Rathbone, an egotistical composer who's lost his muse. He's been faking it for some time, buying his lyrics and his music from various sources. Trouble is that two of the sources (Bing Crosby music) and (Mary Martin words) happen to meet and fall in love. And then they discover what they've been doing. Complications ensue, but all is righted at the end.<br /><br />Crosby and Martin sing terrifically. Mary had signed a Paramount contract and also at the same time doubled as a regular on Crosby's Kraft Music Hall Radio Show. For reasons I don't understand, movie audiences didn't take to her, so she went back to Broadway and did One Touch of Venus in 1944 and stayed there.<br /><br />Basil Rathbone in one of the few times he played comedy does it very well. His ego is constantly being deflated by sidekick Oscar Levant and again I'm surprised they didn't do more films together.<br /><br />As in most of Crosby's Paramount vehicles, no big production numbers, but I agree with the previous reviewer about the title tune being done as an impromptu jam session in a pawn shop. Good job by all.<br /><br />A surprisingly original plot and great entertainment.",1 diff --git a/labs/lab4/nlp-lab4.ipynb b/labs/lab4/nlp-lab4.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..c845d3c2fd5907fd08de649ce19bfb997aac4510 --- /dev/null +++ b/labs/lab4/nlp-lab4.ipynb @@ -0,0 +1,1066 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e86f90cc", + "metadata": {}, + "source": [ + "# Lab 4: Parameter-efficient fine-tuning" + ] + }, + { + "cell_type": "markdown", + "id": "cbe683ab", + "metadata": {}, + "source": [ + "Fine-tuning all parameters of pre-trained language models can be resource-intensive. Because of this, current research in natural language processing is looking into developing methods for adapting models to downstream tasks without full fine-tuning. These methods only tune a small number of model parameters while yielding performance comparable to that of a fully fine-tuned model.\n", + "\n", + "In this lab, you will implement LoRA, one of the most well-known methods for parameter-efficient fine-tuning. LoRA stands for “Low-Rank Adaptation of Large Language Models” and was originally described in a research article by [Hu et al. (2021)](https://arxiv.org/abs/2106.09685).\n", + "\n", + "Along the way, you will earn experience with [Hugging Face Transformers](https://huggingface.co/docs/transformers/en/index), a state-of-the-art library for training and deploying language models, as well as with several related libraries. In particular, you will learn a best-practice workflow for downloading a Transformer model and fine-tuning it on the downstream task of binary sentiment classification.\n", + "\n", + "*Tasks you can choose for the oral exam are marked with the graduation cap 🎓 emoji.*" + ] + }, + { + "cell_type": "markdown", + "id": "90eaa7f8", + "metadata": {}, + "source": [ + "## Dataset" + ] + }, + { + "cell_type": "markdown", + "id": "b426bb69", + "metadata": {}, + "source": [ + "The data for this lab comes from the [Large Movie Review Dataset](https://ai.stanford.edu/~amaas/data/sentiment/). The full dataset consists of 50,000 highly polar movie reviews collected from the Internet Movie Database (IMDB). Here, we use a random sample consisting of 2,000 reviews for training and 500 reviews for evaluation." + ] + }, + { + "cell_type": "markdown", + "id": "1234a390", + "metadata": {}, + "source": [ + "To load the dataset, we use the [Hugging Face Datasets](https://huggingface.co/docs/datasets/en/index) library." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dcf185b8", + "metadata": {}, + "outputs": [], + "source": [ + "from datasets import load_dataset\n", + "\n", + "imdb_dataset = load_dataset(\n", + " \"csv\", data_files={\"train\": \"train.csv\", \"eval\": \"eval.csv\"}\n", + ")\n", + "\n", + "imdb_dataset" + ] + }, + { + "cell_type": "markdown", + "id": "d63c62a4", + "metadata": {}, + "source": [ + "As we can see, each sample in the dataset is a record with three fields: an internal index (`index`, an integer), the text of the review (`review`, a string), and the sentiment label (`label`, an integer – 1 for “positive” and 0 for “negative” sentiment).\n", + "\n", + "Here is an example record:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7b5547ce", + "metadata": {}, + "outputs": [], + "source": [ + "imdb_dataset[\"train\"][645]" + ] + }, + { + "cell_type": "markdown", + "id": "e77c6865", + "metadata": {}, + "source": [ + "## Tokeniser" + ] + }, + { + "cell_type": "markdown", + "id": "eb9646fe", + "metadata": {}, + "source": [ + "As our pre-trained language model, we will use [DistilBERT](https://huggingface.co/docs/transformers/en/model_doc/distilbert), a compact encoder model with 40% less parameters than BERT base. DistilBERT is not actually a *large* language model by modern standards and thus does not benefit as much from parameter-efficient fine-tuning as other models. However, it has the benefit of being light and fast, and can be run even on consumer hardware.\n", + "\n", + "To feed the movie reviews to DistilBERT, we need to tokenise them and encode the resulting tokens as integers in the model vocabulary. We start by loading the DistilBERT tokeniser using the [Auto classes](https://huggingface.co/docs/transformers/en/model_doc/auto):" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d76f2c9e", + "metadata": {}, + "outputs": [], + "source": [ + "from transformers import AutoTokenizer\n", + "\n", + "tokenizer = AutoTokenizer.from_pretrained(\"distilbert-base-uncased\")" + ] + }, + { + "cell_type": "markdown", + "id": "ed29329d", + "metadata": {}, + "source": [ + "We then create a tokenised version of the dataset:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "de583eff", + "metadata": {}, + "outputs": [], + "source": [ + "def tokenize_function(batch):\n", + " return tokenizer(batch[\"review\"], padding=True, truncation=True)\n", + "\n", + "\n", + "tokenized_imdb_dataset = imdb_dataset.map(tokenize_function, batched=True)\n", + "\n", + "tokenized_imdb_dataset" + ] + }, + { + "cell_type": "markdown", + "id": "66cde945", + "metadata": {}, + "source": [ + "As we can see, tokenising adds two additional fields to each review: `input_ids` is the list of token ids corresponding to the review, and `attention_mask` is the list of indices specifying which tokens the encoder should attend to." + ] + }, + { + "cell_type": "markdown", + "id": "e1efb97b", + "metadata": {}, + "source": [ + "To avoid trouble when fine-tuning the model later, the next cell disables tokeniser parallelism." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "70d0190e", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "\n", + "os.environ[\"TOKENIZERS_PARALLELISM\"] = \"false\"" + ] + }, + { + "cell_type": "markdown", + "id": "fceee00c", + "metadata": {}, + "source": [ + "## Trainer" + ] + }, + { + "cell_type": "markdown", + "id": "8ddcc655", + "metadata": {}, + "source": [ + "In this section, we will set up our workflow for training and evaluating DistilBERT models. The central component in this workflow is the [Trainer](https://huggingface.co/docs/transformers/main_classes/trainer), which provides extensive configuration options. Here, we leave most of these options at their default value. Two changes we *do* make are to enable evaluation of the trained model after each epoch, and to log the training and evaluation loss after every 5 training steps (the default is 500)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e6d2854d", + "metadata": {}, + "outputs": [], + "source": [ + "from transformers import TrainingArguments\n", + "\n", + "training_args = TrainingArguments(\n", + " output_dir=\"tmp_trainer\",\n", + " eval_strategy=\"epoch\",\n", + " logging_steps=5,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "2f22cfb9", + "metadata": {}, + "source": [ + "In addition to the loss, we also track classification accuracy. For this we import the [Hugging Face Evaluate](https://huggingface.co/docs/evaluate/en/index) library and define a small helper function `compute_metrics()` that the trainer will call after each epoch." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4bafbadf", + "metadata": {}, + "outputs": [], + "source": [ + "import evaluate\n", + "\n", + "accuracy = evaluate.load(\"accuracy\")\n", + "\n", + "\n", + "def compute_metrics(eval_pred):\n", + " logits, labels = eval_pred\n", + " predictions = logits.argmax(axis=-1)\n", + " return accuracy.compute(predictions=predictions, references=labels)" + ] + }, + { + "cell_type": "markdown", + "id": "f4a488a2", + "metadata": {}, + "source": [ + "In the next cell we define a convenience function `make_trainer()` that creates a readily-configured trainer for a specified model (*model*). We will use this trainer both to train the model on the training section of the tokenised review dataset, and to evaluate it on the evaluation section." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "eb219812", + "metadata": {}, + "outputs": [], + "source": [ + "from transformers import Trainer\n", + "\n", + "\n", + "def make_trainer(model):\n", + " trainer = Trainer(\n", + " model=model,\n", + " args=training_args,\n", + " train_dataset=tokenized_imdb_dataset[\"train\"],\n", + " eval_dataset=tokenized_imdb_dataset[\"eval\"],\n", + " compute_metrics=compute_metrics,\n", + " )\n", + " return trainer" + ] + }, + { + "cell_type": "markdown", + "id": "851792f4", + "metadata": {}, + "source": [ + "## Full fine-tuning" + ] + }, + { + "cell_type": "markdown", + "id": "892ac059", + "metadata": {}, + "source": [ + "In the rest of this notebook, we will work our way to the implementation of LoRA, and compare LoRA to traditional fine-tuning methods. Our first point of reference is a fully fine-tuned DistilBERT model." + ] + }, + { + "cell_type": "markdown", + "id": "6206cf1c", + "metadata": {}, + "source": [ + "We start by loading the pre-trained model:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d1433800", + "metadata": {}, + "outputs": [], + "source": [ + "from transformers import AutoModelForSequenceClassification\n", + "\n", + "pretrained_model = AutoModelForSequenceClassification.from_pretrained(\n", + " \"distilbert-base-uncased\", num_labels=2\n", + ")\n", + "\n", + "pretrained_model" + ] + }, + { + "cell_type": "markdown", + "id": "9427dceb", + "metadata": {}, + "source": [ + "The architecture of DistilBERT is that of a standard Transformer encoder with an embedding layer (`embeddings`) followed by a stack of six Transformer blocks (`transformer`) and a feedforward network with two linear layers (`pre_classifier` and `classifier`) and a final dropout layer (`dropout`)." + ] + }, + { + "cell_type": "markdown", + "id": "a633d0ef", + "metadata": {}, + "source": [ + "### 🎈 Task 4.01: Counting the number of trainable parameters\n", + "\n", + "One relevant measure in the context of parameter-efficient fine-tuning is the number of parameters that need to be changed when training a model. Your first task in this lab is to write a function `num_trainable_parameters()` that calculates this number for a given model." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "69dc6856", + "metadata": {}, + "outputs": [], + "source": [ + "def num_trainable_parameters(model):\n", + " # TODO: Replace the next line with your own code\n", + " return 0" + ] + }, + { + "cell_type": "markdown", + "id": "0d221df2", + "metadata": {}, + "source": [ + "The function should implement the following specification:\n", + "\n", + "> **num_trainable_parameters** (*model*)\n", + ">\n", + "> Returns the number of float-valued trainable parameters in the specified *model* as an integer.\n", + "\n", + "#### 👍 Hint\n", + "\n", + "The term *parameter* can refer to either complete tensors or the individual elements of these tensors. For example, a linear layer created by `nn.Linear(3, 5)` has 2 tensor-valued parameters (a weight matrix and a bias vector) and 20 float-valued parameters (the elements of these tensors). To get the tensor-valued parameters of a model, you can use the [`parameters()`](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.parameters) method. A parameter is *trainable* if it requires gradient." + ] + }, + { + "cell_type": "markdown", + "id": "190616d0", + "metadata": {}, + "source": [ + "#### 🤞 Test your code\n", + "\n", + "To test your code, apply your function to the pre-trained model. The correct number of float-valued trainable parameters for this model is 66,955,010." + ] + }, + { + "cell_type": "markdown", + "id": "6f18202c", + "metadata": {}, + "source": [ + "### Fine-tuning\n", + "\n", + "When we load the pre-trained model, the Hugging Face Transformers library warns us that the weights of the feedforward network have not yet been trained. To do so, in the next cell, we pass the pre-trained model to a trainer and initiate the fine-tuning process.\n", + "\n", + "**⚠️ Please note that fine-tuning the model will take some time! ⚠️**\n", + "\n", + "You can work on the other problems in this lab while you are waiting." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d2de10f5", + "metadata": {}, + "outputs": [], + "source": [ + "finetuned_trainer = make_trainer(pretrained_model)\n", + "\n", + "finetuned_trainer.train()" + ] + }, + { + "cell_type": "markdown", + "id": "9b02d273", + "metadata": {}, + "source": [ + "Because full fine-tuning is so resource-intensive, we save the fine-tuned model to disk:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2e394803", + "metadata": {}, + "outputs": [], + "source": [ + "finetuned_trainer.save_model(\"finetuned\")" + ] + }, + { + "cell_type": "markdown", + "id": "c624fc86", + "metadata": {}, + "source": [ + "Later in this notebook, whenever you need the fully fine-tuned version of the model, you can load it as follows:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f1124496", + "metadata": {}, + "outputs": [], + "source": [ + "finetuned_model = AutoModelForSequenceClassification.from_pretrained(\"finetuned\")" + ] + }, + { + "cell_type": "markdown", + "id": "b64681f8", + "metadata": {}, + "source": [ + "### Convenience functions\n", + "\n", + "Because we will repeat the steps we just took to fine-tune the pre-trained model several times in this notebook, we define two convenience functions:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "960d010b", + "metadata": {}, + "outputs": [], + "source": [ + "def train(model):\n", + " print(\"Number of trainable parameters:\", num_trainable_parameters(model))\n", + " trainer = make_trainer(model)\n", + " trainer.train()\n", + " return model" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "96208182", + "metadata": {}, + "outputs": [], + "source": [ + "def evaluate(model):\n", + " trainer = make_trainer(model)\n", + " return trainer.evaluate()" + ] + }, + { + "cell_type": "markdown", + "id": "1cfa5b36", + "metadata": {}, + "source": [ + "## Tuning the final layers only" + ] + }, + { + "cell_type": "markdown", + "id": "0227d8c8", + "metadata": {}, + "source": [ + "If full fine-tuning marks one end of the complexity spectrum, the other end is marked by only tuning the final layers of the transformer – the *head* of the model. In the case of DistilBERT, the head consists of the `pre_classifier` and `classifier` layers." + ] + }, + { + "cell_type": "markdown", + "id": "4b309f40", + "metadata": {}, + "source": [ + "### 🎈 Task 4.02: Head-tuning\n", + "\n", + "Implement the head-tuning strategy by coding the following function:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a05aae5b", + "metadata": {}, + "outputs": [], + "source": [ + "def make_headtuned_model():\n", + " # TODO: Replace the next line with your own code\n", + " raise NotImplementedError" + ] + }, + { + "cell_type": "markdown", + "id": "707dd4d5", + "metadata": {}, + "source": [ + "Here is the specification of this function:\n", + "\n", + "> **make_headtuned_model** ()\n", + ">\n", + "> Returns a model that is identical to the pre-trained model, except that the head layers have been trained on the sentiment data. (The other parameters of the pre-trained model are left untouched.)\n", + "\n", + "#### 👍 Hint\n", + "\n", + "You freeze a parameter by setting its `requires_grad`-attribute to `False`." + ] + }, + { + "cell_type": "markdown", + "id": "60679685", + "metadata": {}, + "source": [ + "Once you have an implementation of the head-tuning strategy, evaluate it on the evaluation data. How much accuracy do we lose when only training the final layers of the pre-trained model, compared to full fine-tuning?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c66d73a6", + "metadata": {}, + "outputs": [], + "source": [ + "headtuned_model = make_headtuned_model()" + ] + }, + { + "cell_type": "markdown", + "id": "334ee3b2", + "metadata": {}, + "source": [ + "#### 🤞 Test your code\n", + "\n", + "If you configured your model correctly, `num_trainable_parameters()` should show 592,130 trainable parameters." + ] + }, + { + "cell_type": "markdown", + "id": "2bced4a1", + "metadata": {}, + "source": [ + "For future reference, we also save the head-tuned model:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "59677530", + "metadata": {}, + "outputs": [], + "source": [ + "make_trainer(headtuned_model).save_model(\"headtuned\")" + ] + }, + { + "cell_type": "markdown", + "id": "ade8ef3f", + "metadata": {}, + "source": [ + "## Layer surgery" + ] + }, + { + "cell_type": "markdown", + "id": "94efdbce", + "metadata": {}, + "source": [ + "LoRA works by “wrapping” frozen layers from the pre-trained Transformer model inside adapter modules. Conventionally, this wrapping is only applied to the linear layers that transform the queries and values in the self-attention mechanism. To implement the wrapping, we need functions to extract and replace layers in a model. Your task in this section is to code these functions." + ] + }, + { + "cell_type": "markdown", + "id": "a4660183", + "metadata": {}, + "source": [ + "### 🎓 Task 4.03: Extracting layers\n", + "\n", + "Code a function that extracts the query and value linear layers from a DistilBERT model:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "62f17aa1", + "metadata": {}, + "outputs": [], + "source": [ + "def extract(model):\n", + " # TODO: Replace the next line with your own code\n", + " return {}" + ] + }, + { + "cell_type": "markdown", + "id": "52ed77d7", + "metadata": {}, + "source": [ + "Implement this function to match the following specification:\n", + "\n", + "> **extract** (*model*)\n", + ">\n", + "> Takes a DistilBERT model (*model*) and extracts the query and value linear layers from each block of the Transformer. Returns a dictionary mapping the DistilBERT module names of these layers to the layers themselves (instances of `nn.Linear`).\n", + "\n", + "#### 👍 Hint\n", + "\n", + "As we saw earlier, the DistilBERT model consists of a hierarchy of nested submodules. Each of these can be addressed by a fully-qualified string name. Use [`get_submodule()`](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.get_submodule) to retrieve a layer by name. You can hard-wire the names of the layers you want to extract." + ] + }, + { + "cell_type": "markdown", + "id": "eee363a3", + "metadata": {}, + "source": [ + "#### 🤞 Test your code\n", + "\n", + "To test your code, check the number of trainable float-valued parameters in the extracted layers. This number should be 7,087,104." + ] + }, + { + "cell_type": "markdown", + "id": "0abad1cc", + "metadata": {}, + "source": [ + "### 🎓 Task 4.04: Replacing layers\n", + "\n", + "Next, code the inverse of the `extract()` function to replace selected layers of a module using a dictionary of named layers." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0c7e5124", + "metadata": {}, + "outputs": [], + "source": [ + "def replace(model, named_layers):\n", + " # TODO: Replace the next line with your own code\n", + " return model" + ] + }, + { + "cell_type": "markdown", + "id": "a56cfd34", + "metadata": {}, + "source": [ + "Implement this function to match the following specification:\n", + "\n", + "> **replace** (*model*, *named_layers*)\n", + ">\n", + "> Takes a DistilBERT model (*model*) and a dictionary in the format returned by `extract()` (*named_layers*) and injects the extracted layers into the model. More specifically, suppose that *named_layers* contains a key–value pair `(name, layer)`. Then the function replaces the submodule of *model* addressed by the fully-qualified string name `name` by the layer `layer`. Returns the modified model.\n", + "\n", + "#### 👍 Hint\n", + "\n", + "Use [`getattr()`](https://docs.python.org/3/library/functions.html#getattr) and [`setattr()`](https://docs.python.org/3/library/functions.html#setattr) to return or set the value of a named submodule." + ] + }, + { + "cell_type": "markdown", + "id": "b9003d41", + "metadata": {}, + "source": [ + "#### 🤞 Test your code\n", + "\n", + "To test your implementation, write code that (1) extracts the query and value linear layers from the fine-tuned model; (2) replaces these layers with clones with random weights; and (3) replaces these layers again with the original versions. Evaluating the modified model after step (2) should yield a near-random accuracy. Evaluating it again after step (3) should yield the original accuracy.\n", + "\n", + "The following function should be helpful. It clones a linear layer, copying the weights and the bias from the original." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "851b2937", + "metadata": {}, + "outputs": [], + "source": [ + "import torch.nn as nn\n", + "\n", + "\n", + "def clone_linear(original):\n", + " out_features, in_features = original.weight.shape\n", + " copy = nn.Linear(in_features, out_features)\n", + " copy.load_state_dict(original.state_dict())\n", + " return copy" + ] + }, + { + "cell_type": "markdown", + "id": "cb91ef5c", + "metadata": {}, + "source": [ + "## Low-rank approximation" + ] + }, + { + "cell_type": "markdown", + "id": "e27ab7f3", + "metadata": {}, + "source": [ + "The basic idea behind LoRA is to conceptualise fine-tuned weights as a sum $W_0 + \\Delta W$ of the weights from the pre-trained model, $W_0$, and a low-rank update matrix $\\Delta W$. The goal of fine-tuning, then, is to learn the update matrix; this happens in the adapter layers.\n", + "\n", + "Before we get to the implementation of the LoRA adapter layers, we first check to what extent the assumption that fine-tuning can be described by low-rank matrices holds true for DistilBERT. To do so, we will “cheat” and replace the query and value linear layers of the head-tuned model with low-rank approximations. The technical key to this is the truncated singular value decomposition (SVD)." + ] + }, + { + "cell_type": "markdown", + "id": "a321995d", + "metadata": {}, + "source": [ + "### 🎓 Task 4.05: Low-rank matrix approximation\n", + "\n", + "Your first task in this section is to implement the low-rank matrix approximation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b8b01b6c", + "metadata": {}, + "outputs": [], + "source": [ + "def approximate(matrix, rank):\n", + " # TODO: Replace the next line with your own code\n", + " return matrix" + ] + }, + { + "cell_type": "markdown", + "id": "bbc9fe9d", + "metadata": {}, + "source": [ + "Implement this function to match the following specification:\n", + "\n", + "> **approximate** (*matrix*, *rank*)\n", + ">\n", + "> Takes a 2D-tensor (*matrix*) and an integer rank $r$ (*rank*), computes the truncated SVD with rank $r$ on the tensor, and returns the corresponding low-rank approximation matrix." + ] + }, + { + "cell_type": "markdown", + "id": "348eee05", + "metadata": {}, + "source": [ + "#### 👍 Hint\n", + "\n", + "If you need a refresher on the low-rank matrix approximation, read the corresponding section from the Wikipedia article on the [Singular value decomposition](https://en.wikipedia.org/wiki/Singular_value_decomposition#Low-rank_matrix_approximation). The truncated SVD is an extension of the full SVD; the latter can be computed using [`torch.linalg.svd()`](https://pytorch.org/docs/stable/generated/torch.linalg.svd.html)." + ] + }, + { + "cell_type": "markdown", + "id": "d2a1f3a5", + "metadata": {}, + "source": [ + "#### 🤞 Test your code\n", + "\n", + "To test your code, run the following cell. It creates a matrix `original` with rank $r \\leq 8$ and after that the rank-$8$ approximation matrix `approximation`. You should find that the distance between the two matrices is very low." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6ce06708", + "metadata": {}, + "outputs": [], + "source": [ + "original = torch.rand(768, 8) @ torch.rand(8, 384)\n", + "approximation = approximate(original, 8)\n", + "torch.dist(original, approximation)" + ] + }, + { + "cell_type": "markdown", + "id": "a082b398", + "metadata": {}, + "source": [ + "### 🎓 Task 4.06: Approximated fine-tuned model (version 1)\n", + "\n", + "In the next step, your task is to construct a version of the head-tuned model in which every query and value linear layer is replaced by a low-rank approximation of the corresponding layer from the fully fine-tuned model." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0b5f59ca", + "metadata": {}, + "outputs": [], + "source": [ + "def make_approximated_model_1(rank):\n", + " # TODO: Replace the next line with your own code\n", + " raise NotImplementedError" + ] + }, + { + "cell_type": "markdown", + "id": "45e4b80a", + "metadata": {}, + "source": [ + "Here is the specification of this function:\n", + "\n", + "> **make_approximated_model_1** (*rank*)\n", + ">\n", + "> Takes an integer rank $r$ (*rank*) and returns a version of the head-tuned model in which every query and value linear layer is replaced by its $r$-approximated corresponding layer from the fully fine-tuned model." + ] + }, + { + "cell_type": "markdown", + "id": "5e8dcd1f", + "metadata": {}, + "source": [ + "Run the next cell to evaluate your model for different rank values. Start with the full rank and then halve the rank in each step. What is the lowest rank that still gives you a higher accuracy than the head-tuned model?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "acd5aa87", + "metadata": {}, + "outputs": [], + "source": [ + "approximated_model_1 = make_approximated_model_1(768)\n", + "\n", + "evaluate(approximated_model_1)" + ] + }, + { + "cell_type": "markdown", + "id": "6fbea18c", + "metadata": {}, + "source": [ + "### 🎓 Task 4.07: Approximated fine-tuned model (version 2)\n", + "\n", + "In the approximated model from the previous section, the truncated SVD is applied to the full weight matrix of the fine-tuned model: $W_0 + \\Delta W$. In LoRA, the low-rank approximation only applies to the *update matrix* $\\Delta W$, i.e., the difference between the fully fine-tuned weights and the pre-trained weights." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7a1d7e5b", + "metadata": {}, + "outputs": [], + "source": [ + "def make_approximated_model_2(rank):\n", + " # TODO: Replace the next line with your own code\n", + " raise NotImplementedError" + ] + }, + { + "cell_type": "markdown", + "id": "1951195c", + "metadata": {}, + "source": [ + "Implement the function to match the following specification:\n", + "\n", + "> **make_approximated_model_2** (*rank*)\n", + ">\n", + "> Takes an integer rank $r$ (*rank*) and returns a version of the head-tuned model in which the weight matrix of every query and value linear layer is replaced by the sum $W_0 + \\Delta W$, where $W_0$ is the weight matrix of the pre-trained model and $\\Delta W$ is the rank-$r$ approximation of the update matrix, i.e., the difference between the fully fine-tuned weights and the pre-trained weights." + ] + }, + { + "cell_type": "markdown", + "id": "475125cf", + "metadata": {}, + "source": [ + "Run the next cell to evaluate your model for different rank values. Start with the rank from the approximated model from the previous section and then halve the rank in each step. What is the lowest rank that still gives you a higher accuracy than the head-tuned model?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2c614186", + "metadata": {}, + "outputs": [], + "source": [ + "approximated_model_2 = make_approximated_model_2(768)\n", + "\n", + "evaluate(approximated_model_2)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "18430496", + "metadata": {}, + "outputs": [], + "source": [ + "approximated_model_2 = make_approximated_model_2(3)\n", + "\n", + "evaluate(approximated_model_2)" + ] + }, + { + "cell_type": "markdown", + "id": "9136defe", + "metadata": {}, + "source": [ + "## Low-Rank Adaptation (LoRA)" + ] + }, + { + "cell_type": "markdown", + "id": "4d4fd2c2", + "metadata": {}, + "source": [ + "In this section, you will implement the LoRA adapters and fine-tune the adapted model." + ] + }, + { + "cell_type": "markdown", + "id": "e56a4235", + "metadata": {}, + "source": [ + "### 🎓 Task 4.08: Implement the adapter\n", + "\n", + "A LoRA adapter implements the forward function\n", + "\n", + "$$\n", + "y = x W_0 + x \\Delta W = x W_0 + x A B\n", + "$$\n", + "\n", + "where $W_0$ is a linear transformation from the pre-trained model and $\\Delta W$ is a learned update matrix, deconstructed into the product $AB$ of two rank-$r$ matrices $A$ and $B$. LoRA scales the update matrix $\\Delta W$ by a factor of $\\alpha / r$, where $\\alpha$ is a hyperparameter. (To keep the formula tidy, we ignore the fact that the linear transformation in the pre-trained model may additionally include a bias.)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f91ec802", + "metadata": {}, + "outputs": [], + "source": [ + "import torch.nn as nn\n", + "\n", + "\n", + "class LoRA(nn.Module):\n", + " def __init__(self, pretrained, rank=12, alpha=24):\n", + " super().__init__()\n", + " # TODO: Add your code here\n", + "\n", + " def forward(self, x):\n", + " # TODO: Replace the next line with your own code\n", + " raise NotImplementedError" + ] + }, + { + "cell_type": "markdown", + "id": "dbd075dc", + "metadata": {}, + "source": [ + "Your code must comply with the following specification:\n", + "\n", + "**__init__** (*self*, *pretrained*, *rank* = 12, *alpha* = 24)\n", + "\n", + "> Initialises the LoRA adapter. This sets up the matrices $A$ and $B$ from the equation above. The matrix $A$ is initialised with random weights from a standard normal distribution; the matrix $B$ is initialised with zeros. The argument *pretrained* is the linear layer from the pre-trained model that should be adapted. The arguments *rank* and *alpha* are the rank $r$ and the hyperparameter $\\alpha$ in the equation above.\n", + "\n", + "**forward** (*self*, *x*)\n", + "\n", + "> Sends an input *x* through the adapter, implementing the equation above." + ] + }, + { + "cell_type": "markdown", + "id": "6b1d6bac", + "metadata": {}, + "source": [ + "### 🎓 Task 4.09: Inject the adapter into the pre-trained model\n", + "\n", + "The final step is to construct an adapted model by injecting the LoRA adapters into the pre-trained model." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "16d4f05c", + "metadata": {}, + "outputs": [], + "source": [ + "def make_lora_model(rank):\n", + " # TODO: Replace the next line with your own code\n", + " raise NotImplementedError" + ] + }, + { + "cell_type": "markdown", + "id": "0377612a", + "metadata": {}, + "source": [ + "Implement the function to match the following specification:\n", + "\n", + "> **make_lora_model** (*rank*)\n", + ">\n", + "> Returns a model that is identical to the pre-trained model, except that the query and value linear layers have been wrapped in LoRA adapters, and the LoRA adapters and the head layers of the pre-trained model have been trained on the sentiment data. (The other parameters of the pre-trained model are left untouched.) The rank of the adapters is specified by the argument *rank*. The *alpha* value of the adapters is set to twice the rank (a common rule of thumb)." + ] + }, + { + "cell_type": "markdown", + "id": "6150e7d7", + "metadata": {}, + "source": [ + "Run the next cell to evaluate your model for $r = 6$ and $\\alpha = 12$. How many trainable parameters does the adapted model have? What accuracy do you get? How do these value relate to the number of trainable parameters and accuracy of the fully fine-tuned model, in terms of percentages?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2538e3dc", + "metadata": {}, + "outputs": [], + "source": [ + "lora_model = make_lora_model(6)\n", + "\n", + "evaluate(lora_model)" + ] + }, + { + "cell_type": "markdown", + "id": "94db36b7", + "metadata": {}, + "source": [ + "## Alternatives to Transformer-based models" + ] + }, + { + "cell_type": "markdown", + "id": "f5346d06", + "metadata": {}, + "source": [ + "Even with methods for parameter-efficient fine-tuning, applying DistilBERT and other Transformer-based models comes at a significant cost – an investment that does not always pay off. In the final task of this lab, we ask you to explore a more traditional approach to classification and contrast it with the pre-training/fine-tuning approach of neural language models." + ] + }, + { + "cell_type": "markdown", + "id": "b35b1c8d", + "metadata": {}, + "source": [ + "### 🎓 Task 4.10: Comparing with a non-neural classifier\n", + "\n", + "Browse the web to find a tutorial on how to apply a classifier from the [scikit-learn](https://scikit-learn.org/stable/) library to the problem of sentiment classification and implement the method here in this notebook. We suggest you use [multinomial Naive Bayes](https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.MultinomialNB.html) or [logistic regression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html). (Once you have code for one method, it is easy to switch to the other.) Evaluate your chosen classifier on the IMDB dataset.\n", + "\n", + "Questions to consider:\n", + "\n", + "* Which classifier did you try? What results did you get? How long did it take you to train and run the classifier?\n", + "* What is your perspective on the trade-off between accuracy and resource requirements between the two approaches?\n", + "* What did you learn? How, exactly, did you learn it? Why does this learning matter?" + ] + }, + { + "cell_type": "markdown", + "id": "e661deba", + "metadata": {}, + "source": [ + "**🥳 Congratulations on finishing this lab! 🥳**" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/labs/lab4/train.csv b/labs/lab4/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..88f5c9972747656ddcd9ddd88f3f527ea49553b5 --- /dev/null +++ b/labs/lab4/train.csv @@ -0,0 +1,2001 @@ +index,review,label +6868,"In Panic In The Streets Richard Widmark plays U.S. Navy doctor who has his week rudely interrupted with a corpse that contains plague. As cop Paul Douglas properly points out the guy died from two bullets in the chest. That's not the issue here, the two of them become unwilling partners in an effort to find the killers and anyone else exposed to the disease.<br /><br />As was pointed out by any number of people, for some reason director Elia Kazan did not bother to cast the small parts with anyone that sounds like they're from Louisiana. Having been to New Orleans where the story takes place I can personally attest to that. Richard Widmark and his wife Barbara Bel Geddes can be excused because as a Navy doctor he could be assigned there, but for those that are natives it doesn't work.<br /><br />But with plague out there and the news being kept a secret, the New Orleans PD starts a dragnet of the city's underworld. The dead guy came off a ship from Europe and he had underworld connections. A New Orleans wise guy played by Jack Palance jumps to a whole bunch of erroneous conclusions and starts harassing a cousin of the dead guy who is starting to show plague symptoms. Palance got rave reviews in the first film where he received notice.<br /><br />Personally my favorite in this film is Zero Mostel. This happened right before Mostel was blacklisted and around that time he made a specialty of playing would be tough guys who are really toadies. He plays the same kind of role in the Humphrey Bogart film, The Enforcer. Sadly I can kind of identify with Mostel in that last chase scene where he and Palance are being chased down by Widmark, Douglas, and half the New Orleans Police. Seeing the weight challenged Zero trying to keep up with Palance was something else because I'm kind of in Zero's league now in the heft department.<br /><br />Kazan kept the action going at a good clip, there's very little down time in this film. If there was any less it would be an Indiana Jones film. Panic In The Streets won an Oscar for Best Original Screenplay that year.<br /><br />Kazan also made good use of the New Orleans waterfront and the French Quarter. Some of the same kinds of shots are later used in On the Waterfront. In fact Panic In The Streets is about people not squealing when they really should in their own best interest. Very similar again to On the Waterfront.<br /><br />Panic In The Streets does everyone proud who was associated with it. Now why couldn't Elia Kazan get some decent New Orleans sounding people in the small roles.",1 +24016,"If you ask me the first one was really better one. Look at Sarah M. G., she is real, mean, cruel girl, look at Amy Adams she is just little fool hanging around. She is nothing! People don't adore her! Second, Sebastian was cute and hot in first movie, now he is ""baby face"". Story is not that good, and i do not understand. Why didn't they make this one first, it is the beginning. Loosy actors, nothing with story. This is not cruel, this is playing. First one has better actors, better story, and its mean. I think that the music is better in cruel intentions 1 and the music is better in cruel intentions 3. It is not the worst movie I saw, but in compaer with first one its one big, big, big nothing.",0 +9668,"I am a big fan a Faerie Tale Theatre and I've seen them all and this is one of the best! It's funny, romantic, and a classic. I recommend this for all ages. It's great for little kids because it's well, Cinderella and great for adults and teen because it's funny and not over the top. I watched it when I was little and I still watch it now. It has great lines that my family and I quote all the time. The acting is great and it never gets old. If you like fairy tales and romances you will love this. I've watched many a Cinderella movie in my time and this is the best of them all. (Sorry Disney) I highly recommend this movie and all the Faerie Tale Theatre shows. They all appeal to all ages and are all unique and very entertaining.",1 +13640,"I just finished reading a book about Dillinger. This movie was horribly inaccurate. It's like they got a list of names and just made everything up. His robberies and getaways were well planned, down to the second - when the time was up, they left whether they had all of the money or not. They had notes of every road, where to turn, etc. Purvis never saw him at the restaurant, he was told that Dillinger paid for his meal after Dillinger left. Purvis never even SAW Dillinger before the night Dillinger was killed, only photos of him. The way his gang members died were fictitious. Dillinger never robbed a bank by himself, like he did in this movie. If I had never read the book, maybe I could have enjoyed the movie. The acting was a bit over the top in places. The action was overdone as well. On second thought, I doubt if I would have enjoyed it much even if I HADN'T read the book.",0 +14018,"Greg Davis and Bryan Daly take some crazed statements by a terrorists, add some commentary by a bunch of uber-right reactionaries, ascribe the most extreme positions of the most fundamentalist Moslems on the planet to everyone who calls themselves a Moslem, and presents this as the theology of Islam. Maybe their next film will involve interviewing Fred Phelps and the congregation of the Westboro Baptist Church, adding commentary by some militant atheist ""scholars, and call their film ""What the World Needs to Know About Christianity."" Ultimately, this film suffers from both poor production values and lack of attention to the most basic standards of journalism. Don't waste your time and money; just turn on your AM radio and listen to Rush Limbaugh for a couple of days for free and you'll get the same message with the same level of intellectual analysis.",0 +7488,"This really is an incredible film. Not only does it document the eternal struggle of indigenous and disenfranchised people to gain their rightful voice but it also shows the United States up for its dishonesty, subterfuge, and blatant disregard for human rights and self-determination. Chavez is shown as a very brave and charismatic leader struggling against what can only be characterized as a despicable elite devoid of any sense of proportion or justice. These filmmakers have recorded a coup unlike anything witnessed before.<br /><br />And in the cross hairs we see the USA, once again pulling the strings and blurring all sense of reality. It's heart-breaking to watch the initial stages of the revolt knowing full well that the subversion of democracy that we're witnessing is a tool long used by successive American governments and their seemingly blinkered citizens. The footage makes it clear that this is not a manipulation of TV or generic footage but an active documentation of a people and its government fighting for its future. Truly a moving experience for anyone with a conscience. These Irish film makers deserve our gratitude. Long live Chavez.<br /><br />We need to enshrine the notion that each country must be allowed to choose its government and to develop in ways that the majority sees fit. First phase in this process is the need to know what the realities of the situation are, and this documentary does a great job of doing just that.",1 +5804,"If you lived through the 60s, this film can be at times painful and other times quite joyous. It's all there but the small print in the counter culture tabloids prevalent at the time. These are the roots of a social revolution that is still playing out: ""don't speak too soon for the wheel's still in spin, for the times they are a-changin'"". While the film focuses on the revolutionary nature of LSD and it's dissemination at the time, that alone played a tremendous hand in the evolution of the intelligentsia, influencing engineers, scientists and aiding in the hyper-development of computer related activities. A salute to the filmmakers from one who was there - you've captured the era better than I've seen before.",1 +12909,"As a writer I find films this bad making it into production a complete slap in the face. Talk about insulting. I was writing better stories than this in 8th grade. Bad acting, bad writing, bad directing and when added all together the result is complete and total failure. <br /><br />The only thing this movie manages to accomplish is tricking the unsuspecting consumer into wasting their time. Who would green light something so poorly written? It's not artistic, clever, smart, suspenseful, mysterious, scary, dramatic-NOTHING.<br /><br />The characters are flat and boring with no development. The plot is as recycled as an aluminum can. They somehow managed to cast a few very familiar actors who all must be pretty desperate for work or hoping one of these low budget independent movies will turn out to be the next ""Pulp Fiction"". This script should have been used to line a bird cage, not a movie. <br /><br />Oh and last but not least, a 5'2 105 lb woman of course has the strength to kill men and women twice her size without a struggle and in a single blow. <br /><br />Avoid this bomb like it will infect you with an STD.",0 +3386,"I'm 14 years old and I love this cartoon. Burt Reynolds and Dom Deluise make a great pair. This movie is really funny and I love the songs. My favorite songs are ""You can't keep a good dog down"" and that song about sharing, I think it's called ""What's mine is yours"". This was the last movie with Judith Barsi, who played the voice of Anne-Marie. My favorite character is Charlie but I find Itchy's voice is so fun to hear. Although some scenes I actually found scary, I still have a hard time watching the scene with Charlie's dream, and Carface scares the crap out of me. Other characters like King Gator I found really funny. The ending was adorable and was actually sad, made me cry a little. I give this movie 7/10.",1 +9567,"This film would usually classify as the worst movie production ever. Ever. But in my opinion it is possibly the funniest. The horrifying direction and screenplay makes this film priceless. I bought the movie whilst sifting through the bargain DVD's at my local pound shop. Me and some friends then watched it, admittedly whilst rather drunk. It soon occurred that this wasn't any normal film. Instead a priceless relic of what will probably be James Cahill's last film. At first we were confused and were screaming for the DVD player to be turned off but thankfully in our abnormal state no-one could be bothered. Instead we watched the film right through. At the end we soon realised we had found any wasters dream, something that you can acceptably laugh at for hours, whilst laughing for all the wrong reasons. We soon showed all our other friends and they too agreed, this wasn't a work of abysmal film. This was a film that you can truly wet yourself laughing at. This was a film that anyone can enjoy. This was genius.",1 +21423,"Not one of Keaton's best efforts, this was perhaps a veiled attempt to revenge himself on the family he married into - the Talmadges. A Polish/English language barrier and a series of coincidences leads Buster into a marriage with a large Irish woman, who (along with her father and brothers) treat him shabbily until they think he may be an heir to a fortune. Mistaken identities abound here - gags are set up and but for the main fail to pay off.<br /><br />This Metro short does have at least two real laughs - Buster's cleverly turning around his lack of dinner by using the calendar on the wall and the basic ignorance of his adopted family to literally bring the meat to his plate. The other is a family photo, with the entire group slowly collapsing to the floor as the tripod of the camera loses its stability.<br /><br />The yeast beer overflow could have been the catalyst for a massive series of gags built upon gags, but stops short (for all the buildup) of development.<br /><br />Kino's print is crisp and clear and the score is one for player piano, drums and sound effects. Not one of Buster's best efforts, but worth a few laughs.",0 +3503,"Ok, even if you can't stand Liza- this movie is truly hilarious! The scenes with John Gielgud make up for Liza. One of the true romantic comedy classics from the 20th century. Dudley Moore makes being drunk and irresponsible look cute and amusing and it is damn fun to watch! The one-liners are the best.",1 +6657,"This film contains more action before the opening credits than are in entire Hollywood films of this sort. This film is produced by Tsui Hark and stars Jet Li. This team has brought you many worthy Hong Kong cinema productions, including the Once Upon A Time in China series. The action was fast and furious with amazing wire work. I only saw the wires in two shots. Aside from the action, the story itself was strong and not just used as filler. To find any other action films to rival this you must look for a Hong Kong cinema outlet in your area. They are really worth checking out and usually never disappoint.",1 +19192,"I'm not sure if the filmmakers were after a Saw-type movie or 12 Angry Men (people piecing together the facts to get at the truth). Whatever it was, it was poorly done and not worth watching.<br /><br />I don't watch movies for blood and gore, but because this film had little else going for it, it should have shown the actual killing more. Most were off-camera, minimizing the horror that we were supposed to feel by the deaths.<br /><br />It also bugged me that the cop was among the victims; he unwittingly contributed to the innocent young man going to prison by accepting planted evidence (given to him by MJH) into the evidence room. (And wouldn't MJH a the prosecuting attorney, have had access to that evidence--taking it out and putting the wrong evidence back--anyway, so she wouldn't have needed the cop's help?). The others, while often also not realizing it was this particular person they were harming, still played larger roles in his ultimate demise. The gun dealer should have know his guns would be used for evil intent. The insurance guy rejected a person obviously in need, etc. But the cop's crime seemed minor in comparison since he didn't know exactly what he was doing. The filmmakers could have taken it a step further and had him be the one that encouraged MJH to plant the evidence, which would have made him more culpable. And MJH's yelling that he (the cop) got her in that mess doesn't make any sense at all.<br /><br />It would been more intriguing if each person died in a way that offered the others a clue to why he/she was there and deserved to die. The insurance guy, for example, could have had the applications he rejected rammed down his throat so he choked on them; the Oriental woman could have had her eyes gouged out because she was a false witness, etc. Yes, more violent that the gun deaths, but more interesting.<br /><br />The dialog wasn't witty, there were no twists, and the ending was one of the worse (if not the worst) I've ever seen. The ending along knocked three stars off my rating.<br /><br />The actors did a decent job, especially given the garbage lines and motivation they had to work with.<br /><br />Overall, a waste of time.",0 +2518,"Tintin was one of my favorite heroes as a kid. I used to borrow the books from the school library every chance I got. My favorite one was ""The Red Sea Sharks"" - so much action and humor.<br /><br />This documentary was a brilliant exposition of the background story of Herge and his development of Tintin. The film-maker's personal experience in interviewing Herge and the story of his relationship with the artist who was the inspiration for the Chan character was very moving.<br /><br />A great documentary of a very talented and well-loved artist. A great example of someone who has become internationally renown, and has brought joy of millions of children (and the young at heart) all over the world.",1 +13361,"When my wife and I decided to watch this movie we thought it couldn't fail. I love Billy Crystal, my wife loves Julia Roberts and everyone we talked to said they loved it.<br /><br />We were misled, in spades.<br /><br />On my part, I felt Billy Crystal's character was extremely one-dimensional and did very little for the film. Sure, he cracked a couple of good jokes, but as a character he did nothing but take up space.<br /><br />And poor Julia Roberts. In past shows she plays well as a strong-willed, self-determined lady. In this flick, she seems completely repressed and had very little fire. This is not the Julia Roberts that my wife enjoys watching.<br /><br />OK, if I were to find one good thing, it would have to be Christopher Walken. Now that's entertainment. But, just like Billy Crystal, hardly anything is shown of his character.<br /><br />If you're looking for a night of mindless laughs with very little redeeming value, go see it. But if you're looking for a smart, romantic comedy, this is not your film. It's none of the above.",0 +21135,"This is not a commentary on the actual movie, but on the RUSCICO DVD release for North America. I don't know if there have been different releases and updates, but the disks we rented had a 2000 copyright on them, if that means anything. Anyway, the sound mixing on these DVD's was absolutely horrible. The levels often yo-yo-ed up and down; when the scene cut to a battlefield panorama, the orchestral track would thunder so loudly that I didn't know which would blow out first -- my eardrums or my speakers. When it was time for dialog, the volume would usually drop to something barely audible. Occasionally, the orchestra and Foley-work would stay loud while the dialog was superimposed at a much lesser level. My wife and I found that the only way we could watch this movie at all from these DVD's was if one of us kept a hand on the remote to continuously modulate the volume. And, like another user has already commented, when we selected English audio the dialog kept switching back and forth between Russian and English; and occasionally when the characters spoke in French on the native track the dubbing was in Russian, so you're SOL if you understand neither. Ultimately, we gave up watching after the first disk. Before you fork out $50+ for this movie on DVD for your own library, I'd heartily recommend getting your hands on a rental copy to see whether you can really enjoy this epic flick when burdened by such bad sound, particularly if you've never read the book and really want to understand the storyline.",0 +21080,"As a child the first installment (""The Little Mermaid"") was my favorite movie. It was filled with great characters, songs, and a fun family film. A week or so again I watched this movie for the first time. I believe that this movie was like most sequels and didn't surpass their original. I think that I feel this way possibly because I had high expectations and I have grown up. However, it is not a bad film.<br /><br />It starts when Ariel has just given birth to a beautiful child, Melody. Eric and Ariel feel threatened by Morgana (Eurselas' sister), so they build a large wall around their house which lies on the sea. As Melody grows up she begins to wonder outside of the walls where she is forbidden to go. Trouble stirs up as Morgana tries to take control of the seven seas.<br /><br />I don't want to give away any of the movie so you have to see it to find out. I did like that the voices are the same and again wonderful singing. I think this is a good family film though overall!",0 +6492,"The best martial arts movie ever made. This one movie is better than anything Bruce Lee ever did. A classic with a thoroughly entertaining and brutal climax. Jackie Chan is the king of martial arts movies and the true king of kung fu.It's a great pity that whilst Bruce Lee had been so overrated, it took Jackie Chan an eternity to become popular in Europe and America. Jackie rules!!!!",1 +6891,"Running only seventy-two minutes, this small, overlooked 2006 dramedy is really just a two-character sketch piece but one that works very well within its limitations. Taking place almost entirely in various, non-descript spots in southern Los Angeles, the story itself is inconsequential, but like Sofia Coppola's ""Lost in Translation"", the film is far more about two strangers who meet unexpectedly, find a common bond and go back to their lives enlightened for the momentous encounter. It also helps considerably that Morgan Freeman and Paz Vega are playing the characters. Finally freed of the wise sages and authority figures beyond reproach that have become his big-screen specialty, Freeman seems comparatively liberated as a somewhat self-indulgent movie star. His character is driven to a low-rent grocery store in Carson, where he will be able to research a role he is considering in an indie film.<br /><br />Out of work for a few years, he is embarrassed when he sees DVDs of his films in the bargain bin, but his ego is such that he does not lack the temerity to watch and even mimic the enervated store staff. Of particular fascination to him is Scarlet, an embittered worker from Spain and relegated to the express line where she is the unsung model of efficiency. She has an interview for a secretarial job at a construction company, but her deep-seeded insecurity seems to defeat her chances already. Still looking like Penelope Cruz's Amazonian sister, the beautiful Vega (one of the few redeemable aspects of James L. Brooks' execrable ""Spanglish"") brings a stinging edge and realistic vulnerability to Scarlet. She and Freeman interplay very well throughout the story, which includes stops not only at the grocery store but also at Target, Arby's and a full-service carwash. Nothing earth-shattering happens except to show how two people realize the resonating transience of chance encounters.<br /><br />Silberling keeps the proceedings simple, but the production also reflects expert craftsmanship in Phedon Papamichael's vibrant cinematography (he lensed Alexander Payne's ""Sideways"") and the infectious score by Brazilian composer Antonio Pinto (""City of God""). There are fast cameos by Bobby Cannavale (as Scarlet's soon-to-be-ex-husband) and as themselves, Danny DeVito and Rhea Perlman, as well as a funny bits with Jonah Hill (""Knocked Up"") as the clueless driver and Jim Parsons (the ""knight"" in ""Garden State"") as a worshipful receptionist. The 2007 DVD is overstuffed with extras, including a making-of documentary, ""15 Days or Less"", aimed at film students and running a marathon 103 minutes; six extended scenes; a light-hearted but insightful three-way conversation between Silberling, Freeman and Vega in the middle of Target; and a couple of snippets that specifically advertise the DVD.",1 +7752,"I went to this movie expecting an artsy scary film. What I got was scare after scare. It's a horror film at it's core. It's not dull like other horror films where a haunted house just has ghosts and gore. This film doesn't even show you the majority of the deaths it shows the fear of the characters. I think one of the best things about the concept where it's not just the house thats haunted its whoever goes into the house. They become haunted no matter where they are. Office buildings, police stations, hotel rooms... etc. After reading some of the external reviews I am really surprised that critics didn't like this film. I am going to see it again this week and am excited about it.<br /><br />I gave this film 10 stars because it did what a horror film should. It scared the s**t out of me.",1 +8614,"The music and Laurence Olivier's sombre delivery set the tone perfectly for this outstanding documentary. This is still a must see for WW II buffs, descendants of the participants of that conflict, politicians who think things always go their way when they extend their foreign policy via the deck of an aircraft carrier (did you hear that George Bush?) and anyone else curious or needing to know the whys whos and hows of some aspect of that conflict. The 26 episodes are roughly in chronological order but can be seen out of sequence since they are more or less self contained. There is bound to be new insight for the new viewer because of the sheer volume presented. Actual footage of the battles is interspersed with interviews of those involved in the stories. Many of the interviews are with second line authorities, that is, support personnel to the main characters, privates, captains, secretaries, eyewitnesses and the like. You get a real upfront taste of what war is all about.<br /><br />I am presently watching the DVD version of the original television documentary. I strongly recommend this over the worn out, gaptoothed, overpriced VHS offerings available on eBay. I paid $120 Cdn for five 2-sided DVD discs. This new release includes bonus material and is in full screen mode. The menus are easy to follow, there is first a choice of which episode you want to view and then after selecting that you are given the option of various chapters in the episode or to play the whole episode. It is understandable with such a comprehensive presentation there is a tiny amount more of navigation in the menu but the impact of what you will see is not diminished after 30 years, nay, after 60 years since the war finished.<br /><br />I remember watching the first broadcast on the Buffalo PBS station just before moving from London in 1975 and wishing right from that time that I could have a copy. Now my wish has finally come true.<br /><br />See this documentary. Tell your friends. Buy a copy for your library. Remember and honour the sacrifices and challenges overcome by those from America, Russia, Britain, Canada and all the other nations and peoples involved in the final victory. What an eye opener.",1 +6649,"I saw the new redubbed and edited version yesterday and loved it. Then I went home and watched it with subtitles and I loved it. I am ready to watch it again.<br /><br />I am a sucker for the mild mannered secret identity and what could be more mild mannered than a pacifist librarian? The scenes where he reveals his super powers to his friends or absent mindedly forgets to be meek are my favortites.<br /><br />Of course the martial arts are stunning. There is really not much I can say about them if you are familiar with the HK style. However, if you are not... we paused playback briefly and Walker, Texas Ranger was on. We noticed that after every strike there was a cut. Not in Black Mask.<br /><br />",1 +2227,"This film is a true and historical film. It is very useful to those researching the LDS church, because it is 100% true. It is an excellent film and I recommend it.<br /><br />It is very factual, exciting, and motivational. There are some who think it is not factual, but it is.<br /><br />It is about the restoration of the Church of Jesus Christ of Latter Day Saints, and about the prophet, Joseph Smith, who restored it. It has such events in his life as the disease that he had when he was a small boy, his courting Emma Smith, Emma, his wife, giving birth, and so on. But most importantly it reveals the restoration of the church.",1 +12060,well i wasn't sure what the film was going to be like as i had only seen a little clip but i was thinking its going to be good and i was right i watched it twice on the day i got it and well it is my favourite film.<br /><br />i think Alison Lohan played the part of beth really well she is such a grate actress and the writer must have gone into a lot of research to find out about bulimia although the ending when beth is in the hospital an has 2 Horus observation after meals because iv been told like 1 house is OK and also that hospitals doesn't help bulimics as iv been told which is probably why I'm still at home even tho my sister and mum would like to have me hospitalised as i to have bulimia but this is a grate film i recommend it to any one with or with out an eating disorder or for people who know some one with eating disorders as it can let them in to the lives of a bulimic person and see the world how they do a bit over all a grate film and i recommend it to any one and any type of person,1 +19122,"My brother is in love with this show, let's get this straight. I completely agree with the people who said it was copying off of Dexter's Lab and Fairly Odd Parents. <br /><br />I've never really liked fairly odd parents, I mean, some things did make me laugh, but most of the time it's downright annoying and not cute at all. This is almost the same way I feel about Johnny Test. Except, NOTHING makes me laugh on that show. The gags are so stupid and pointless, and to tell you the truth, maybe it's just me, but kids don't DRESS like that! Yes, I do think Johnny's hair is awesome, but c'Mon!<br /><br />And Dexter's Lab, that used to be one of my favorite shows and I still don't mind watching it. Which makes me disgusted and ashamed of Johnny Test making an absolute JOKE out of that wonderful show!<br /><br />One more thing. The. Dog. Is. So. Annoying. He is more loud and obnoxious than Johnny! And the gay accent? What the fudge! I hate the dog to death and I hope he dies, because that would be better for kids to see than listening and watching the obnoxious crap that goes on in that show, and picking up a gay accent.<br /><br />Unless you want you eyeballs to burn into miraculous flames and your brain fried from this show, don't watch it!",0 +9622,"I happened on ""Shower"" in the foreign film section of my local video store and passed it over several times since from its cover it looked like a farce or comedy. I then lucked into a copy to purchase at economical price and am happy for my luck. ""Shower"" is the story of three(3) men, a father and two(2) adult sons, each coming to terms with life changes as the world around them also continues to change in modern China. As with many ""foreign"" films, the Chinese culture itself is one of the most interesting facets of this movie.<br /><br />Beyond the fascinating characteristics of the local, Chinese color giving the setting to this story, is the difficult yet touching relationships between the men and a sole woman involved in the story, all set against the backdrop of a village bathhouse.<br /><br />The family's story moves from estrangement to understanding and made me glad I came to know these people. Added to the main story are the numerous small characters, bathhouse customers, and their individual conflicts and friendships. ""Shower"" is a film one walks away from smiling and touched by its warmth and humanity.",1 +12279,"For starters I have always been a fan of the Batman cartoons because the theme is so universal, 'that everyone alive has an alter-ego'. This is true in the Mystery of Batwoman. While the overall story is good I'm disappointed that they haven't really done much for the franchise with this.<br /><br />Throughout the movie, you are trying to find out who the identity of Batwoman is, unfortunately you can find out by easily looking at the cast of credits posted on this website (so if you haven't seen it already don't go there). I was sort of disappointed that they didn't make the movie longer. 75 minutes is way too short for any movie. The secret identity of batwoman also comes far too early in the movie, sort of midway, and becomes anti-climatic afterward because you know the good guys will always win and that the new character known as Batwoman will disappear after the movie is over.<br /><br />I'm also not too sure about the new animation style used in this movie. I love the sleek new characters but there should be some more detail where detail is called for. Some parts of the animation look so awkward and rigid that it grabs your attention right away diverting your attention away from the storyline. I also didn't really like the bright atmosphere used in most of the scenes, it sort of loses its dark and gothic feel which is Batman. Similarly we should've gotten to know more about batwoman's personality so that we can build the same deep compassionate feeling that we do with Bruce Wayne. Also I think the fight with Bane should have been done better. In typical children's fashion the bad guy meets his demise too easily either by tripping, falling, getting electricuted or doing something dumb that works against them. Come to think of it there wasn't even one drop of blood spilled in this movie either.<br /><br />Bottom line, its a good entertaining flick and I recommend anyone who's a Batman fan to watch it. It has good storyline, universal appeal and even great acting to top it off. I just wish that they could have delivered more permanent change to the story by making Batwoman stay to make things more interesting. Not just introduce her and then kick her off once she's done. I'd also like to see someone else figure out the mystery for a change finally. To have some other than Batman solve the mystery and fill him in later with the details.<br /><br />I hope there are more animated movies to come and look forward to the time when we will actually be able to see the breakup between Bruce Wayne and Barbra Gordan. He's been stringing her along forever and doesn't even like her and I can't believe that she was dumb enough to fall in love with someone 20 years older. I also want to see the time when Tim Drake leaves because he is getting sick of the old man. In short I want to see all of the things that led the characters to where they will be in Batman Beyond. Otherwise the same repeated formula will just end it faster than if they just decided to move on with the story.<br /><br />",1 +16447,"Hear are some of the interesting things our combat hero faith healer Pat, his son Gordon (T.V. ministry seems like a family business.) and Terry Meeuwsen (Won Miss America in 1973 by wearing a swimsuit and showing her legs. Oh my goodness gracious!) say when our poor viewers are sick and need help.<br /><br />1. Someone with an ""abscessed right tooth""has just now been healed.2. Someone with ""twisted intestines"" has been healed.3.Then Terry said there was a person with a ""strange condition"",(You mean God doesn't know?) a burning in the legs,who has just been healed.4. Then Gordon said there's a man(That narrows it down!) with swelling of the sinuses in his right cheek, with much pain behind the right eye,but he is now healed.5.Someone with a problematic right hip,limited mobility from a stroke, is now able to walk. 6. Terry said she saw someone with severe with severe stiffness in the neck bone, but didn't know the exact ailment(God doesn't know?)-that the person is now healed. 7. Someone paralyzed on the right side, particularly(Not exactly?!) the right side of the face has now been healed.8. A man (That narrows the world population down again.) with a plate in his skull is having a continual problems, and the doctors just don't know what to do. Terry said she saw the bone reforming around the plate(The funny bone?!)and the mans pain is gone,he was now healed.<br /><br />Hers how our war hero Pat helps our sick and poor people. 1. There's a woman in Kansas City (Missouri or Kansas but that narrows it way down.) who has a sinus the lord is drying it up now thank you Jesus. 2. There's a man with a financial need- I think a hundred thousand dollars.(I think their god needs to go to school or something!) That need is being met met right now,and within three days,the money will be supplied through the miraculous power of the holy spirit.Thank you Jesus. 3.There is a woman in Cincinnati with cancer of the lymph nodes. <br /><br />I don't know whether its been diagnosed yet (Ask your vengeful god Pat!) but you haven't been feeling well, and the lord is dissolving that cancer right now!(What?!)4. There is a lady in Saskatoon(I assume Canada.) in a wheelchair-curvature of the spine, The lord is straightening that our right now, and you can stand up and walk!(If you have this condition ignore Pat!) Just claim it and it's yours. Thank you Jesus! Amen, Amen!<br /><br />When Pat Robertson had prostate cancer did he go to Peter Popoff?, Oral Roberts?,Benny Hinn?,Terry or Gordon? No! On February 17,2003 Pat went to a REAL DOCTOR to have his surgery! (You mean he doesn't trust his faith healing friends, Terry or his own son Gordon?!)<br /><br />When LT Pat Robertson was in the Marines during the Korean war He was a liquor officer, responsible for keeping the officers supplied with liquor. He was known to drink himself and frequent prostitutes and he feared he contacted gonorrhea.(Should of asked a faith healer for help!)<br /><br />The reason Pat got out of combat was because his daddy Absalom Willis Robertson (D Va from 1946-66) was Chairman of the Senate Military Appropriations Committee.<br /><br />Terrorist Attacks, September 11, 2001 We have imagined ourselves invulnerable and been consumed by the pursuit of health, wealth,(Pats worth between 150 and 200 million dollars folks!) material pleasures(A mansion in Virginia beach Virginia with a helicopter launching pad!) and sexuality(He had had sex with his future wife before marriage which they had a son!). It (terrorism) is happening because god is lifting his protection from us.( Statement released on September 13, 2001.) Pat Robertson reminds me of Burgermeister on Santa Claus Is Coming To Town and his evil vengeful god reminds me of Venger on Dungeons And Dragons.<br /><br />Spoiled brat Gordon does what daddy Pat tells him to and Terry is a paid yes woman who neither have minds of their own!<br /><br />This will really grab you! The September 5 2005 edition of The 700 Club included a report Christian Broadcasting Network correspondent Gary Lane from outside New Orleans Convention Center which has housed mostly impoverished black disaster victims throughout the weekend.""A number of possessions left behind suggest the mindset of some of the evacuees""Lane said""they include this voodoo cup with the saying""May the curse be with you."" A shot of a plastic cup souvenir cup from one of the New Orleans countless trinket shops appeared on the screen. ""Also music CDs with the title Guerrilla Warfare and Thugs 'R' Us."" Lane stated, pointing out a pile or rap CDs strewn on the ground.( His bigoted daddy Absalom has taught Pat racism well!)<br /><br />If any of you good people ever think of donating to these sexist bigoted people please in the name of God don't! Sponsor a softball or basketball team,give to a food shelf, be a big brother or sister to a child but please don't give to these people because they have been around for over 40 years and solved nothing.<br /><br />If you still don't believe me type Pat Robertson overheard during commercial break on the web and hit search and once you hear what hes really like, I know for sure that you will not give one cent to these conning liars! And by the way Terry once had a divorce and Pat has talked against divorce many times on his shows.<br /><br />I like to say hello to the folks in Dover Pennsylvania, Orlando Florida, and to the nice folks who got hit by hurricane Katrina and I hope its a pleasant day. Has Operation Blessing been helpful to New Orleans?(I doubt it!) Please let our readers know! I do! By the way folks if your sick, go to a real doctor and lets everybody laugh at these liars and someday Burgermeister Pat,Gordon and Terry can go someplace else and take their angry god Venger with them!",0 +423,"The previous reviewer has said it exactly. I saw it once, was enchanted, saw it a second time when it was re-broadcast within a week or two of the first airing. I still remember some of the scenes. The setting is the opening of the 20th century, the war referred to in the title is World War I. One of the scenes was set in a women-only section of a public place, which was an interesting historical note. The moment when one of the women first touches the other is one of my all-time great movie moments. I don't think of this as a ""gay movie,"" it's an interesting and tender period love story, where the two principals happen to be women. I would love to see this movie again; I would buy this one if it ever came out on DVD.",1 +14337,"I know a few things that are worst. A few. It had a couple of funny scenes. It is a movie not appropriate for kids but, only a child would find this movie hilarious. This is definetly a movie that you would like to use a free rental coupon for. Don't waste your money just to laugh a couple of times.",0 +22163,"I watched this film version of R.D. Blackmore's classic novel as a substitute until the 2001 A&E version was released on video. And what a poor substitution it proved to be!!!!<br /><br />This version does not have the authentic, I-feel-like-I'm-there aspect of the A&E movie. The actors are, for the most part, wooden (with Sean Bean the exception) and the ""romance"" seems forced and contrived. In fact, there is no kissing until the end of the movie!!!! The triangle between John Ridd, Lorna Doone (or Lady Lorna Dugal, whichever you prefer)and the evil Carver Doone isn't mentioned or expanded upon. We don't get much insight into Carver here, or as to why he has some (if any) romantic feelings for Lorna. This movie cuts out many of the key and interesting characters of the novel, such as Counsellor Doone, and John's sharp-tongued youngest sister Lizzie which were crucial to the plot. The screenplay itself is lacking in conviction. The political intrigue also doesn't figure in the script. The way Lorna came into being with the Doones isn't true to the original story. Now, don't get me wrong, Clive Owen is a handsome and talented actor (watch Gosford Park and King Arthur for confirmation) but he comes across as bland and stoic throughout, and long hair (it may have been a bad wig) just doesn't suit him!!!! Polly Walker is a lovely and accomplished actress (see Enchanted April and Patriot Games, in which she also costarred with Sean Bean), but she appears colorless and lackluster. She has a cold sore on her lip that make-up can't hide, and the costumes don't seem authentic. The late Robert Stephens does a respectable turn as Sir Ensor Doone, although he only refers to Lorna as his favorite rather than his granddaughter, which she was reputed to be in the book. Also, it seems to me that Owen and Walker are too old for their roles (maybe it's the make-up) and the scenery is brown, cold, gray and barren, without so much of a hint of a sunny sky. I understand that it is set in Southwest England, but it is green there and they do get their sunshine!!! The portrayal of Tom Faggus' character and his ""death"", which doesn't happen in the novel, depresses the film even more. The one positive note is Sean Bean's performance as Carver. Although it doesn't even come close to matching Aidan Gillen's portrayal in the A&E movie, Bean does make one mean villain. In short, watch this only if you've got a few hours to kill, but don't expect anything exciting or for it to be true to the novel. See any other version ( but I highly recommend A&E's film) over this tired adaptation.",0 +19839,"I am sorry to say that this film is indeed bad. It reminds me of a c-grade porn movie with one major difference: no porn.<br /><br />The story and dialogue needs a complete overhaul. Maybe then the bad acting would not have been as noticeable. At the very least, the pacing should have been picked up.<br /><br />While I accept that this had a low budget and the director did a good job visually given what little resources he had, he should have spent more time on the story or better yet, get someone else to write it. Many of the action scenes were just pointless.<br /><br />It was a complete waste of my time.",0 +12456,"I was a bit scared to watch this movie due to its rates. But living in Italy titles like this never ever come across and I love step so much that I decided to give it try. And how surprised I was! The story is different from any other dance-movie I've seen lately, with a deeper meaning than just ""winning"". It's touching and well written and well directed. Raya is such a strong character, I love the fact that she never doubts herself, she's so mature and focused and AWARE of her TALENT (and what talent Rutina Wesley has, my jaw dropped in the final dance scene). The way she pursues her dream and refuses to let anything stop her is, honestly, inspiring. Also, the fact that she's not the typical super-hot chick (see Jessica Alba, Briana Evigan, Jenna Dewan, Zoe Seldana...) makes her really appealing and real. Seriously, why is this movie rated so low? You can understand between the first 5 minutes that it's a good work. Really good actually. I even cried at the end of the movie. And the dancing routines are just sick.",1 +10277,"Although I didn't like Stanley & Iris tremendously as a film, I did admire the acting. Jane Fonda and Robert De Niro are great in this movie. I haven't always been a fan of Fonda's work but here she is delicate and strong at the same time. De Niro has the ability to make every role he portrays into acting gold. He gives a great performance in this film and there is a great scene where he has to take his father to a home for elderly people because he can't care for him anymore that will break your heart. I wouldn't really recommend this film as a great cinematic entertainment, but I will say you won't see much bette acting anywhere.",1 +23085,"The story goes something like this: A small-town girl, Katie (Jessica Simpson), decides to visit her boyfriend in the big city. When she arrives she discovers he isn't quite as faithful as he should be. Katie then ends up venturing into the adventure that is New York. Filling in as bike messenger comedic and charming mishaps ensues. She falls into a hole in the ground and thus meets charismatic good-guy Ben (Luke Wilson). It's not love at first sight, at least for her, but destiny and Ben, won't give up quite that easy. Being ""just"" a small-town girl AND blonde a couple of evil executives at a building firm decides she's the perfect scapegoat for their cunning plan. Misunderstandings with hilarious and sad consequences follow. However, this is one blonde who won't take it lying down!<br /><br />People being judgmental of this film will soon enough be proved wrong. The jokes are confident and fitting, and the story well developed. The relationship between Katie and Ben feels so natural that it puts anything Godard has created to shame. The multi-talented Jessica Simpson once again surprises with a strong role only she could pull off. Simpson really is the Marilyn Monroe of our day (there's even one scene honoring her!). She balances perfectly between vulnerable and whimsy. Katie really does show us that you can't judge a book by its cover! Luke Wilson is as charming as ever. Even if he was covered in manure that man would be as appealing as anyone. His light touch, puppy dog eyes and laid back manner makes it difficult to resist. Andy Dick plays the role he was born to play, one of the two diabolical executives. He really cannot be underestimated. The strength of the performance lies in his restraint. It's remarkable, because most actors would just run away with it and play it for cheap laughs. Not this guy! <br /><br />In conclusion, director Scott Marshall has crafted an intelligent and frequently hilarious comedy that is destined to become a classic alongside masterpieces of cinema like Epic Movie and Norbit. Kudos to everyone involved in this, especially Jessica Simpson. Her sincere smile and whole-hearted laughter would make even the toughest man break out in a big grin. You may be tough, but you're not THAT tough! Warmly recommended to everyone who wants to be swept off their feet and see a romantic comedy that for once, feels honest. Thank you for this film! Oh, and the soundtrack rocks! <br /><br />Now if you still haven't gotten it. I'm being sarcastic. 1/10",0 +1805,"-A very pretty red headed woman waiting for her plane meets a charming young man that she connects with. As the two get on their flight and sit next to each other the young man Jack becomes deadly as he threatens Lisa to either change the room that a politician and his wife will be staying in, or else have her father die. See now that's what you happens when you fly coach, stuff like that never happens in first class.<br /><br />-Other than having a conflict that takes place on a flight, the other thing that this movie shares with ""Flightplan"" is the sheer unbelievability *if that's a word* of the story. The point of the whole is to get the main character to change a politician's room so he can be assassinated which is a pretty plausible plan, but won't it have being easier for Jack to just find someone that was computer savvy and have them hack into the hotel's system? Teenagers today can damn near do anything with computers, so I'm pretty sure it would have been easier for him to simply get someone to change it using a computer instead of going through the trouble of spying on Lisa and getting her into the predicament that she lands on in the movie.<br /><br />-Plus one thing that struck me as odd was how no one on the plan heard a single thing they were talking about. This is a very small plane were talking about here and since their voices were raised occasionally it seems to me like the other passengers should have heard something. But I'm 100% sure that I'm reading way too much into it. The movie is meant to be as realistic as an episode of ""24"" so one can't be perplexed by such complexities. For all my complaints though, this is still a very fun movie that gets the job done. It's not exactly the type that requires to shut of your brain, but at the same time it doesn't require great intelligence to fully enjoy.<br /><br />-I'd love to sit here in my comfy chair and rave about the brilliant acting in the movie but really I can't. I love Rachel McAdams, I love Cillian Murphy, and I like Brian Cox, but they don't really stretch their acting muscles here. It's not really much of a problem since this isn't the movie that studios hope to win multiple awards and the acting isn't the least bit horrible, just not great. Wes Craven isn't exactly the first that comes to mind when you think of a movie like this, but he does a very nice job considering the time they had to film the movie and the lack of depth to the script. It was definitely a huge improvement over the disappointing ""Cursed"" and as much as I liked him doing something different with this movie, I still would love for him to go back to doing what he did in the past which is great horror movies that is talked about decades after it's release.<br /><br />-One nice thing about the movie which I really appreciated was just how short the movie was. It is great to sit and watch a nice three hour or so movie once in a while, but nowadays it's like every movie that comes out feels too long, where as this movie just felt like the right length. Not too long, and too short. They don't waste time by trying to develop the characters too much because they know this isn't the movie for that and by doing so they made a very nice short movie. Being a huge film music geek, I have to say that the best part of the movie is the ultra cool score by Marco Beltrami. It's really nice to see Beltrami go from writing the predictable stuff to the great music he's doing now. I really the cool techno/orchestral stuff he does for the main titles. Too bad that I can't find the soundtrack anywhere, would have really loved to listen to the titles anytime I wanted instead of having to pop in the DVD when I want to hear it.<br /><br />-Overall It's nice for what it is and whiles it's far from great cinema, should still provide for some small entertaining hour and a half",1 +2790,"I really liked this film. All three stars(Connery,Fishburne and Underwood) give credible performances;and Harris is enjoyably over the top. The lighting and shot angles in some of Harris' scenes make his face look truly diabolical. The surprising turn of plot at the end makes it interesting. Not a great movie, but an enjoyable one. I gave it 7 of 10.",1 +24427,"Hellborn starts as a young psychiatric doctor named James Bishop (Matt Stasi) takes up his residency at St. Andrews insane asylum, or 'mental illness facility' as they like to call it there. With nearly 600 patients Bishop meets his boss Dr. McCort (Bruce Payne) & is put to work, he gets ward 'A' where some seriously deranged & dangerous patients are held. If that wasn't bad enough during his first round of visits Bishop finds a dead body & has threatening sounding graffiti messages sprayed over his room. Bishop starts to hear stories from the patients about sinister goings-on at the asylum & soon finds out for himself the stories have more than a hint of truth about them...<br /><br />Known as Asylum of the Damned in the US this supernatural horror film was directed by Philip J. Jones & I sort of liked it but in the end there were too many unsatisfying elements for me to totally enjoy it. The script by Matt McCombs takes itself pretty seriously & I quite liked the basic idea behind & some of it's ideas but there are a few things which work against it. For a start the film is just too slow, the story is pretty good & doesn't give itself away too early but it takes an absolute age for it to get going & I was rapidly losing interest with each passing minute. I also thought the so-called twist ending was far too predictable & the ending itself far too bland & forgettable. It's a shame because I liked the story, the character's, the setting & some of the ideas but it's simply too slow & frankly dull to keep one entertained over it's 90 minute duration. It's one of those films which I would like to recommend but in all honesty I can't.<br /><br />Director Jones does a good job, this is actually a well lit & quite atmospheric film. I wouldn't say there's anything scary here. I'm not sure if Hellborn was shot in a real insane asylum but if it wasn't they did a great job on the sets & the film looks pretty good overall. Unfortunately there is a real lack of gore or action, there are two hand-print shaped wounds & a severed tongue & that's it, absolutely nothing else in terms of blood or gore which has to go down as a disappointment. Depending on who you believe & which review you read the special effects are either the worst ever or very good, well as a devoted watcher of low budget horror I was very impressed with the effects especially the demon thing which looks mightily impressive & is a man in a suit type effect rather than a terrible CGI computer graphic although it's an impressive suit. It all depends on your expectations I suppose.<br /><br />Technically the film is good, it looks nice enough & the lack of CGI computer effects is something I welcome. The acting isn't great though, it certainly could have been better.<br /><br />Hellborn is a film that disappointed me, there were some good stuff about it but at the same time some terrible stuff which unfortunately outweighs the good. I sort of liked parts of it but as a whole 90 minute viewing experience I'd find it totally impossible to recommend to anyone.",0 +17716,"When the young Kevin gets the boat of his dead uncle as a gift, he invites five friends of him to a trip to Catalina Island for the weekend. While in the journey, they drink booze, have sex and play games, with each one of them telling his or her greatest fear. Later Kevin drowns in the open sea, the engine stops, and they are haunted and murdered by their greatest innermost fear.<br /><br />Yesterday, my wife, son, daughter and three other friends joined to watch ""Haunted Boat"" on DVD. With less than 30 minutes running time, the group gave up watching this messy and boring amateurish piece of crap, and we decided to see another film. Later, I decided to watch the rest of this flick to see how bad it could be and it would have been better off going to bed to sleep. The confused story has an awful cinematography and camera work, with a cast that is probably studying to be actors and actresses and in the end this film seems to be a bad project of cinema school. The terrible and pretentious screenplay shows a ridiculous twist in the end, actually a complete mess that made me not understand what the story is all about. Was the girl insane and traveled alone in the boat, imagining the whole situation with imaginary friends? If that is true, are their friend again in the very end fruit of her madness? My vote is one.<br /><br />Title (Brazil): ""Viagem Para a Morte"" (""Trip to the Death"")",0 +4972,"When I rented this movie to watch it, I knew that it was not going to be a mindbender movie. Instead I thought of it as a disbelief of reality where someone is going to get a serious beating. And you know what it worked. Kurt Russel did what I though was a remarkable role in showing the emotionless soldier that he was. I recommend this movie if your out with the boys and want to watch a good action film.",1 +7613,"Roman Polanski plays Trelkovsky who rents an apartment in France.The previous tenant is in a hospital after a suicide attempt.He goes to see her there where he also meets Stella (Isabelle Adjani), the friend of Simone.He and Stella become pretty close.Later Simone dies.Trelkovsky begins to think the landlord and the neighbors are trying to change him into Simone so that eventually he would also jump out of the window.Le Locataire (The Tenant) from 1976 is the last film of Polanski's apartment trilogy.The previous ones were Repulsion and Rosemary's Baby.Roman Polanski does not do good job only as the director but his acting is also superb.Isabelle Adjani with her big glasses is wonderful.The landlord, Monsieur Zy is played by the great Melvyn Douglas.Jo Van Fleet plays Madame Dioz.The fantastic Shelley Winters is The Concierge.The Tenant is something very scary from time to time.It gives a lot of that psychological scare.This film is not the easiest one to understand or explain but that makes it all so fascinating.",1 +17238,"I recently viewed Manufactured Landscapes at the Seattle International Film Festival. I was drawn to the movie as a photographer because I'm both familiar and a fan of Burtynsky's work. While I believe the movie does a good job getting it's message across, I couldn't help but feel that it was made as a complete afterthought to the photographs and subsequent popular book by Burtynsky. Obviously one reason for this is the extensive use of still photographs featuring zooms and pans across them. While this is a good effect when used economically, I felt like 75% of the movie was just stills from Burtynsky's book (which I already own). That's probably an exaggeration, but that's how I felt. If you own the book or are familiar with his work you might be better off skipping this one.",0 +13570,"I was unlucky enough to have seen this at the Sidewalk Film Festival. Sidewalk as a whole was a disappointment and this movie was the final nail in the coffin. Being a devout fan of Lewis Carroll's 'Alice' books I was very excited about this movie's premier, which only made it that much more uncomfortable to watch. Normally I'm enthusiastic about modern re-tellings if they are treated well. Usually it's interesting to see the parallels between the past and present within a familiar story. Unfortunately this movie was less of a modern retelling and more of a pop culture perversion. The adaptation of the original's characters seemed juvenile and usually proved to be horribly annoying. It probably didn't help that the actors weren't very good either. Most performances were ridiculously over the top, which I assume was either due to bad direction or an effort to make up for a bad script. I did not laugh once through out the duration of the film. All of the jokes were outdated references to not so current events that are sure to lose their poignancy as time goes by. Really, the only highlight of the film was the opening sequence in which the white rabbit is on his way to meet Alice, but even then the score was a poor imitation of Danny Elfman's work. Also, I'd have to say that the conversion of the croquet game into a rave dance-off was awful. It was with out a doubt the low point of the film.<br /><br />What a joke. Don't see this movie. After its conclusion I was genuinely angry.",0 +7946,"As a Westerner watching another culture's view and tradition of marriag, I found Just Married mesmerizing and delightful. The idea of marrying a stranger through the mutual arrangement of parents is difficult, especially in this modern age. Yet this is the case in this Hindi film. Told with humor, and fresh perspective, we learn of Abhay and Ritika who have only met once and are now on their traditional five day honeymoon. As said, it is difficult to believe in this cell phone affluent age that such an archaic custom as an arranged marriage still take place. We see the awkwardness that this young couple feels as they come together on their first night, and how they try to forge a bond, even though they do not know one another. We see different views of marriage and commitment as presented by the other couples also on holiday, from a couple of forty years married to others still unsure of making marital commitment. There's song, witty dialog, poignant moments, blending and comparison of new ways and tradition. Watching the movie with subtitles definitely loses some of the trueness of the story, yet it is still a delight to watch. Granted some of the plot is a little trite and the bus incident a bit drawn out and contrived; however the overall movie was worth watching.",1 +5100,"""Fever Pitch"" is a sweet and charming addition to the small genre of sports romances as date movies or movies a son could be willing to go to with his mother (though the guys in the audience got noticeably restless during the romantic scenes).<br /><br />I have lived through a milder version of such a story, as my first exposure to baseball was dating my husband the spring after the Mets first World Series win and then I watched the Mets clinch their next one because I was the one still up in the wee hours with our two little sons, who have grown up to teach me more about baseball through our local neighborhood National League team's other heartbreaking failures to win it again (and it was me who took our older son to his only Fenway Park game as I caught a bit of Red Sox fever as a graduate student in Boston).<br /><br />So compared to reality, the script believably creates two people with actual jobs. It is particularly impressive that Drew Barrymore's character is a substantive workaholic who has anti-Barbie skills, though she pretty much only visits with her three bland girlfriends during gym workouts that allow for much jiggling and the minor side stories with her parents don't completely work.<br /><br />It is even set up credibly how she meets Jimmy Fallon's math teacher and how she falls for his ""winter guy"" -- though it's surprising that his Red Sox paraphernalia filled apartment didn't tip her off to his Jekyll-and-Hyde ""summer guy."" Their relationship crisis during the baseball season is also played out in a refreshingly grown-up way, from efforts at compromise to her frank challenges to him, centered around that they are both facing thirty and single. Fallon surprisingly rises to his character's gradual emotional maturity.<br /><br />While the ending borrows heavily from O. Henry, the script writers did a yeoman job of quickly incorporating the Sox's incredible 2004 season into a revised story line (with lots of cooperation from the Red Sox organization for filming at the stadium).<br /><br />The script goes out of its way to explain why Fallon doesn't have a Boston accent, as an immigrant from New Jersey, but that doesn't explain why his motley friends don't. The most authentic sounding Boston sounds come from most of his ""summer family"" of other season ticket holders, who kindly kibitz the basics of Sox lore to neophyte Barrymore (and any such audience members).<br /><br />The song selection includes many Red Sox fans' favorites, from the opening notes of the classic ""Dirty Water,"" though most are held to be heard over the closing credits as if you are listening to local radio and are worth sitting through to hear.",1 +23948,"If you hate redneck accents, you'll hate this movie. And to make it worse, you see Patrick Swayze, a has been trying to be a redneck. I really can't stand redneck accents. I like Billy Bob Thornton, he was good in Slingblade, but he was annoying in this movie. And what kind of name is Lonnie Earl? How much more hickish can this movie get? The storyline was stupid. I'm usually not this judgemental of movies, but I couldn't stand this movie. If you want a good Billy Bob Thornton movie, go see Slingblade.<br /><br />My mom found this movie for $5.95 at Wal Mart...figures...I think I'll wrap it up and give it to my Grandma for Christmas. It could just be that I can't stand redneck accents usually, or that I can't stand Patrick Swayze. Maybe if Patrick Swayze wasn't in it. I didn't laugh once in the movie. I laugh at anything stupid usually. If they had shown someones fingers getting smashed, I might have laughed. people's fingers getting smashed by accident always makes me laugh.",0 +21182,"This movie is chilling reminder of Bollywood being just a parasite of Hollywood. Bollywood also tends to feed on past blockbusters for furthering its industry.<br /><br />Vidhu Vinod Chopra made this movie with the reasoning that a cocktail mix of ""Deewar"" and ""On the Waterfront"" will bring home an Oscar. It turned out to be rookie mistake.<br /><br />Even the idea of the title is inspired from the Elia Kazan classic. In the original, Brando is shown as raising doves as symbolism of peace.<br /><br />Bollywood must move out of Hollywood's shadow if it needs to be taken seriously.",0 +733,"I found this movie to be suspenseful almost from the get-go. When Miss Stanwyck starts her narration it's only a few minutes until you realize that trouble is coming. The deserted area, the lock on the deserted gas station door, everything sets you up to wait for it...here it comes. At first you think it will be about the little boy, but all too soon you start holding your breath watching the tide coming in. I found this movie to be really stressful, even though I had watched it before and was prepared for the denouement. Now a movie that can keep you in suspense even when you have seen it before deserves some sort of special rating, maybe a white knuckles award?",1 +18404,"This movie is extremely boring, it tells a story of a female gas station owner and her life. Nothing exciting ever happens. The director has really ""kept it real"" and it feels just like a camera following a woman around as she lives her life. I had to watch other films by this director for a class, the others were not as boring. This film was also watched for an assignment...it better be worth the boringness with a good grade!! Overall, unless it's required, don't watch the film. But don't discount other films by this director, because they're not as bad...and don't discount other films about Africa, they're usually good, especially when done by a western director.",0 +3848,"Wow this was a movie was completely captivating I could not believe that I started awake so late to watch it but it came on late ounce I started watching I couldn't stop it had a full range of very good cast members wow even Eartha Kitt and Ruby Dee Forrest Whittaker and James Earl Jones and many more well known actors and actresses this was more than a glimpse into history it was eye opening into another part of society that people don't know of and may even be embarrassed to talk about . I've never heard of a book or movie about this before and this is something that black history never addresses only looks down on because they were privleged and mixed race , I highly recommend this movie",1 +22714,"<br /><br />Dull Demi, going thru the motions. Ditto Prochnow. Ominous portents that elicit yawns. Michael Biehn trying to be dynamic, which ain't his shtick.<br /><br />To quote Buffy Summers, ""If the apocalypse comes...beep me.""<br /><br />Going back to sleep now.",0 +9888,"Wow, I loved this film. It may not have had the funding and advertising that the latest hollywood blockbusters get but it packs twice the emotional punch. The tale revolves around this one family from Utah and it's the connections between the people in the family that provide the film with its punch. The main lead (Giovanni Ribisi) plays his part very well, at no time does he leave you to believe that he's acting all his feelings. It's his brother (Elias Koteas) who stole the show for me though. When the two were in scenes together they bounded their lines off of each other, giving fantastic performances. Great cast, great film.",1 +4405,"Q.E.D. was a brilliant TV series and it truly was one of the very few worth scheduling for! I suspect that in this era of TIVO and recording devices that it would fare much better than it did in 1982. I am eagerly awaiting its availability on DVD!<br /><br />While it is true that it has some in common with other television shows like The Wild, Wild West, The Bearcats and The Adventures of Brisco County, Jr., all of which I am a huge fan of,Q.E.D. had a much more intellectual quality to it. It did not suffer for that, however - the dialog was witty and the action was high. The show ran in the UK as Mastermind, and it did have something of the BBC feel to it, but with better production values than BBC typically had in that era.<br /><br />I was a nineteen year old lad when this series ran initially, and had much too much to do in my life to make time for television. I remember my dear mother, however, calling me to remind me that Q.E.D. was on, and we would sit on the phone and watch it together. Wonderful memories.<br /><br />Truly, Q.E.D. is a sad loss and, if it could be done with the same quality and values today, I would love to see it make a return.",1 +22683,"Where to begin? How about with the erroneous synopsis: <br /><br />""X-Men Origins: Wolverine tells the story of Wolverine's epically violent and romantic past, his complex relationship with Victor Creed, and the ominous Weapon X program.""<br /><br />His epically violent past turns out to exceptionally non-violent.<br /><br />His relationship with Creed is so glossed over it's difficult to understand how they have any connection at all. We are thrown from one point in the opening scene that shows them as children on the run, to a montage of war scenes that they have fought in throughout their long lifespan, and finally to the present where they are a part of a hardcore government team of assassins.<br /><br />There is nothing by way of showing their relationship as brothers at all. Nothing complex is laid down for us to believe is authentic or even loving. <br /><br />The romantic element of the movie between Silverfox and Wolverine was forced and abrupt. We are thrown into a romance so fast that it's over before you can blink an eye. Having just introduced the character, Silverfox is killed off roughly fifteen minutes later. We are left wondering why we should care about this. Who was she anyway?<br /><br />For a pivotal element of this weak revenge driven story, the romance is surprisingly unexplored. It was rushed in simply because it was required.<br /><br />Oddly enough, when Wolverine finds that his love is dead he leaves her in the woods to rot as he goes off to find Sabertooth. Being the romantic that he is this was out of character for him yet necessary to serve the plot in pulling off a very predictable surprise.<br /><br />As for the weapon X program, lets just say that after the painfully crippling procedure Wolverine is up and running. Eventually he arrives at the home of a conveniently old yet overwhelmingly loving couple. Surprisingly Ma and Pa Kent aren't alarmed when finding a naked sweaty man in their barn. Is it any wonder what fate awaits them?<br /><br />In the previous films and the comic books, the main reason that Wolverines' amnesia plagued him partly hinged on the fact that he was said to have been viciously evil and coldblooded.<br /><br />Knowing this was the case...did he really want to remember such horrors or keep them hidden and continue his current more positive lifestyle of fighting against the villains of the world alongside his team mates?<br /><br />As hinted to in X2: X-men United when Stryker gives up some of his secrets it is said that Wolverine would be disturbed if he had known of the evil works they committed together. This film sets up the team fairly well only they don't really do much of anything. No disturbing violence, no ruthless actions, they merely harass a few natives in foreign lands for the ten or fifteen minutes they are on screen. <br /><br />It seems that Wolverine wasn't an evil man under Stryker at all. Instead he was constantly trying to put a leash on his brother Sabertooth which consequently WAS the violent agent we all thought Wolverine was. Eventually he just leaves all together.<br /><br />No conflict of duality here at all.<br /><br />Idiotically REMOVING that character conflict of good and evil DULLED the story immensely. They may as well have given him rubber claws.<br /><br />There were a ton of other errors in this film that contradicted the X-Men trilogy, including the introduction of one of the lamest Deus Ex Machinas to ever hit a script.<br /><br />Magic memory-erasing bullets. <br /><br />Really?<br /><br />Apparently they are the only thing to bring down Wolverine. Yet this was apparently forgotten when agent after agent was sent to bring him down with bullets and bombs that would surely not work on him at all.<br /><br />Another problem with this film is that it tried to focus on Wolverine while throwing in a ton of other mutants which did little to nothing at all. Interesting characters were mere window dressing and did nothing for the story. Most were in the film for 5-10 minutes max and yet you find yourself wishing we saw more of them and less of Wolverine.<br /><br />Fred Dukes (the Blob but not the comic version) can punch a launched tank missile with little to no physical damage to him at all, but a simple headbutt from Wolverines metal noggin is enough to daze him?<br /><br />Cyclops optic beams (which instead of being concussive force are now more akin to lasers) can burn through buildings but when fired at Sabertooth directly it simply smashes him into the ground without even damaging his clothes. Adamantium trench coats anyone?<br /><br />The (gravity defying) mutant Gambit, instead of utilizing his signature cards, is made into some sort of crazy acrobat. In one poorly edited scene he is knocked unconscious by Wolverine...then amazingly enough a few minutes later he is on a rooftop running TOWARDS Wolverine. How he regained consciousness, ran away a few blocks, climbed up a building, then ran back to Wolverine and Sabertooth in the middle of a scratching match is a mystery yet to be explained.<br /><br />Some have excused this films weakness by claiming it was made from a comic and therefore should be weak on character and heavy on flash. The idea that this movie being a comic film is flimsy and superficial because of that fact is incorrect.<br /><br />The comic book source material, the REAL origin of Wolverine...is a story worth bringing to the screen. It doesn't sugar coat his past nor treat the reader like mindless CGI junkies. It is a well crafted story and although retold and readjusted over time, began with WEAPON X by Barry Windsor-Smith. A much more intense and exciting story.<br /><br />This FOX film should seriously be forgotten. <br /><br />Anyone have that magic gun?<br /><br />4/10",0 +3352,"I haven't laughed this hard at a movie in a long time. I got to go to an advance screening, and was thrilled because I had been dying to see it. I had tears in my eyes from laughter throughout a lot of the movie. The audience all shared my laughter, and was clapping and yelling throughout most of the movie.<br /><br />Kudos to Steve Carrell(who I had already been a fan of). He proves in this movie his tremendous talent for comedy. He has a style that I haven't seen before. And Catherine Keener is excellent as always. Thank God there wasn't a cameo from Will Ferrell(love him, but saw him too much this summer).<br /><br />There were parts of comedic genius in this movie. Partly thanks to Carrell, and partly thanks to the writing(also Carrell). The waxing scene and the speed dater with the ""obvious problem"" were absolutely hysterical.<br /><br />I will definitely go see '40 Year Old Virgin' when it's released. My advice: go to see it for huge laughs and an incredibly enjoyable movie on top of it.",1 +15191,"I rented this film to see what might be a bloody, non stop action movie and got this overly sentimental and super cheap low budget action-drama that makes Kickboxer look like Die Hard. Lou and Reb are in Vietnam and as Lou saves Reb from the gooks, he gets shot in the head in what is easily one of the worst effects ever. The Vietnam scenes are shot in someones backyard, I swear! Lou is now brain damaged and Reb and him live together and own a bar. Super homoerotic. Lou is convinced to fight in a cage for money and Reb goes on a killing spree to get him back. There is no good fight scenes at all, the punches are two inches away from a person. Characters personalities change in matter of seconds. One guy is a bad and in the next scene he's good. The acting is horrid and the music is some overly sentimental Frank Stallone sounding song that would make you sick. I hated this film.",0 +15694,"When I was in school I made a film about a couple roaming around in the trees and talking, and I realized halfway through editing that this was not just a failing aesthetic strategy but a cliché of Canadian cinema: sodden lyricism married to vacant, metaphor-burdened stabs at social commentary. But whatever my own film's failings I feel much better after seeing this...this...thing. For one thing, mine ran 20 minutes, not 85, and had more content at that: every pointless bit of business here is fawned over for four, five, six relentless minutes. The male lead is just incredible, a brow-beating, loudmouthed creep given to outbursts of drama-class improv in between philosophical insights culled from the U of T pub, and he is given lots and lots of space to make us hate him. Admittedly if he weren't such an a**hole then the third act would make even less sense, as a couple snarky dudes show up to provide distant and thoroughly unhelpful echoes of 'exploitation' values; but it doesn't make it any easier to watch the caged creep whimper ""please"" in closeup until the magazine runs out. I take back what I said about AUTUMN BORN, which at least had the courage of its own misbegotten lechery: this cinematic crater is and will remain the very worst Canadian movie of all time. At least, I really really hope so.",0 +19946,"As far as films go, this is likable enough. Entertaining characters, good dialogue, interesting enough story. I would have really quite liked it had I not been irritated immensely whilst watching at the utter disrespect it shows the city it is set in.<br /><br />Glasgow. In Scotland. Yet every character is English (save for Sean's girlfriend, who is Dutch). Scottish accents are heard only fleetingly in menial jobs & roles. As a Scottish woman (& as a viewer who likes her ""real life"" films to be a bit more like real life) I really don't think it would have hurt to use any one of the countless talented Scottish actors...or at least got English ones who could toss together a decent accent! The futile attempt at using the word ""wee"" a few times did nothing but to further the insult.",0 +14354,"Having seen Versus previously I had high hopes for Alive. The description of the movie on the back of the DVD jacket sounded promising. Alive did not deliver. VERY slow development. Loads of potential with the cast and the cool visuals. The premise was intriguing but the payoff did not offset the build up. Could have done so much more at the end. Most of the movie is just "" sitting around "". To put it plainly, three of us were amped to sit down and watch this movie and by the 50 minute mark we were struggling to make it thru to the end. It really needed more shock elements. If you are looking for Ichi the Killer or Versus type fights then save yourself some $ and loads of disappointment.",0 +21742,"When the movie was released it was the biggest hit and it soon became the Blockbuster. But honestly the movie is a ridiculous watch with a plot which glorifies a loser. The movie has a Tag-line - ""Preeti Madhura, Tyaga Amara"" which means Love's Sweet but Sacrifice is Immortal. In the movie the hero of the movie (Ganesh) sacrifices his love for the leading lady (Pooja Gandhi) even though the two loved each other! His justification is the meaning of the tag-line. This movie influenced so many young broken hearts that they found this ""Loser-like Sacrificial"" attitude very thoughtful and hence became the cult movie it is, when they could have moved on with their lives. Ganesh's acting in the movie is Amateurish, Crass and Childishly stupid. He actually looks funny in a song, (Onde Ondu Sari... )when he's supposed to look all stylish and cool. His looks don't help the leading role either. His hair style is badly done in most part of the movie. POOJA GANDHI CANT ACT. Her costumes are horrendous in the movie and very inconsistent. <br /><br />The good part about the movie is the excellent cinematography and brilliant music by Mano Murthy which are actually the true saving graces of the movie. Also the lyrics by Jayant Kaikini are very well penned. The Director Yograj Bhat has to be lauded picturization the songs in a tasteful manner. <br /><br />Anyway all-in-all except for the songs, the movie is a very ordinary one!!!!!!",0 +18353,"This film is too skeletal. It's a fairly low-budget film (I hope!) which excuses it somewhat, but the lack of a decent cast and a fleshed out plot hurts it too much. Phillips is quite believable in his role as a torn-apart son of a well-off family who's searching for himself (though his family is...er...well, a little too white...), but the rest of the cast is grasping at straws. Every moment that has potential is ruined by excessive melodrama, and there are *way* too many sub-plots (which is an obvious sign of plot-deficiency. They needed filler...) I wouldn't recommend this film to anyone who isn't either a hard-core Phillips fan, or who has absolutely *nothing* to do. 4/10.",0 +17580,"Unfortunately for me, the first Busby Berkeley movie I ever watched was ""42nd Street."" I then expected all of his stuff to be that good. I found out that wasn't necessarily the case, even here, with my all-time favorite classic-era actor James Cagney.<br /><br />Oh, the musical numbers at the end are as spectacular as always, but the story is like many of the others and quite tiresome. They seem to always involve screaming, unhappy show producers. In this film, it's Cagney who winds up shouting things out so often that he gives me a headache after awhile and his character wears thin....fast!<br /><br />Even the songs in here are anywhere near ""42nd Street"" class, songs you could hum for years and years - decades, I should say. The songs in this movie are not memorable. No, this is one of the few early Cagney films - and Berkeley films - I totally dislike and was very disappointed with while watching.",0 +22488,"This film actually manages to be mindless enjoyment for 2/3 of the journey. Sadly, the film ends up being too 'confused.' While I know some of the plot contrivances are standard of 'buddy cop' films I got drawn in to the characters who foil each other brilliantly but in the end the film relies too much on chase sequences as a crutch and I lost interest.<br /><br />The filmmakers did a great job of getting the characters alone and doing their own thing and we got to see who they are and identified with both cops early on. We formed our own opinion instead of being force fed a view of them through constant bickering.<br /><br />In the end there is too much going on and it detracts greatly from what could've been an enjoyable piece of escapism. Here's what's concerning Joe Gavilan (Harrison Ford) at the end of the film:<br /><br />1. His real estate deals 2. His affair with a radio psychic 3. He's being investigated by internal affairs 4. The homicide investigation<br /><br />If you add in Casey's concerns you fond out he wants to be an actor and avenge his father's death. Now some of these things do come together and even come together well but all the plot elements come together amidst this bogus chase that is so long and pathetic that I hardly have time to break my ennui and give a crap about what just happen. The impressive screenwriting acrobatics cannot overcome the bad filmmaking.<br /><br />As if a ridiculous chase sequence wasn't bad enough, one which has four separate sections and could last close to half an hour, wasn't bad enough, Joe Gavilan fields calls about his real estate deal while chasing the perpetrator with a gun. All these extra-curricular plot lines and jokes make it absolutely meaningless to me whether or not the criminal gets caught. We already forgot or no longer care about the murder plot at this point because multiple plot-lines and eye candy of the chases have numbed us beyond all comprehension.<br /><br />While I could go on about the chases and how they ruin a decent story, I won't. This could've been a very enjoyable formula film but it got much too big for its britches and it turned into a redundant waste of time. Harrison Ford and Josh Hartnett actually did rather well and a small appearance by Gladys Knight is worth noting. Sadly none of the actors can help this hopelessly misguided film from being forgettable.<br /><br />While this will probably be better than the likes of ""The Hulk"" and ""Lara Croft II"" that still doesn't make this film good. I once heard that Harrison Ford claimed to only make films that eh thought would make money, I'm not sure if that's true or not. What is true is that to get great box office you don't need a great movie or a great actor, this film has neither in its lead roles. My advice to Harrison Ford would be: to stick to Indiana Jones because at least you can still run.",0 +14092,"The first half of this movie is a pure delight. Novel. Funny. Wonderful performances. A close knit brother and sister living in Manhattan fall for the same woman! Adult. Bright. Witty. What more could you ask. As a romantic comedy this starts refreshing. It heads into unexplored territory. And then it falls apart.<br /><br />It goes from being a universal adult comedy to a coming-of-age coming-out-of-the-closet story that has been done many times before. What a disappointment. As a people film it begins with such promise. Why does it need to turn into such a pedestrian ""I am who I am"" film. The freeze-frame ending shot of Heather Graham's jumping in the air to celebrate ""her happiness at finding herself"" underlines the banality of the last part of the film.<br /><br />It could have been different. It could have been magical. It ended up being the same old same old.",0 +20523,"What a disappointment! Piper Perabo is adorable, Tyra Banks is beautiful but pitiful as an actor and the talented and beautiful Maria Bello is wasted! Bello must have been embarrassed by some of the lines! The plot, script and premise is a joke!<br /><br />I'm not against silly movies, I think that Something About Mary is a masterpiece, but Coyote Ugly is a waste of 90 minutes........",0 +3492,"I remember trying a few minutes of this film, I'm very surprised I didn't watch all of it, from director Steve Gordon, his only film directed before dying of heart failure. Basically Arthur Bach (Golden Globe winning, and Oscar nominated Dudley Moore) is the happy drunk millionaire with everything he could want, a mansion, a butler Hobson (Oscar and Golden Globe winning, and BAFTA nominated Sir John Gielgud), and plenty of booze. He is to inherit $750,000,000 if he marries the daughter of fellow millionaire Burt Johnson (Stephen Elliott), they woman he and the family have chosen, Susan (Jill Eikenberry). But instead, Arthur finds himself falling for Queens waitress Linda Marolla (Golden Globe nominated Liza Minnelli), which of course is threatening the inheritance, and 3/4 of his family's fortune from father Stanford (Thomas Barbour) and Aunt Martha (Geraldine Fitzgerald). After the death of Hobson, Arthur, on the day of the wedding, disobeys the family's wishes, but Aunt Martha still gives Arthur the inheritance to live happily ever after with true love Linda. Also starring Ted Ross as Bitterman, Barney Martin as Ralph Marolla, Anne De Salvo as Gloria - Hooker, Maurice Copeland as Uncle Peter Bach, Justine Johnston as Aunt Pearl Bach, Florence Tarlow as Mrs. Nesbitt, Marcella Lowery as Harriet - Martha's Maid, John Bentley as Perry and Peter Evans as Preston Langley - Party Guest. Moore is wonderfully funny and a little cringing as the almost always drunk millionaire, Minnelli is likable as the woman he loves, and Gielgud of course makes a great Oscar winning impression as Moore's humorous humble sarcastic servant, a terrific screwball comedy. It won the Oscar for Best Song for ""Arthur's Theme (Best That You Can Do)"" (it also won the Golden Globe) (it was number 79 on 100 Years, 100 Songs), and it was nominated Best Writing, Screenplay Written Directly for the Screen, it was nominated the BAFTA Anthony Asquith Award for Film Music for Burt Bacharach, and it won the Golden Globe for Best Motion Picture - Comedy/Musical. Sir John Gielgud was number 35 on The 50 Greatest British Actors, and the film was number 53 on 100 Years, 100 Laughs. Very good!",1 +19349,"One of the previous reviewers wrote that there appeared to be no middle ground for opinions of Love Story; one loved it or hated it. But there seems to be a remarkable distribution of opinions throughout the scale of 1 to 10. For me, this movie rated a 4. There are some beautiful scenes and locations, and Ray Milland turns in a fabulous job as Oliver's father. But the movie did not do a particularly compelling job of telling its story, and the story was not so unique as to warrant multiple viewings, at least, not for me. I may be a bit of a snob, but I tend to avoid movies with Ryan O'Neal -- I still haven't seen Barry Lyndon -- because most of them, but not all, are ruined for me by his presence. The lone exception is What's Up, Doc?, in which his straight performance is the perfect underlining for Barbra Streisand's goofball protagonist -- and, not coincidentally, he takes a shot at Love Story for good measure! McGraw and O'Neal tend to mug their lines, rather than act them.<br /><br />This movie is notable for the beginning of one fine career: it was Tommy Lee Jones's first movie.",0 +15657,"To heighten the drama of this sudsy maternity ward story, it's set in a special ward for ""difficult cases."" The main story is Loretta Young's; she's on leave from a long prison stretch for murder. Will the doctors save her baby at the cost of her life, or heed her husband's plea for the opposite? Melodrama and sentiment are dominant, and they're not the honest sort, to say the least. For example, just to keep things moving, this hospital has a psycho ward next door to the maternity ward, and lets a woman with a hysterical pregnancy wander about stealing babies.<br /><br />There are just enough laughs and sarcasm for this to be recognizable as a Warners film, mostly from Glenda Farrell, who swigs gin from her hot-water bottle while she waits to have twins that, to her chagrin, she finds there's now a law against selling. An example of her repartee: ""Be careful."" Farrell: ""It's too late to be careful."" Aline MacMahon is of course wonderfully authoritative as the chief nurse, but don't expect her to be given a dramatic moment.<br /><br />The main theme of the film is that the sight of a baby turns anyone to mush. Even given the obvious limitations, this film should have been better than it is.",0 +3589,"As a child I always hated being forced to sit through musicals. I never understood why people would break out into song like that, and I was far too young to appreciate the artistry (choreography, set design, costumes, pacing) behind it all. Carol Reed's ""Oliver!"" was the one musical I remember oddly enjoying as a child, probably because it is one of the darker ones and is appropriately drenched in the spirit of Dickensian squalor. This is a musical about ghetto life in Victorian London, and while the scenery and set designs are stark, dark, and true to that way of life, it is flat out bizarre for people to be breaking out into such ridiculous songs amidst their misery. Upon a recent viewing, my first since childhood, I have some new thoughts and insights into why this musical ""works"" in that bizarre breaking out into song kind of way, and why most just don't do it for me.<br /><br />When musicals work or really say something, it is because they realize their own inherent strangeness. Lars von Trier's ""Dancer in the Dark"" as tragic and operatic and over reaching as it was, worked as a musical because the musical numbers were the products of the imagination of the protagonist, an immigrant obsessed with Hollywood musicals. Likewise, the very cynical and enjoyable ""Chicago"" worked on a similar level because the musical numbers were the products of a homicidal ingenue singer/dancer. Musicals don't work when they take their own musical-nature too seriously (like in ""Moulin Rouge"") or are simply too much fluff about nothing (i.e. something pointless like ""Mary Poppins""). Upon viewing ""Oliver!"" for the first time as an adult, I saw it in a new light. Told mostly from the point of view young Oliver, I saw the musical numbers as the products of his childhood imagination and his way of coping with the horrors of ghetto life around him. The best musical number was probably when Nancy got everyone in the tavern signing and dancing about the joys of getting drunk (as a cover to help poor Oliver escape the clutches of the evil Bill Sykes). It was undeniably catchy and sounded like a real pub tune that drunks might start singing around a piano. There are other great and classic tunes to be heard here, and the direction and acting from the leads to the dancing extras are all top notch.<br /><br />Still, for all its bleakness (although it does have a happy ending for Oliver at least, though certainly things didn't end happily for Nancy, and unless you think a life on the streets being a pick-pocket is fun, it wasn't a necessarily a good ending for Fagin or the Dodger, despite their peppy closing tune) I wouldn't really classify this as a family film, though I don't think showing it to kids over the age of seven or eight will do any harm. This is a harsh tale about an unfortunate orphan trying to survive on the streets and find some happiness. I think it would be very interesting to see a modern update on this some how, perhaps a revisionist take on it, where people on the streets of Compton break into happy songs about their horrible lives. I'd like to see a hard-edged hip-hop version of ""Oliver!"". I always thought Dickens would translate well in those regards. As it stands, ""Oliver!"" was probably the last of the great film musicals and maybe the strangest G-rated film I've ever seen.",1 +8124,"Only the chosen ones will appreciate the quality of the story and character design of this movie. Superior ancients that dwell in the lands of lore far beyond any average human creature's understanding. This movie pulls the adventure genre into a unique centrifugal magical force of fantasy unto thee mystical crystals of chalice. Stories come and go, but the idea for a good story is to think positive, not negative thoughts. To create a good versus evil battle like never before. Embracing an impounding shimmering process that keeps imagination glowing in one dimension and out the other. Striking a quick flash of energy that transports a human to another world.",1 +18665,"I was lured to see this movie by its starpower, but ultimately that's all it delivers. It plays much more like a Greek tragedy than a modern thriller about big city corruption. It's greatest flaw is its predictibability and utter lack of suspense. We know who the bad guys are from the beginning, and just follow along as they fall like dominoes. The film to its credit does abstain from gratuitous violence and sex, but has forgotten to substitute good, clean romance or excitement in any other way. All the flavor of a good, flat decaffeinated diet cola. ""Q&A"", which also takes place in New York, is a far better alternative, as is ""LA Confidential"".",0 +12042,"Wow! I have seen so many bad low budget films lately, but this one is great. The very realistic portrayal of police life in a city on the East German coast is a strong contrast to other crime movies or series. I loved the main actress and the absolute rejection of any prevalent cliché about the police. This film is realistic like a documentation and entertaining like a drama at the same time. A perfect tradeoff!",1 +8504,"As I watched this movie, and I began to see its' characters develop I could feel this would be an excellent picture. When you get that feeling, and the movie indeed fills those expectations the experience is rare. I had that very feeling throughout this movie. Robert DeNiro and Cuba Gooding Junior played riveting and amazingly strong parts which were both Oscar worthy. The supporting cast was equally as strong creating a winning foundation for the picture to grow on. I can say without any hesitation at all, see this movie it will not disappoint.",1 +18724,"If you have seen Friends, the writing will feel very familiar. Especially the last 3 or 4 seasons of Friends often share the same comedy setups.<br /><br />The show is about a group of people whose connection is that they shared the same class when they were still rather young (about 10 years old I think). Now, they're in their mid-twenties, and they meet again on a class reunion. This is where the series starts.<br /><br />A typical episode deals with multiple story lines at once. They're usually not connected in any way. Each story line is cut up into multiple sections, which are then shown in a mixed order.<br /><br />The sketches is where my problems lie with this series. As in the later seasons of Friends, it's often a rather silly setting with hard to believe situations. One of the main characters does something really stupid that's hard to believe. The situation is then heavily exaggerated, as if it wasn't silly enough. If you're into this kind of in-your-face humor, then maybe you'll like this series. For me it is a great turn-off.<br /><br />The reason I started watching Friends is because of the first few seasons. There are interesting and especially credible story lines, with some romance in it that makes you root for the characters. The Class has none of this. The characters are simply too forced and stereotypes are pushed too far. It's therefore not possible to relate to them and like them.<br /><br />At least with friends, it took several seasons before it ran out of steam and the character traits were all milked out. But in The Class, it seems it has run out of steam before it even started.",0 +6253,"Its not Braveheart( thankfully),but it is fine entertainment with engaging characters and good acting all around. I enjoyed this film when it was released and upon viewing it again last week,find it has held up well over time. Not a classic film,but a very fine and watchable movie to enjoy as great entertainment.",1 +17244,This is the worst documentary to come out of Canada ever!!!! I'm glad to see the guys haven't made another movie. All they want to do is get a movie made and it doesn't have to be the one they wrote. They keep changing the script to suite the person they're pitching. I could not get out of the theatre fast enough when I saw it at that year's Toronto Film Festival. Please never see this film.,0 +12331,"I happened across ""Bait"" on cable one night just as it started and thought, ""Eh, why not?"" I'm glad I gave it a chance. <br /><br />""Bait"" ain't perfect. It suffers from unnecessarily flashy direction and occasional dumbness. But overall, this movie worked. All the elements aligned just right, and they pulled off what otherwise could have been a pretty ugly film. <br /><br />Most of that, I think, is due to Jamie Foxx. I don't know who tagged Foxx for the lead, but whoever it was did this movie a big favor. Believable and amazingly likeable, Foxx glides through the movie, smooth as butter and funnier than hell. You can tell he's working on instinct, and instinct doesn't fail him.<br /><br />The plot, while unimportant, actually ties together pretty well, and there's even a character arc through which Foxx's character grows as a person. Again, they could've slipped by without any of this, but it just makes things that much better.<br /><br />I'm surprised at the low rating for this. Maybe I just caught this move on the right night, or vice versa, but I'd give it a 7/10. Bravo, Mssr. Foxx.",1 +20198,"This movie is one of the most awful movies ever made.How can Jon Bon Jovi play in a movie? He is a singer not an actor, What?Is he killing vampires with his guitar? And what about the dreadful plot? O my God this movie really sucks. In the end is the Queen of vampires played by the eternal vampire Arly Jover (Blade) surrounded by an army of vampires, but when the ""fantastic"" slayers arrive only 4 vampires are left!! What happened with the other 10-15 vampires? They run out in the sun??? And what about the ""Grand Finally"" when Bon Jovi blows her head with a shotgun??? That's really a ""NOT"" . In ""Buffy the vampire Slayer"" in 100 episodes not a single vampire is killed with A SHOTGUN??? This really is a lack of originality!",0 +866,"Far by my most second favourite cartoon Spielberg did, after Animaniacs. Even if the ratings were low, so what, I still enjoyed it and loved it, was so funny and I adored the cast, wow Jess Harnell and Tress Macneille were in there and were just fantastic, the whole cast were brilliant, especially the legendary Frank Welker.<br /><br />I'd love to see this cartoon again, was so awesome and the jokes were brilliant. Also I can remember the hilarious moment where Brain cameos in it, you hear his voice and it played the PATB theme instrumental, that was just fantastic, I love it in those cartoons when cameos pop in. I wish this cartoon and Animaniacs came back, i loved them",1 +11506,"Since I watched it for the first time, ""Piedras"" is a personal favorite and one of the few pictures I actually could watch over and over again. The great screenplay depicts the lives of a bunch of women (all of them somehow interconnected) with deep understanding and sensibility. Ramón Salazar achieved a compelling film in his directorial debut, and proves himself as an efficient actors' director. <br /><br />Not that all performances are excellent, though. Of all leading ladies, they range from average (Najwa Nimri) to very good (Vicky Peña), but the standing ovation should be directed to newcomer Mónica Cervera, who convincingly plays Antonia San Juan's retarded daughter. Enrique Alcides is irresistibly charming as the girl's male nurse, and there are nice small turns from Andrés Gertrúdix, Geli Albaladejo and the director himself, Ramón Salazar.<br /><br />""Piedras"" is beautifully written and filmed, when I watched it I got so moved that I couldn't stop thinking of it for days. I highly recommend it.",1 +12890,"This movie barely followed the story line of the movie. All of the fascinating points in the book didn't even exist in the movie. They ended up turning it into a cheesy ""tween"" Disney movie ""crush"" story between Meg and Calvin. It was so bad it should have been Hillary Duff playing the part, or one of the likes. This movie was nothing more than an insult to the intelligence and mysticism of the book. I can't believe Disney could even get away with making such a cheap, basic rendition. If you've ever read the book, I think you would agree it could easily be made into a movie of ""Lord of the Rings"" equivalence. This movie should have never been able to use the title of A Wrinkle in Time. Poorly done.",0 +15978,"This movie sucks ass. Something about a heatwave in some European country, complete trash. There's nothing going for this movie whatsoever. maybe 30 seconds of sex but that's it. There is a very annoying chick who hitches rides with people and really pisses me off. This movie is complete rash and you shouldn't subject yourself to watching it. I regret it it's very boring. I would rate it zero but i can't. No body in their right mind should see this. i'm sure you'll regret it completely i did. How could they think up something this bad. Even Mystery men was better. MYSTERY MEN. That sucks. That movie wasn't worth being made. complete waste of time. The characters in this are very hard to understand and i good very very very bored.",0 +12758,"It's one of those dramas that's so bad that it almost hits the point of being very funny, the script is absolutely dire, direction appalling, lighting purely armature, the only thing letting it down from a true so bad it's good feel is that the sound design is only quite bad; it adds no suspense to the story although trying hard, but doesn't at least destroy any speeches. There's continuity problems of seasons of out door shots throughout. And finally last but not least the acting is appalling. For a professional production it very much has the feel of a university media project you have to feel sorry for the sorry for anyone who had to put their names to this.",0 +21916,"I sat through this film and i have to say it only just managed to keep my attention. The film would have been a bit more bearable if i did not have to watch the awful CGI, for future reference to the industry if your going to use CGI watch this so you know what to avoid.<br /><br />Apparently this is supposed to be a graphic novel for the screen but all i saw was a bad movie which bears no resemblance to a graphic novel whatsoever.<br /><br />All in all, the story was not as bad as the CGI, i was quite impressed with the acting and thought the casting was good and little more character info would have been nice as it did get a little confusing for me on occasion but that's not surprising as like i said it only just kept my attention, but in all honestly i wish i had given this one a miss.",0 +9807,"Shintarô Katsu, who played the blind swordsman ""Zatoichi"" in a total of 27 movies, ends the Hanzo trilogy with this excellent film in which he gets to make love to a ghost, Mako Midori (Blind Beast).<br /><br />The big stick, used often in the pursuit of justice, is retired forever.<br /><br />Katsu was his usual impudent self as he pursued those who would steal from the treasury to lend at usurious amounts to those who could not afford to pay.<br /><br />The usual amazing swordplay and skill of the big guy was present, along with the blood.<br /><br />I'm going to miss him.",1 +5035,"Not knowing what this film was about, I checked it out at the video store and after seeing it, I enjoyed it. Little seen multi-genre flick from director Bernard Rose (Candyman, Immortal Beloved). Great story and characters. As a fan of Glenne Healdy's, I was surprised of her british accent. The only exception for this film was the ending. However, it is worth the rent.",1 +17518,"There's nothing amazing about 'The Amazing Mr Williams'. Part of this movie's problem is its lead actor Melvyn Douglas. He was a lousy actor and lazy with it. For most of his career, he allowed his good looks, a glib manner and (usually, but not in this movie) some fine scriptwriting to make up for his lack of acting ability. I disliked Douglas as an actor before I knew anything about him as a person; I've learnt enough about him to know that I also despise his politics. I'll give Melvyn Douglas credit for one thing: his chromosomes did produce the incredibly talented and sexy actress Illeana Douglas.<br /><br />Melvyn Douglas made this movie right after the brilliant 'Ninotchka' ... talk about a comedown! 'The Amazing Mr Williams' is allegedly a comedy, but I never laughed. Douglas plays a plainclothes detective on the homicide squad, named Kenny Williams. I never heard of a police detective named Kenny, but if they called him Kenneth Williams ... well, what a carry-on. The whole city is in a panic because a serial killer is going about, killing women. No motive is given for this; he just likes to kill women. The mayor (Jonathan Hale, better than usual) calls Williams on the carpet to account for his failure to catch the killer.<br /><br />SPOILERS APPROACHING. The cheap, vulgar, untalented and unattractive Joan Blondell plays the mayor's secretary. (She doesn't sound literate enough to file a letter, much less type one.) Blondell and Douglas squabble like a cat and a dog, so it's blatantly obvious they're going to end up together.<br /><br />At this movie's lowest point, Melvyn Douglas decides to draw out the killer by dressing up as a woman. You do NOT want to see Melvyn Douglas in drag! He's well over six foot, and he doesn't even shave off that annoying moustache. The similarly-'tashed William Powell was an actor very similar in type to Melvyn Douglas (but much more talented). When Powell disguised himself as a woman in 'Love Crazy', he had the integrity to shave off his moustache: a genuine sacrifice, as Powell needed it to grow in again for his next role. But Melvyn Douglas brings nothing whatever to his role in this movie, not even a razor. He plays his drag scenes with the same annoying smirk he used throughout the bulk of his career.<br /><br />On the plus side, 'The Amazing Mr Williams' has several of those splendid supporting players who made Hollywood's movies of the '30s so delightful. Edward Brophy is brilliant here, touching and funny as a criminal who gets an unlikely furlough from his life sentence. The dyspeptic Donald MacBride is fine as a cop who gets mistaken for the killer, and is nearly lynched by a mob. Ruth Donnelly is splendid: as usual for her, but here she gets a chance to show her talents away from her usual orbit on the Warner Brothers backlot. Jimmy Conlin, Luis Alberni and the grinning Dave Willock are all fine in small roles. Barbara Pepper (whom I usually dislike) is good here too. The grossly unpleasant Maude Eburne gets some screen time; I always loathe her, and she gives the same performance in every film ... but some audiences enjoy Eburne's one-note performance very much, for reasons I can't fathom.<br /><br />If you're familiar with Hollywood character actors of the 1930s, and the roles they tended to play, one glance at IMDb's cast list will tell you who the murderer is. That's the problem with 'The Amazing Mr Wiliams': everything is too obvious. I'll rate this movie 2 points out of 10.",0 +21078,"This is a movie that is bad in every imaginable way. Sure we like to know what happened 12 years from the last movie, and it works on some level. But the new characters are just not interesting. Baby Melody is hideously horrible! Alas, while the logic that humans can't stay underwater forever is maintained, other basic physical logic are ignored. It's chilly if you don't have cold weather garments if you're in the Arctic. I don't know why most comments here Return of Jafar rates worse, I thought this one is more horrible.",0 +20181,"I liked Boyle's performance, but that's about the only positive thing I can say. Everything was overdone to the point of absurdity. Most of the actors spoke like you would expect your 9-year-old nephew to speak if he were pretending to be a jaded, stone-hearted cop, or an ultra-evil villain. The raspy voice-overs seemed amateurish to me. I could go buy a cheap synthesizer and crank out better opening music. And what's with the whole 1984ish police torture stuff? It was totally superfluous and had nothing to do with the actual events of the story. Cox added a lot of things, in fact, that he apparently thought would be really cool, but had nothing to do with the story. That's a big disappointment because one of the things that makes Borges' stories so good is his minimalism -- they are tightly bound, with no superfluous details. This movie is just the opposite. I stopped watching after the scene where Lonnrot is questioning the guy from the Yidische Zaitung, or thereabouts. I wasted $4 renting this, but at least I can get some satisfaction from writing this review and hopefully saving others from making the same mistake.",0 +24661,"I've seen the first of the dwarf-Movies and sometimes I had little fun watching it. There are many famous TV/Comedyactors appearing in the first part and presented, in fantasy costumes, typical little episodes of their Stand-Up-Program and exactly that is the problem the second movie has to struggle with. Everything was already there....nothing new to obtain. You're familiar with most of the often boring and dumb ""jokes"" and you always feel like their goal was to put in every Comedylooser of the last decade who wants to get back on stage. There's nothing important about the story: typical fairy-tale story of Rumpelstiltskin, without any importance. I expected something like that but that's nothing I could complain about. I'm actually complaining about the lazy story writers who had an entire background story; their only business was to get many jokes and parodies inside but they didn't get it anyway. This crap is except the great appearance of Helge Schneider a total waste of time and money.(if you don't like him then remove 2 points of my evaluation) If you like to save your money and get bad jokes then watch the crap that's broad casted every Friday evening on SAT1 or RTL for free. I'm sure you will recognize some ""laugthers"" I saw last night in cinema.",0 +12146,"Spoiler This is a great film about a conure. He goes through quite the ordeal trying to get back to his little girl owner. He learns a lot through his journey and meets up with a lot of other beautiful birds. If you love birds like my wife does, this film is for you. This film also has some sad parts that make the tears run. In the end it all works out for Paulie and his Russian friend. Rent this for the whole family, everyone will enjoy this.",1 +16541,"No one should ever try to adapt a Tom Robbins book for screen. While the movie is fine and the performances are good, the dialogue, which works well reading it, is crap when spoken. Or, to put it another way, no one would be likely to suggest that hearing someone else's name was like seeing it written in radium on a pearl.<br /><br />Overall, the movie feels like a badly-adapted Cliffs Notes to the book - most of the parts have been hacked down to a fifth of their size in the book, in terms of backstory and current story, and the ending is wildly (and unpleasantly) different from that of the book. Most of the plots from the book have gotten lost, including the one that makes everything make sense at the end, and there's more than one reference that makes sense in the book that makes the viewer say ""Huh?"" Not a worthy effort, unfortunately - the script should have been read, compared to the book, burned, and all the actors sent off to do something far better. I admire Gus Van Sant tremendously, but not even someone of his calibre could have made a decent movie of such a complex book without making a miniseries.",0 +9317,"I saw the movie before I read the Michelle Magorian book and I enjoyed both. The movie, more than the book, made me come close to tears on several occasions. This film touches the deepest points of the human soul and never lets go. I encourage as many people to watch this masterpiece as much and as soon as possible. I give it ten stars.",1 +15820,"Watching That Lady In Ermine I was wondering what Betty Grable was doing in a project that seemed to be aimed for Marlene Dietrich to do. Someone over at 20th Century Fox may have decided one sex symbol is as good as another. Darryl F. Zanuck should have known better.<br /><br />Betty plays a 19th century Italian countess whose domain has been invaded by a troop of Hungarian Hussars captained by Douglas Fairbanks, Jr. Her ghostly ancestor whose portrait hangs in the palace hall along with the rest of her distinguished family tree, sees no small resemblance in Doug now and another invader some 300 years earlier whom she dealt with when armies failed.<br /><br />Besides that the current Betty has just been married to Cesar Romero and the invasion has come at a most inopportune moment, before things have been consummated. That's going to give anyone a bad attitude, I guarantee.<br /><br />Fresh, wholesome all American Betty is NOT the actress to do seductive and mysterious. Marlene Dietrich might have put this over, but with Betty it falls flatter than yesterday's presidential candidate. She and Fairbanks have no chemistry at all, though Doug is as charming as ever and someone I can watch in anything.<br /><br />Frederick Hollander and Leo Robin wrote the score for this film and This Is The Moment got an Oscar nomination for Best Song. That Lady In Ermine's one chance for Oscar glory fell to Buttons And Bows.<br /><br />Ernest Lubitsch died midway during the film and Otto Preminger finished That Lady In Ermine. I can't believe Lubitsch had Grable in mind for the lead here. Neither will you if you see That Lady In Ermine.",0 +13952,"The Perfectly Stupid Weapon. I think the guys dancing at the beginning of one of Steven Segal's movies was intented to mock Jeff doing his forms to dance music at the beginning of this stupid movie. The plot is predictable, the fights were fair and Jeff acts about as well as the sofa he beats with some sort of weapon in one scene.",0 +12058,"I have one word to someup this movie, WOW! I saw ""Darius Goes West"" at the Tribeca Film Festival. People in the theater were sobbing. This movie shows the hardships that Darius sufferes with Muscular Dystrophy. The movie was very well done and really made you part of the movie, I WAS SO emotionally moved by the movie because it made us remember that we are very fortunate to be perfectly healthy, some people in this world are less fortuate then us. And sometimes we should give them a had and help them, to the very end. I would give them ten stars, they gave Darius a had when they weren't asked to, they did't do it for the money they did it for a friend in need, Darius, the world should know, Darius went west.",1 +8091,"Antonioni really showed some 'cojones' when he had this movie made. He went to America working under a contract from the most lavish studio (MGM) and he made the most damning portrait of American society i've ever seen. Having seen LA first hand this is the most accurate portrayal of the crowded, overheated and impersonal city. If only Antonioni had met Bill Hicks...<br /><br />The subsequent burial by the studio is understandable, after such a whopping investment and dismal return. It is sad that people don't get to see this film any more as i believe Antonioni has been proved right. Here he predicts the end of the hippie/civil rights movement in the politics of America. Everyone is much more interested in what goes into their pockets and the relentless expansion of living space into the inhospitable (yet beautiful) desert and beyond. How i would love to see interest in this film re-kindled and a lavish DVD release.<br /><br />I beseech people to watch Zabriskie Point with an open mind and an open heart. We have a genuinely unique film commenting on a turning point in the history of the most powerful nation on the planet, and we have forgotten about it.<br /><br />An unexpected gem.",1 +23589,"the lowest score possible is one star? that's a shame. really, i'm going to lobby IMDb for a ""zero stars"" option. to give this film even a single star is giving WAY too much. am i the only one who noticed the microphones dangling over hopper's head at the station? and the acting, or should i say the lack thereof? apparently talent wasn't a factor when the casting director came to town. my little sister's elementary school talent show provides greater range and depth of emotion. and those fake irish accents were like nails on a chalk board. the only thing that could have made this movie worse would have been...oh, wait, no,no, it's already as bad as it can get.",0 +24419,"This movie seemed like it was going to be better than it ended up being. The cinematography is good, the acting seemed solid, the dialogue wasn't too stiff... but then about twenty minutes in there's this long scene with a Doctor who you know is actually a patient at the asylum pretending to be a Doctor - and it just goes south from there.<br /><br />On top of that, the demon is about the silliest looking hellspawn since the Godzilla-looking thing in Curse of the Demon. There's also some odd demon worshippers who wear masks that look like the exploding teens from the beginning of Logan's Run.<br /><br />In the end, the cinematography couldn't save this movie. Despite some pretty solid performances by the actors, the story just doesn't go anywhere. I think ""Hellbored"" would have been a better title for this.",0 +7228,This movie was so good. Leon Phelps is hilarious. I went out after and bought a case of Cognac!!!!! I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!I went out after and bought a case of Cognac!!!!!,1 +22665,"The annoying mouse and lullaby really got to me and really had nothing to do with the story...It's something I would have done my 1st year in film school. Very sad. Additionally, the story just seemed to drag on for no apparent reason...there were too many things just thrown in there that had nothing to do with the story, which makes me feel that the creative team didn't really know what they were doing, or just that it should have been shorter...which would have been a blessing, not a crime. As I have just watched all of the episodes up to this point over the past week...I'd have to say that this was by far the worst, and I just wanted to warn others not to start with this one.",0 +13338,"I can't really think of any redeeming features of this utterly bad rendering on Asimov than the art direction. Forget the product placement disaster, the unconvincing performance from Will Smith and the gargantuan plot-holes. This wasn't only laughable and but painful to watch. Even the action was boring. A mixture of MTV inspired production values and utterly bad dialogue probably aimed at very small children.<br /><br />What a shame that sci-fi this bad can still be made after we've had Bladerunner, Minority Report or to a lesser extent Dark City (by the same director). This one really belongs in the bottom 100 list. Truly awful.",0 +9515,"The first time I saw this movie, I fell in love with it. The atmosphere was what caught my attention first and foremost. I expected a gore fest, but instead got to watch a highly intelligent killer mess with my head to a chilling soundtrack (it's actually my ringer at the moment :P). The fact that I couldn't predict when he'd kill and when he'd disappear was a major plus in my book. Predictable horror movies bore me. Now, I know the storyline had some discrepancies, but, if you're like me, you don't even notice them until long after the movie's over and you're laying in bed mauling over the fact that you just witnessed a masterpiece in motion. Finally, as I mentioned, the soundtrack is timeless. It's one of my all time favorite theatrical scores, so I was very happy to hear that Rob Zombie is leaving it untouched in his remake. Speaking of the remake, I read a very comprehensive article on it and, now that I know that Mr. Zombie reveres John Carpenter, I have high hopes for his take on this classic. This movie is great for any time you have a craving for a spine tingling, but it's the perfect addition, opener, finale, you name it for an All Hallow's Eve movie marathon. :)",1 +22389,"It should come as no shock to you when I say that Alone in the Dark is a crappy movie. To put it bluntly, it's as if a dung monster defecated, ate the result, and then vomited. The final product would still outshine this movie.<br /><br />Seemingly based on an ancient (!) Atari video game, the movie has something or other to do with a portal to the bowels of the earth, the unleashing of demons, and ancient civilizations. Something about there being two worlds, that of darkness and that of light. (Guess which one's ours.) Oh, and 10,000 years ago a really super-duper advanced civilization opened the portal, demons came over and had a blast, then wiped out the civilization. Which is why we've never heard of them, conveniently enough.<br /><br />Christian Slater, perhaps pining for the days of Heathers and Pump up the Volume, plays Edward Carnby, a paranormal researcher to whom Something Bad happened when he was 10 years old. He's hot on the trail of one of the artifacts of said advanced civilization. Carnby used to be part of a secret institution called 713, which has been trying to figure out what happened to that long-ago civilization. But Carnby believed he wasn't going to be able to find the answers he sought, so he left the group.<br /><br />But see, these beasties are out, and they get their prey in varying ways, such as gutting them, splitting them down the middle, implanting neurological control devices in them, or just turning them into killing zombies. Yes, it's another zombie movie.<br /><br />That's about as distilled I can make the plot. It's pretty convoluted and incomprehensible. In similar movies, one might see the intrepid researcher/adventurer figure things out a step at a time, and when we the audience are mentally with the researcher, it's a lot of fun. But when the scenes shift from attack to attack with no perspective or context... not so much fun.<br /><br />The acting is dreadful, save for Slater, who (although he almost seems embarrassed to be in the movie) showed he was capable of carrying the acting load. He had to; get this - Tara Reid is cast as a museum curator! Honest to goodness, I thought I'd seen the casting of a lifetime when Denise Richards was cast as a nuclear physicist in Tomorrow Never Dies. But Reid here matches Richards, crappy emoting for crappy emoting. Hightlights include Reid pronouncing ""Newfoundland"" as ""New Fownd Land,"" Reid delivering most of her lines in a dazed, throaty monotone (kinda like she'd been on an all-night bender for the past week before filming), Reid - a museum curator, mind you - spending a lot of the movie in a midriff-bearing top and hip-hugger jeans. Oh yeah, she was as believable as Jessica Simpson giving stock quotes. Oh, why must the pretty ones be so dumb? (Note: I don't think Tara Reid's all that good looking. She looks like she's in perpetual need of food.) Almost everyone else in the cast is completely forgettable, except perhaps for Steven Dorff, who played Burke, one of the leaders of 713. Dorff's character wasn't terribly well developed, but nothing in the movie was, from the sets to the characters to Tara Reid. But I digress.<br /><br />Anyway, the perplexing and utterly preposterous storyline is tough enough to follow with the film moving at such a breakneck pace, but director Uwe Boll tosses in a pounding, mind-deadening soundtrack; it's so loud you can't hear what the actors are saying in some of the scenes! That can't be right. Given the acting level, however, perhaps thanks are in order to Mr. Boll.<br /><br />Oh, and a fun note. The opening moments of the movie include narration... of the words that are crawling across the screen at the same time. Remember the first Star Wars? You heard that now-familiar Star Wars theme while the prologue crawled. There was surely no need for narration; why do I need some doofus to read what's on the screen for me? Were the producers simply looking out for blind people? Maybe that also explains why the soundtrack was so loud - they were also looking out for hard-of-hearing people. Also, the narrator inexplicably had a lisp for the first few lines of the crawl - then lost it. Bizarre.<br /><br />Alone in the Dark is a loud, dopey mishmash of dreadful acting, an incoherent script, and ham-handed directing. Hardly a note rings true. There's so much chaos that the audience simply gives up caring about the characters and roots for their demise. Even in the dark, the demonic creatures seem cooler and much more developed by comparison.<br /><br />Ironically, since there were only three other people in the theater, I watched this Alone in the Dark. I wonder if Uwe Boll planned it that way? I can't quite give this the lowest rating, because I had low hopes for it to begin with - and because it never grabbed me enough for me to get worked up about it. It's atrocious, although Slater redeems himself a tiny bit.",0 +6549,"This film is very interesting. I have seen it twice and it seems Glover hit the nail on the head with what he claims to he wants to accomplish. I for one can relate to the outrage that the filmmaker clearly expresses against the current thoughtless corporate drivel that is an onslaught in our every media center, and the things that we as a culture are supposed to not ""think"" about due to corporate media control. The outrage that Glover expresses through the ""outrageous"" elements in the films is both clear in its visceral aggressiveness and beautiful in its poetic potency. I am glad I saw this film and it is even clearer that Glover is up to something interesting with part two of what will be a trilogy. It is fine! EVERYTHING IS FINE. See that also. People that dismiss this film as ""thoughtless"" or ""pretentious"" are really missing the boat. This is an intelligent films. If you can see it with his live show he performs before with his books, that is also very wroth while. The way you get in to his mindset is really something. You will have an experience!",1 +5689,"Esther Kahn is a young Jewish woman living in an overcrowded, Jewish Ghetto in 19th century England. She is surrounded by looming, oppressive, dreary, featureless, worn brick architecture, narrow sidewalks and streets, blacked out windows, and hordes of black-and-brown jacketed crowds.<br /><br />She lives in a tiny apartment with her large family whom operate a clothes shop within the apartment. As child, she worked, had no privacy, wore colourless clothing, shared a bed, and remained silent to avert the mockery of her mother and siblings who ridiculed her for mimicking them out of boredom.<br /><br />As a young woman, her life remains the same - she has no privacy, lives in a state of mental and physical hebetude and lethargy and inertia, exudes a blank, featureless expression, is clothed in plain, unremarkable clothing, and is continuously oppressed and dwarfed by the grey, mundane, massively imposing buildings, and narrow streets, and narrow hallways, and narrow doorways, and her loud-mouthed mother and siblings, and the prosaic, banal lifestyle of her family.<br /><br />Her only form of mental escape is the Yiddish theatre. Sitting in the balcony, front row, leaning over the rail, there is a vast space between her mind and the stage, a space that enables her to breathe, think, feel, and yearn.<br /><br />Yet despite the freedom of thought the open stage provides for Esther, her face and body remain torpidly somnolent, impassive, dispassionate.<br /><br />The plain and common looking Summer Phoenix brilliantly conveys Esther's emotionless demeanour - Summer/Esther does not convey any desire to want anything or anticipate anything.<br /><br />After an unusual explosive confrontation with her mother, Esther finally decides to break free from the bleak life she is trapped in.<br /><br />She is eventually cast in minor parts in a few stage plays, and meets Nathan Quellen, portrayed by quintessential British actor Ian Holm, who commences to teach Esther the technical skill of acting.<br /><br />From this point forward, Esther begins a grueling dual journey of learning how to act and learning how to feel.<br /><br />She begins experiencing emotions she never felt before, and she begins gaining the experience she needs to fully comprehend and wield the technical aspects of acting.<br /><br />Nathan walks her across the stage through the physical and emotional steps of surprise, hesitancy, anger, disgust, self-loathing, etc; she then begins walking through those emotions in her personal life.<br /><br />There are three truths, Nathan tells her - the truth of how a character reacts, the truth of how the actor would react, and the truth that a character and actor are not the same person.<br /><br />These technical steps and three truths slowly deconstruct Esther's defenses and lead her to two edifying experiences in the denouement of the film which mark the beginning of her freedom of thought, movement, and emotion.<br /><br />Esther Kahn is a technically challenging film to watch because of its odd and narrow camera shots, lackluster photo direction which conveys the realistic lackluster setting of the Ghetto, and Summer Phoenix's characterless and insipid and unappealing portrayal which brilliantly conveys Kahn's mental and physical hebetude and lethargy and lackluster nature.<br /><br />A must-see film for people who want to learn the technical craft of acting, and for people who appreciate minimalistic films and character studies.",1 +6515,"This movie is ridiculous! That's exactly what I like about this piece of ""Guilty Pleasure"". It is easy to condemn this movie for not including Pat Priest and Butch Patrick, the original Marilyn and Eddie. But look at the year and do the math. Pat Priest and Butch Patrick had long outgrown their parts! Time does that to young stars. Yvonne De Carlo, who re-prised her role as Lili, was pushing the Big 6-0 (even though she still looked good and was still the perfect ""Lili"").<br /><br />It's a shame that Yvonne De Carlo wasn't given a larger part. Still, it was good to see Fred Gwynne and Al Lewis in the roles that made them so famous! During the 2 seasons that THE MUNSTERS was on prime time, it was the Gwynne/Lewis chemistry that made the series such a success. The rest of the cast were supporting cast members, not to say that they weren't needed. They were! The TV series wouldn't had survived as long as it did without them. Given the choice between Butch Patrick or Happy Derman (the original ""Eddie""), the choice was too easy. Yvonne De Carlo was also the better choice over Joan Marshall.<br /><br />Though this movie doesn't measure up to the original TV series, it still measures up nicely and is one of the better ""reunuin"" TV specials that plagued the boob-tube during the late 1970s/early 1980s.<br /><br />'",1 +15765,"Despite a decent first season this series never came close to realizing its potential. Set as a prequel to the original ""Star Trek"" series it was doomed almost from the start by an executive producer, Rick Berman, who felt compelled to artificially limit and constrict the definition of what a ""Star Trek"" series could be (which made this futuristic show increasingly anachronistic from a dramatic standpoint). The actual show-runner, Brannon Braga, didn't help matters by his uninspired and tired rehashing of previous Trek episodes and careless disregard of the franchise's internal mythology (it was painfully obvious early on that he was in it only for the paycheck). Never have I seen a series' that so consistently did a disservice to a cast of talented actors (Jolene Blaylock excepted)last so long. It is as if this entire series was produced in bubble existing outside the contemporary television landscape where the audience (even a Trekker audience) is more demanding and sophisticated in their dramatic wants and desires. Unfortunately it appears as if Berman and Braga have succeeded in convincing the higher ups at Paramount that ""Enterprise"" suffered from ""franchise fatigue"" and that its core audience was did not walk away but was driven off. Produce a quality offering that lives up to the high ideals and standards of its predecessors and they (the audience) will come.<br /><br />Simply put, In a TeeVee universe where we are given shows like ""Battlestar: Galactica"" and ""The Shield"" the powers-that-be must give the viewing public a ""Star Trek"" that measures up and is dramatically competitive. It is just that straightforward and easy.",0 +14938,"The plot it's not so original. If someone saw ""L'ultimo Bacio"" there's nothing new. A wealthy family in Rome living everyday life that's is boring and false, with everyone asking to others what they think about them. Really boring after an half of hour because it's simple to understand where the story is going to finish. This because it's simple to see the moralistic view of Muccino in this movie, so even the hardest parts seem normal. To summarise in the first 2 minutes of the movie it would be enough and the aim of the movie were already said. the family saw from a 30 years old, i don't like to see movie that want to show the reality but for be coherent to his thoughts has to push more than the normal the situations. Really good how Muccino put the camera in the right place moving with the carathers and it's the only reason that bring me not sleeping in the cinema though always in the movie scream from the begining. Perhaps it could be good to see the family how they are in reality and not put the blame to something out of it. Morante was intense and great as usual but unfortunatly on a bad movie!",0 +3609,"I've seen hundreds of silent movies. Some will always be classics (such as Nosferatu, Metropolis, The General and Wings) but among them, my favorite is this film (it may not be the best--but a favorite, yes). In fact, when I looked it up on IMDb, I noticed I immediately laughed to myself because the movie was so gosh-darn cute and well-made. Marion Davies proved with this movie she really had great talent and was not JUST William Randolph Hearst's mistress.<br /><br />The story involves a hick from Georgia coming to Hollywood with every expectation that she would be an instant star! Her experiences and the interesting cameos of stars of the era make this a real treat for movie buffs and a must-see!",1 +7886,"Damn straight.....this show was kick ass back in the day and still continues to outshine cartoons today. I can't wait to track down some of the DVD's to share with my little guy and see the same sparkle in his eyes. I've already introduced him to Voltron (the 5 lions one, not the 15 vehicles one)and I laughed my head off when he said to me one day ""Dad..you sure watched some awesome cartoons when you were a kid!!"" How cool is that.<br /><br />Come on Hollywood, dust this one off and give it a live action attempt. Couldn't be any worse than Spiderman 3 was...Man oh man... 2007 has been pretty lame so far for summer movies.<br /><br />OK, I'll shuddup now<br /><br />Cheers",1 +12402,"In addition to being an extremely fun movie, may I add that the costumes and scenery were wonderful. This kind, fun loving woman had a great deal of money. Unfortunately, she also had two greedy daughters who were anxious to get their hands on her money. This woman was lonely since the death of her husband. He had proposed to her in a theater that was going to be torn down. To prevent that, she bought it. Her daughters were afraid she was throwing away ""their"" money and decided to take action. The character actors in this film were a great plus also. I would give almost anything to have a copy of this film in my video library, but as of yet, it's never been released. Sad.",1 +2974,"I've heard nothing but great things about the 2006 television mini-series, ""Planet Earth,"" narrated by my childhood idol David Attenborough. Nevertheless, whether it was screened down here in Australia or not, I never caught up with it, and when I happened upon the opportunity to see 'Earth (2007)' a feature-length compilation of the same nature footage on the big screen, I jumped at the chance. The theatre was basically empty; just one other patron sat in the row ahead of me, and it was as though I had, not only the big screen to myself, but, indeed, the entire planet Earth. For 90 minutes, I was lowered into the beauty and perils of the isolated wilderness, amongst some of the most beautiful living creatures ever captured on film. Awesome in its scope, and yet painfully intimate at times, 'Earth' is a heartfelt plea from the filmmakers to recognise the delicate balance of life on our planet, and how the intrusion of humans has placed countless glorious animal and plant species on the brink of extinction.<br /><br />Though the film, directed by Alastair Fothergill and Mark Linfield, obviously argues for the conservation of the wilderness, it refrains from beating us over the head with propaganda, and the puzzle that is politics is ignored altogether; indeed, there is not a human in sight. Instead, we are simply taken on a breathtaking journey into the majesty of the natural world, to experience the resilience, and also the fragility, of life on Earth. I hear that the original mini-series, which ran for eleven episodes, delves a lot deeper into the scientific background of world ecosystems, but I think that, here, the filmmakers made a wise decision to replace information with emotional impact: I can't remember the last time that I felt so inspired, and yet utterly heartbroken at the same time. By establishing an emotional link between the audience and a select few individual animals, anthropomorphising them to an extent, we are suddenly able to appreciate the ""human side"" of each species, and their hopeless plight for survival becomes less a statistic and more an unacceptable tragedy.<br /><br />'Earth' is basically comprised of a selection of dramatic episodes, whether it be the struggles of a female polar bear to lead her young cubs to the Arctic ice, or the tramp of an elephant herd towards the life-saving seasonal floodwaters of the Okavango Delta. The documentary demonstrates the delicate balance between life and death, most heartbreakingly exhibited in the desperate ballet of predator-prey interactions. Though occasionally, perhaps to cater towards a younger audience, the footage cuts itself short at the crucial moment, I regularly shed at tear at the inevitability of death in nature, and the raw instinct that fuels these animals' final, hopeless efforts at survival. There's even a haunting beauty to be found in the hunt, both in the slow-motion footage of a cheetah bringing down its prey {the result of a single fateful misstep}, or the majestic mid-air leap of a Great White Shark as it engulfs a hapless sea lion. It is this frail balance that has been fatally disrupted by the selfishness of our own species.<br /><br />Aside from these main stories, we are also treated to brief snippets of wildlife from around the world, including the birds of paradise of Papua New Guinea, and the autumn migration of the demoiselle cranes. Of course, entire films might have been dedicated to these species alone, and an inevitable consequence of having to sift through so much footage is that some interesting ecosystems are glossed over far took quickly. By choosing to focus most closely on the polar bear, elephant and humpback whale tracing their lifestyles, via some astonishing high-definition time-lapse photography, throughout a calender year the filmmakers were able to avoid any structural problems that might arise from having so much to show, and only 90 minutes to show it. Consequently, 'Earth' left me thirsting for more, and, fortunately, I now have approximately eleven hours more, as soon as I can track down a copy of the DVD box-set for ""Planet Earth."" Uplifting and tear-jerking, awe-inspiring and heartrending, 'Earth' is a truly magnificent documentary experience, and it might just be my favourite film of 2007.",1 +1915,"Elvira(Cassandra Peterson) is the host of a cheap horror show. After she finds out that her dead aunt has left her some stuff, elvira goes to England to pick it up, hoping it will be some money. But to her horror, elvira finds out that all her aunt has left her is her house, her dog and a cookbook. Elvira decides to settle in the house anyways, but with her striking dark looks and her stunning features, she will not be able to live in peace. All the neighbours are now turning the whole town against her, and with Elvira's outrageous attitude and looks, everyone better watch out, because Elvira is on Fire! I really enjoyed this movie, it's really fun to watch get Elvira into all these adventures, she's just great. The whole movie puts you into a halloween mood, sure, it's silly and the jokes are cheap but it's a pleasure to watch it. I would give Elvira, Mistress Of The Dark 8/10",1 +7811,"""Most of us at least inhabit two worlds , the real world where we are at the mercy of circumstances and the world within ,the unconscious ,a safe place where we can escape ..."" With those words ,Mr .Gone introduces inside the world of ""The Maxx"" a fascinating world where the fantasy and the reality are combined . Inspired in the comic books of Sam Kieth, ""The Maxx "" is very faithful to the material in what it was inspired , not only in the story but also in the graphic style ,that look like the pages of the comic ,giving this show a surreal and unique appearance . But also ,the story it's interesting and entertaining .At moments it could turn too weird ,but when you got inside it ,it's hard to get out of it . The story and the characters are wonderfully developed . The music goes perfectly with the style of the show and give it the proper atmosphere . Unfortunately , like many good animated shows ,this one was short -lived . ""The Maxx"" is a must see . It 's one of my all -time favorites .",1 +9602,"This movie was an impressive one. My first experience with a foreign film, it was neither too long, nor too complex. I myself enjoyed the subtitles; and the plot was surprisingly fresh. The story of an adult son visiting his elderly father and retarded brother after a long separation appeared cliched at first, but it proved to be very touching and realistic. There was also some subtle humor so as not to depress or bore the audience.",1 +14415,"I once used Wesley Snipes' name as a clue to go ahead and watch a new, untried film in which he appears. So now, for the first time, my Snipes-Method of film recommendation has failed. Utterly. I should first have come here to see these reviews.<br /><br />Snipes ought to be ashamed to allow his otherwise earnest efforts to be so wasted in ""The Contractor"".<br /><br />One of my worst flick fears has come to bitter fruition. I feared that the shaky, blurry, pseudo-documentary, ""unconsidered"" directing and editing style (first brought to my attention by the Paul Greengrass-directed ""Bloody Sunday"") might propagate to other films. Greengass' sickening style was then brought to nauseatingly new heights in the last two of the Bourne trilogy films. My fear had come to pass. In my opinion, these films are made really bad by these motion-sickness-inducing methods, which mistake blurry swipes for ""action-enhancement"". But the ""Bourne Franchise,"" as Greengrass so loving calls his cash cow, apparently convinced others in Hollywood to go unprofessional in the quest for fast, big bucks.<br /><br />Read my lips, you Hollywood types. Action needs to be clearly photographed and presented, not merely hinted at by poor, lazy cinematographic techniques.<br /><br />And ""The Contractor"" goes so far as to emulate ""The Bourne Ultimatum"" in inanely-repeated sound bites, in hopes their juvenile (apparently-evaluated) audiences can't sense them. For example, if I hear a cop radio crackling ""Yankee-Romeo"" one more time, I'll just scream. The chances are good I won't hear it again: I certainly won't ever view ""The Contractor"" again.<br /><br />I recommend to those of you who have yet to see ""The Contractor"": just be content with the tranquility this lack affords to your life.<br /><br />2 out of 10; I am tempted to lower that to a 1.",0 +20139,Caught this movie on the tube on a Sunday. I thought it was so bad I looked it up on IMDb to see what others thought of it. I was not surprised at the amount of silly people who enjoyed this fluff. I was however surprised when I looked into the comments to read the Hated It categories only to find that their were none. I was shocked at this; I always look at the hated it's as their are always those who hate a movie no matter how good it is. Somehow this movie made it through unscathed by the haters I say nay to that and proclaim proudly that I HATE THIS MOVIE! I know I should go into detail about why I hate this movie but to do so would only grant this movie more respect than it deserves.,0 +6095,"Take this movie for what it is, not a remake, but a completely different approach to the same concept. It's not an epic like the original, it's more of a popcorn thriller. Visually, it's incredible. Everything else was just OK. <br /><br />For what it is, I think the movie is awesome, but I like everything Burton has done. People need to calm down and stop acting like it's the end of the world b/c of this movie. It wasn't supposed to be a remake, and it's not. <br /><br />The ending was cool. . I took it as a parallel universe.",1 +7539,"I actually quite enjoyed this show. Even as a youngster I was interested in all sports and that included horse racing. It was always going to be difficult to make a series based on racing corruption and at the same time get permission from the race tracks to record filming about this controversial subject. One episode I particularly remember centred around a horse expected to win a big race that looked a bit off colour. A syringe was found on the stable floor and everyone thought it had been drugged but nothing showed up in the blood tests. All too late they realised the horse hadnt been doped but had had its knee cartilage removed. Like running a car with no oil and the engine seizing up, the horse broke down with tragic consequences.",1 +11816,"What we have here is a damn good little nineties thriller that, while perhaps lacking in substance, still provides great entertainment throughout it's running time and overall does everything you could possibly want a film of this nature to do. I saw this film principally because it was directed by John Dahl - a highly underrated director behind great thrillers such as The Last Seduction, Rounders and Roadkill. I figured that if this film was up to standard of what I've already seen from the director, it would be well worth watching - and Red Rock West is certainly a film that Dahl can be proud of. The plot focuses on the overly moral Michael; a man travelling across America looking for work. He ends up finding it one day when he stumbles upon a bar in Red Rock County - only catch is that the job is to murder a man's wife. He's been mistaken for a killer named Lyle, but instead of doing the job; he plays both sides against each other and eventually plans to make a getaway. However, his attempts to escape are unsuccessful and he finds himself in a bad situation when the real Lyle turns up...<br /><br />John Dahl appears to enjoy setting thrillers on the road; he did it three years earlier with Kill Me Again, and again almost a decade on from this film with Roadkill. It's not hard to see why Dahl chooses this sort of location, as it provides a fabulous atmosphere for a thriller the likes of this one. Dahl also provides his film with a 'film noir' like atmosphere, as the plot mainly focuses on the central character and the word he is plunged into is full of dark and mysterious characters. The acting is largely very good, with Nicholas Cage doing an excellent job in the lead role, and getting A-class support from Lara Flynn Boyle, J.T. Walsh and, of course, Dennis Hopper; who once again commands the screen with his over the top performance. It has to be said that the second half of the film isn't as gripping as the first, but Red Rock West certainly is never boring and the way that Dahl orchestrates the grand finale is excellent in that all the central characters get to be a part of it. Overall, Red Rock West is a film that you're unlikely to regret watching. It's thrilling throughout, and you can't ask for much more than that!",1 +10600,"""The Lady in Question (1999)"" starring Gene Wilder is a well-acted mystery drama that reminds me of the old black-and-white Raymond Burr Perry Mason series. Both Perry and ""Cash"" kept me guessing right up to the end. There were many suspects with a motive for the murder, but I had no idea which character it would be.<br /><br />Gene Wilder has a special charming wit about him, even in his facial expressions and vocal inflections which make him perfect for the part. The portions of the movie which portrayed actors acting was done very well. I'm sure this is an additional challenge for the cast to pull off. I am not surprised to see that he did some of the writing for the movie. Even his singing was a delight. I like him in this role more than his former ""sillier"" roles like ""The Young Frankenstein"" and ""Willy Wonka."" I am hoping A & E will continue this series. They ought to call it something like ""The A & E Gene Wilder Mysteries.""<br /><br />The music fit the period. I enjoyed the cool live combo and the swing tunes. I was a little unclear at the beginning whether we were seeing a flashback or whether the action was taking place in that time period. And I do not agree that the inclusion of profanity is necessary to the flow of the script. To me, that always distracts.<br /><br />Overall, my wife and I thoroughly enjoyed this second in a well-crafted start in what we hope will be many others -- just like one of our other favorites: Raymond Burr's Perry Mason.",1 +14798,"A grade-Z horror filmmaker Carl Monson was one of the most prolific directors operating within the field of the low-budget gory mayhem.His movies are full of inept gore,laughable acting,boring sub-plots and woeful dialogue.A mysterious black clad figure is savagely murdering guests staying at the family mansion.Unfortunately this film is almost bloodless.You don't actually see the murders except with shadows and a few blood splatters.The pace is lethargic and the plot is rather uninteresting.The acting is merely competent,but the lack of gore and mutilation left me disappointed.A generous 4 out of 10.Just beware:do not mistake Monson's film with Andy Milligan's equally weak ""Legacy of Blood"".",0 +20479,"What kind of a documentary about a musician fails to include a single track by the artist himself?! Unlike ""Ray"" or countless other films about music artists, half the fun in the theater (or on the couch) is reliving the great songs themselves. Here, all the tracks are covers put on by uninteresting characters, and these renditions fail to capture Cohen's slow, jazzy style. More often, the covers are badly sung folk versions. Yuck.<br /><br />The interviews are as much or more with other musicians and figures rather than with Cohen himself. Only rarely does the film feature Cohen reading his own work (never singing)-- like letters, poems, etc. The movie really didn't capture much about the artist's life story, either, or about his development through the years. A huge disappointment for a big Cohen fan.",0 +3710,"The Sunshine Boys is a terrific comedy about two ex-vaudevillians who reluctantly reunite for a TV special despite the fact that they despise each other.<br /><br />The comic genius of two masters at work, George Burns and Walter Matthau are stellar! Some of the best scenes are when the duo is fighting over the silliest little trivial things! The material is fast-paced and witty, appealing to all ages.<br /><br />MILD SPOILER ALERT: There are some mildly sad moments toward the end of the movie that deal indirectly with the affects of aging that gives the film a soft, sincere, tenderness that shows to this reviewer that what the pair really need the most for success, are each other.<br /><br />If anyone loves The Odd Couple, you'll adore this movie. An excellent film!",1 +20925,"I actually saw this movie at a theater. As soon as I handed the cashier my money, she said two words I had never heard at a theater, before or since: ""No refunds!"" As soon as I heard those words, I should have just waved bye-bye to my cash and gone home. But no, foolishly, I went in and watched the movie. This movie didn't make ANYONE in the theater laugh. Not even once. Not even inadvertantly! Mostly, we sat there in stunned silence. Every ten minutes or so, someone would yell ""This movie SUCKS!"" The audience would applaud enthusiastically, then sit there in stunned, bored silence for another ten minutes.",0 +13609,"I was shocked by the ridiculously unbelievable plot of Tigerland. It was a liberal's fantasy of how the military should be. The dialogue was difficult to swallow along with the silly things Colin Farrell's character was allowed to get away with by his superior officers.<br /><br />I kept thinking, ""Hey, there's a reason why boot camp is tough. It's supposed to condition soldiers for battle and turn them into one cohesive unit. There's no room for cocky attitudes and men who won't follow orders."" I was rooting for Bozz to get his butt kicked because he was such a danger to his fellow soldiers. I would not want to fight alongside someone like him in war because he was more concerned with people's feelings than with doing what was necessary to protect his unit.<br /><br />--<br /><br />",0 +15465,"This is a horrible little film--and unfortunately, the company that made this short made several others. The short is essentially a one-joke idea that wasn't funny to begin with and may also offend you. It certainly made me uncomfortable watching very young children (most appeared about 2 years-old) cavorting about and pretending to be adults--in this case, a dancehall girl and bar room patrons. It's the sort of humor that you might be forced to laugh at from your own kids if they pretended to be adults, but I can't see anyone WANTING to see this--especially when a very young Shirley Temple is dressed in a rather slinky outfit and acts like a vamp!! And then, other kids act like adults in some rather adult situations. At the time, I am sure they were not trying to appeal to pedophiles, but when looking at it today, that is what immediately comes to mind! Because of this, this boring film ALSO creeped me out and I hope to never see it again!! Pretty strange and pretty awful.",0 +9994,"Those of you who know the group dEUS, know the lead singer Tom Barman. He directed this movie a bit like he creates music, it's a mix of everything. This is a comedy, though mostly absurd and cynical, a drama, none of the main characters have a happy life to say the least, and it does not really have a goal.<br /><br />The movie starts on a friday morning in Antwerp, Belgium, with scenes of several persons, some of them have nothing in common but they will come in contact with each other during the day and night. There are several main characters: a teacher who writes books nobody reads, a young researcher with a morbid taste of death and his sister, a gallery owner, two young men constantly in touch with the law, a man who works in a movie theater and two young women. Throughout the movie there walks a man who has something to do with wind. All characters have their troubles, with their family or friends or just with life itself.<br /><br />The movie is set in Antwerp and shows several beautiful shots of the city and the port. The events of the day are not easily explained, I advise to simply watch the movie, there is simply too much to tell. But I can say this, Barman has an excellent use of the camera and uses a lot of music (mostly dance music, not really rock) to set a mood, especially the party is filled with excellent music.<br /><br />This movie is an experience on itself, it will not leave you any wiser about life, perhaps only that you have to live it and not waste it, or have any false moral truths.<br /><br />In short, see it, it is definitely worth it!",1 +7298,"Forget that this is a ""B"" movie. Forget that it is in many ways outdated. Instead give writer-director Ida Lupino much deserved credit for addressing a subject which at the time (1950) was taboo in Hollywood. To my knowledge, this was the first film to address the subject of rape and the emotional and mental effects that that crime has upon its victims.<br /><br />Although much of the cast's acting is pedestrian at best, Mala Powers, who at the time was eighteen or nineteen, gives an excellent performance throughout as the traumatized young woman, Ann, who tries to run away from her ""shame."" Based on her work in this film, I'm surprised that she did not have a more successful acting career. Tod Andrews, too, has some fine moments as the minister who reaches out to help her.<br /><br />Ms Lupino, obviously working on a limited budget, was still able to create some memorable scenes such as the pursuit through the streets and alleys leading to the rape, and the police lineup following it. And, she created a bittersweet ending which left me wondering if Ann really could ever have a normal life again.",1 +19853,"It looks like the brilliant team of Shonda Rhimes outsourced the writing of this one somewhere offshore, maybe to the MediocreLand? ""PP"" reminds me any one of the many tedious, promising at first but predictable within 1 season David Kelly flicks (Picket Fences, Ally McBeal, and now Boston Legal). The crazy cases they get are so outlandish, they barely evoke sympathy or sadness. And that's what actually makes good medical dramas tick - dramatic situations you are afraid of, ""This could be me"" sentiment. They are not funny either.<br /><br />The actors are quite good, but the plot lines are dead and cannot be brought back to live. I'm a therapist, and let me tell you - Amy Brennan plays the most unbelievably incompetent, unethical, untrained therapist. Whoever writes her stuff flunked the ethics and the transference/counter-transference courses in Stanford. Somebody should give them a Code of Ethics to read (the episode with the nose-bleeding wife and the therapist's involvement in it). No therapists are that bad.<br /><br />Women yearning for men who have moved on - had been done to death, we've all graduated ""Sex and the City"". Addison in her youthful aggression towards the guy she likes - very age-inappropriate, looks so unnatural on a woman over 40, and this otherwise talented actress doesn't believe it herself and doesn't deliver it very well. The only successful/palatable developments are Addison struggling with her decision to move to LA, and the ""Voodoo Dr"" and his coping with widowhood.<br /><br />This concept might work with a whole new writing team.",0 +6664,"I really enjoyed this movie and it was a little difficult do that when your brother is making stupid comments in it ever 30 seconds. But this movie I enjoyed, mostly because I'm used to the usual HK action films. Most of the films like this are don't watch it for the story line, watch it for the mindless action. And mindless action is right. You get to see Jet Li Jump, spin, kick, punch, shoot, make impossible jumps and dodge countless bullets. It's true that this movie was released to a broader audience after Li was in Lethal Weapon 4. That is one of the reasons the ratings on this movie dropped. Most people were probably expecting to see a movie that was as polished as a North American film. But you need to remember most HK film budgets aren't nearly as high as a North American film, and the style in a HK action film is usually very different usually requiring in wire work in a lot of them. If you want to see a good action film you should see this just try to ignore the dubbing.<br /><br />My rating was an 8.",1 +23885,"Saturday Night Live, National Lampoon, and SCTV alumnus are all together in a sometimes funny sketch film.<br /><br />However, it is very interesting to watch now, at the start of 2005. Twenty years after this movie is supposed to take place, look at how many of their gags have become absolutely true: There is a mock movie trailer, that probably wasn't even clever at the time, for something called ""The Pregnant Man"" which came true with Arnold Schwarzenegger's dumb movie ""Junior"" There is a commercial spoof, that probably wasn't even clever at the time, for something featuring Sammy Davis Jr. and Jackie Onasis called ""Celebrity Wrestling"" which has now come true with a popular show called ""Celebrity Boxing"" There is a mock movie trailer, that probably wasn't even clever at the time, that features John Candy in a movie about a severed head. Watch this trailer and look how similar it's shots and plot are to Frank Hellenlotter's Basket Case!! And finally there is an ad for a late late show documentary about ""a dead dream, the only two left ..."" The name of the documentary is ... THE LAST HIPPIES! LOL.<br /><br />Four prophecies come true!",0 +1427,"Like Tarzan the Ape Man (1932), only more so. There's more of everything, more animals, more varied African tribes, and scenes in which the thought must be, if this was good with three or four lions, forty would be better. Tarzan wrestles with crocodilesthe the crocodile machine spins in the water like a rolling pin, around and around, jaws flapping. Tarzan can kill it with his ubiquitous knife if the blasted saurian would hold still. Tarzan kills lions and rhinos and a steadily increasing number of animals. His friends are real chimps, people wearing larger ape costumes, and elephants. In fact, they use Indian elephantsfar more friendly and trainable than African oneswith costume ears attached to their heads. The human story: another white man, worse than the rest, shows up to join with Holt to go after the ivory from the elephant graveyard. Tarzan won't show them the way, so the bad guy shoots an elephant so they can follow it to its deathbed. Tarzan intercedes, and the bad guy shoots himbut, of course, he survives and returns to save Jane. Everybody else dies, Holt and the bad guy and every single one of their ""boys."" People are expendable, especially Africans, and there doesn't seem to be much distinction between the black fellows who die because they work for the white men travelling through taboo country and those black fellows who kill them. This must be the last Tarzan movie before the Hays Code made Jane wear more clothes. There are a number of underwater scenes in which Jane swims nude, and though the light is flickering the movement and the glimpses are very appealing. Apparently one of Weismuller's friends from the Olympic swim team did the nude scenes, and not Maureen O'Sullivan. She, however, moves through the movie wearing the same sort of loincloth Weismuller wears (plus a bikini top), showing a splendid glimpse of thigh and hip. They still don't need to talk a lot. They sleep together and hang out with cool animals and stay away from cities. No wonder they're happy.",1 +3077,"Film is designed to affect the audience and this film left me speechless. Gorgeously photographed and well acted with dialog that approaches poetry the film involves lust, hate, murder, rape, theft and deception. It weaves an intense web that left me unable to take my eyes off the screen until the closing credits. The story is sweeping. It takes the audience from the atrocities of the Spanish Civil War to the human wreckage left behind. Roger Casamajor and Bruno Bertanzoni are two young actors who command the screen. Supporting players are excellently cast and lend a real sense of authenticity. Sets, lighting, scenery and cinematography are wonderful. I absolutely love the photography.",1 +17505,"I saw this film in its premier week in 1975. I was 13 years old and at that time I found it adequate and somewhat fun. I then came to discover the WORLD of Doc Savage through the Bantam novels of the old pulp magazine stories. I had no idea before any of this of the realm of Doc, but I fast became one of the most avid Doc Savage fans you could ever meet. I read (and still own) all of the Bantam books, I started going to comic book cons (along with Star Trek and Doctor Who and all manner of geeky fat kid events) and had a wonderful time with each adventure I took with Doc and the ORIGINAL Fab 5. Philip Jose Farmer's Book - The Apocalyptic Life of Doc Savage became a bit of a bible for me and to this day I have very fond feelings regarding my Doc phase. In so saying I have to admit now years later that this film really missed the boat. It is a film that did not know what it wanted to be when it grew up. The screenplay was infantile and bore little resemblance to the pulp story. These stories from the 30's were short and if one looked at Lester Dent's (AKA Kenneth Robeson) outline for writing them, they broke down into PERFECT 3 act dramas that screamed for screen treatment. One would have thought that with George Pal and Michael Anderson at the helm, it would have turned out better. The spoof elements miss the target and the more serious moments almost get there, but then fall short. It is interesting to watch though in that they hired second-string character actors (guys that had really been only bit players and extras before this film) who all acquit themselves very well. Paul Gleason of course has gone on to be a fine utility player in all facets of entertainment and Bill Lucking is a television perennial. All the rest have fallen off the map sadly. I do wish to own a copy of this film as it is the only movie version of my hero, but I fear I will not watch it much as it is too painful. I would say 0 but I give it 2 out of 10 instead for some of the period art direction (Doc's answering machine at the end was a nice touch) and the cast of 3rd stingers getting a moment in the sun.",0 +24838,"In the autobiographical coming-of-age tale ""Romulus, My Father,"" Eric Bana, of ""Munich"" fame, plays an impoverished German émigré struggling to raise his son, Raymond (Kodi Smit-McPhee), in rural 1960's Australia. The major obstacle to the family's stability and happiness is his wife, Christina (Franka Potente), who flagrantly violates her wedding vows by shamelessly shacking up with other men. Despite her highly unconventional behavior, Romulus refuses to grant her a divorce, masochistically torturing himself in the vain hope that she will one day return to him. It is, unfortunately, the good-hearted and good-natured Raimond who must bear witness to all this marital turmoil - and it is his memoir that serves as the basis for the movie (Raimond Gaita would later grow up to be an author).<br /><br />Even though I admire ""Romulus, My Father"" for what it is trying to do, I can't honestly say I enjoyed it, for while the film has some fine performances and serious intentions going for it, these simply aren't enough to counteract the dour storyline and funereal pacing, which leave the audience as despairing and depressed as the people on screen. A serious slice-of-life drama is one thing, but this unremittingly downbeat wallow in adultery, insanity and multiple suicides (let alone attempted suicides) is something else again.",0 +3541,"The big bad swim has a low budget, indie feel about it. So many times I start to watch independent films that have had really good reviews only to find out they are pretentious crud, voted for by people who are so blinded by the idea of the film and its potential to be provocative that they forget that film is a form of entertainment first and foremost.<br /><br />I do not know if The big bad swim has any message or higher meaning or metaphor, if it does then I missed it.<br /><br />From the get go BBS felt right, it was easy and warm and human, there were no major dramas or meaningful insights, I just connected with the characters straight off. And when, as with all good films the end came around I felt sadness at the loss of that connection.<br /><br />If you are looking for something big, or fast or insightful look elsewhere, look for a film trying to deliver more than it can. BBS delivers a solid, enjoyable, real experience and I felt rewarded and satiated having watched it.",1 +8182,"A really sweet movie that has some similarities to the 2001-hit ""My Sassy Girl"" but is able to enchant most of the time. The biggest applause should go to the two leads. Ha-Neul Kim is both sweet and quirky, Sang-woo Kwon is both attractive and rebellious. The chemistry between the two is very good.<br /><br />Director Kyeong-hyeong Kim uses some CG-inserts to pepper up the visuals and also offers impressive fight scenes in which Sang-woo Kwon can shine. I liked him a lot better here than in the highly overrated ""Volcano High"". And that boy has a future - those looks, those fight techniques, and a romantic lead. Not bad.<br /><br />Well, I can make it short: Nice film. My rating: 7/10",1 +9212,"WAR, INC. (2008) **1/2 John Cusack, Marisa Tomei, Hilary Duff, Joan Cusack, Ben Kingsley, Dan Aykroyd, Sergej Trifunovic, Lyubomir Neikov, Ned Bellamy, (Voice of: Montel Williams)<br /><br />A hit-and-miss-21st Century ""STRANGELOVE""<br /><br />John Cusack who co-wrote the script with Mark Leyner and Jeremy Pikser stars as a jaded hit-man named Brand Hauser who is burnt out but decides to follow thru on one final assignment by icing a Middle-Eastern oil minister named Omar Sharif (yes, not THAT Omar Sharif but you get the tone here from this misfire for a laugh) commandeered by the ex-Vice President of The USA (Aykroyd, Cusack's old ""Grosse Pointe Blank"" co-hort, doing a mean Dick Cheney manqué turn here), enlisting Brand to do the deed under the guise of a Trade Show Producer in mythical Turaqistan (read: Iraq/Afghanistan) for the American private corporation Tamerlane (read: Halliburton). <br /><br />While being briefed Brand is faced with a moment of clarity when he comes across intrepid journalist Natalie Hegalhuzen (Tomei) and eventually falls in love with her. <br /><br />Meanwhile Tamerlane is sponsoring the unlikely union of Eastern European teen sensation Yonica Babyyeah (a surprisingly decent Duff aping her own celebrity with tongue- through-cheek) and the idiot son of the country's leader.<br /><br />What follows is a bold attempt for a 21st Century black comedy a la ""DR. STRANGELOVE"" but for all intense and purposes there are sadly more misses than hits in this broad try for laughs amidst political message (an unjust war being outsourced by American capitalism, check!) <br /><br />While Cusack riffs on his Martin Blank from the aforementioned ""Pointe"" he does add some nice touches of his man in black (he does shots of Tabasco sauce to take the edge off), the rest of the cast plays catch up (except sister Joan who is a riot as the high-strung aide- de-camp for Hauser and has one of the film's funniest laugh-out lines: ""My mass communications skills are finally paying off"") for the most part. <br /><br />Cusack visited the Iraq War earlier this year in the 180 degree different ""Grace Is Gone"" and here he allows his political views wear on his sleeve ; while admirable overall the film's pace and rhythms are off largely no-thanks to first time filmmaker Joshua Seftel making his directorial debut here (and it is noticeable) except for maybe the well-choreographed fight Hauser is involved with Babyyeah's idiotic fiancé's entourage.<br /><br />A nice attempt yet a misguided failure ; maybe next time Cusack won't try so hard and let the idiocy of war speak for itself instead of doing the heavy lifting by himself.",1 +1346,"I enjoyed the innocence of this film and how the characters had to deal with the reality of having a powerful animal in their midst. The gorilla looks just terrific, and the eyes were especially lifelike. It's even a little scary at times and should have children slightly frightened without going over the top. Rene Russo plays her role wonderfully feminine. Usually these type of Hollywood films that take place in the past feel the need to create a straw-man villain but the only adversary is the gorilla. It's an interesting look at how close some animals are to humans, how they feel the same emotions we do, and yet how we really can't treat them just like people because they aren't. Not many films venture into this territory and it's worth seeing if you want to contemplate the human-animal similarity.",1 +9526,"My personal favorite horror film. From the lengthy first tracking shot to the final story twist, this is Carpenter's masterpiece.<br /><br />Halloween night 1963, little Michael Meyers murders his older sister. All-hallows-eve 1978, Michael escapes from Smith's Grove sanitarium. Halloween night, Michael has come home to murder again.<br /><br />The story is perfectly simple, Michael stalks and kills babysitters. No bells or whistles, just the basics. It's Carpenter's almost over-powering atmosphere of dread that generates the tension. Like any great horror film, events are telegraphed long in advance, yet they still seem to occur at random, never allowing the audience to the chance to second guess the film.<br /><br />The dark lighting, the long steady-cam shots, and (most importantly) that damn eerie music create the most claustrophobic and uncomfortable scenes I have yet to see in film. There is a body count, but compared to the slew of slashers after this it's fairly small. That and most of the murders are nearly bloodless. The fear is not in death, but in not knowing.<br /><br />The acting is roundelay good. PJ Soles provides much of the films limited humor (and one of the best deaths), Nancy Loomis turns in a decent performance and then there is the young (at the time) Jamie Leigh-Curtis. Her performance at first seems shy and un-assured, yet you quickly realize that it is perfect for the character, who is herself shy and un-assured and not at all prepared for what she is to face. And of course there is the perfectly cast Donald Pleasence as the determined (perhaps a little unstable) Dr. Sam Loomis. Rest in peace Mr. Pleasence.<br /><br />If the film has a detrimental flaw, it would be the passage of time. Since the release of this film so many years ago nearly countless clones, copies, rip-offs, and imitators have come along and stolen (usually badly) the films best bits until nearly everything about it has become familiar. Combined with the changes for audience expectations and appetites, one finds much of the films raw power diluted. To truly appreciate it in this day and age, it must be viewed as it once was, as something unique.<br /><br />Never the less, I have no reservation with highly recommending this film to anyone looking for a good, scary time. Highest Reguards.<br /><br />10/10",1 +4372,La Teta y la Luna is a symbolic spain film. Everything that in this film occurs has a symbolic meaning. It is totally different to the usual movie that one has access.<br /><br />This film is good but it will be good only for the people who want look for the meaning of everything in the film's tale. I must advice that this is not a sample film.<br /><br />Please enjoy!!!,1 +1889,"I've read most of the comments on this movie. I have seen this movie(and the whole prophecy series) many times with family members of all ages, we all enjoyed and it just made us meditate on what we already knew from reading and studying the bible about the rapture and end times. No one got scared or traumatized like I have read on some posts. The movie is just based on biblical facts. I have seen a lot of end time movies ""Tribulation"", ""Armagedon"" and so on and by far this one is one of the best in presenting bible truths. It may not have a lot of great special effects like todays movies but I believe it is a good witnessing tool. This movie and its prophecy series can be seen free at this website higherpraise.com, and judge for yourself. Blessings to all.",1 +24671,"I saw the movie as a child when it was released in the theater and it was so bad that it became the makings of a family joke. If the ranking had a zero, this movie would get it. The dinosaurs were awful. The storyline was ridiculous. The acting really doesn't qualify to be called acting. The only reason I even remember the name of the movie so well is because my family still talks about how BAD it really was.",0 +14378,"It seems to me that Stephen King's ""Bachman"" pen-name was a way for him to put out some of the grimmer, rawer, more mean-spirited stuff that he wanted to write without 'contaminating' his 'brand name'. If you look back at the ""Bachman Books"" (Running Man, The Long Walk, Roadwork, Thinner) you notice they have a sealed-in feeling of airlessness and hopelessness about them that is distinct from mainstream King. I realize that we are talking about the guy whose first novel featured a humiliated, blood-covered, emotionally crippled teenage girl slaughtering everyone at her high school prom...but mainstream King always at have characters and plot elements that leaven the grimness of the proceedings a bit, and mostly have endings that offer at least a glimpse of hope and human feeling. Bachman books are just plain mean and always end badly. (BTW, ""Pet Semetary"" could have easily been a Bachman book if King hadn't revealed the alias by then. And ""The Dark Half"" seems to be at least partially about his ""Bachman"" persona.)<br /><br />""Thinner"" was the last Bachman book, and man, with its themes of class warfare, revenge, and death by starvation, it is nasty. So it should be no surprise that the movie follows suit. <br /><br />What is a surprise is that the adaptation seems to be filmed at a ""TV Movie Of the Week"" level of talent instead of something worthy of a theatrical release. (These days, something like this would probably go directly to DVD or cable). The makeup work and the striking motif (starving to death in the midst of plenty, a metaphor for the overfed, undernourished American middle class if there ever was one) is all that keeps you watching this misfire. <br /><br />What went wrong? My first thought is that the director was going for the nasty Bachman vibe, but he also somehow sucked all the interest out of the movie with poor casting choices - the actors here (with the exception of Joe Monetegna) simply can't carry the movie. And then he squished the warmth and life out of the rest of the movie with awkward pacing and scene structure. Plus he couldn't leave the plot alone, and his changes don't really help. The script and dialog ought to work, but mostly the movie just lies there. Everything is muffled, dull, airless, and no fun to watch...with the vivid exception of the spectacle of the main character getting....thinner, and thinner, and thinner. <br /><br />As other have pointed out, ""Thinner"" is by no means the worst King movie ever made (or even the second worst). And it does have a dreadful, compelling fascination owing to the theme and the careful makeup work. But first time viewers should approach this one with lowered expectations.",0 +7198,"This movie has recieved horrible ratings from just about everyone who has voted here but i am here to say if you like movies like Dude Wheres my Car and Dumb and Dumber this movie is for you. If your into movies like Citizen Kane and Casablanca id have to sugest you in a different angle. Yet i still love this movie and everything about it even if it is kind of ""kiddy"" this is one of the few movies me and my freinds have been able to keep watching over the years and quote whenever possible. GREAT MOVIE. This movie should the AFIs number 1 because its so friggin' high class. The only problem with this movie is you may have trouble seeing it because it was a made for tv movie on a channel that no longer exists. So i dont know how to get this movie, id like to buy it for dvd but i cant find it anywhere. I still have it taped from when it was first on, you can come over if you want and watch it bute i might be sleeping. this movie rocks and thats basicly all you need to know.",1 +4894,"I wish ""that '70s show"" would come back on television. It was the greatest show ever!!! They should make episodes between the other episodes but of course that would be confusing. But I wish it would come back and make more episodes. Please come back... The show was absolutely hilarious. You couldn't laugh without seeing an episode. There is a really funny part in every episode and plus the show was so much better when Hyde and Jackie were going out with each other. Those were the best episodes. ""That '70s show is the best"".... It will be and always will be the best show ever. It was really sad when the show ended. They should make new episodes.",1 +2905,"He-he-hello!! This is a really fun movie. Basically, in Party Girl, you have your fun-lovin', independent, early 90's New Yorker chick. Along with her party friends, she meets a mature Turkish Vendor. It is a comming of age story for those new adults who are searching for what they want to do. It is comforting to see a female slacker develop into a mature woman. Hope is given to all of us slackers who might feel like their only skills are being able to maintain while hammered and a nack for throwing good parties.<br /><br />On a side note, Parker Posey makes this movie great. I have never been a great fan of her, but this movie makes me just want to watch all of her movies. There are subtle manerisms that perfected her character. If you want good laughs and a fun time, make sure to watch this movie. Repeated viewings are a must.",1 +6662,"Anyone who had never seen anything like the fight scenes in The Matrix has never seen this movie. The fight scenes were choreographed by action scene psychopath Yuen Woo Ping, who also did the fights in The Matrix. And the fight scenes are somethin.<br /><br />Li plays a supersoldier who feels no pain, who now lives a life as a pacifist librarian (ya got me). When other evil supersoldiers begin killing off local drug lords to take over the drug trade, Li teams up with his cop buddy to help stop them.<br /><br />There are some absolutely crazy things going on in this movie (one badguy gets his arm lopped off with a pane of glass and hardly notices). The fights scenes are filled with flying kicks and punches; the body count is way up there. Li has seldom been better, and he has surrounded himself with a bevy of beautiful female costars (Yip kicks some serious ass as a fellow supersoldier). Anthony Wong even makes a cameo as a drug lord (no suprises there; he makes a cameo in every HK movie). It's unfortunate they don't make action movies like this in the US; I wouldn't have to sit through all of these horrible dubbing jobs to see that action that I crave so much. Recommended.",1 +9809,"I need to be honest. I watched and enjoy this show because it was gross, offensive, hilarious, and raunchy. Yeah, there is a lot of humor for all tastes. If you are into the kind of humor that deals with making fun of people falling from skateboards, for example then you will have a great time for it.<br /><br />Or, if you enjoy people on extreme stunt actions going bad, you will also have a great time. And if you enjoy scatological humor and extreme situations oh , you will enjoy the show.<br /><br />I enjoy all three kinds of humor that ""Dirty Sànchez"" offers. I like to have a hard laugh with the situations of the show. ""Jackass"" is like a walk in the park compared to this one. So if you are tired of the typical American stupidity of Jackass, give it a try to English extreme stupidity on this show. With all due respect.<br /><br />This is a show that has little taste or class. It's not recommended for those who are easily offended or grossed out.<br /><br />Now, these guys need to see a psychologist. Specially the Paco character.",1 +5418,"What a fun movie experience! I was expecting a sappy kids movie and found that I enjoyed it more than my teens. Take a tissue, it's not sad, just 'moving' in parts. Finally, its a 'feel good' flick for the whole family. Note: It's 2+ hours, so consider leaving the littlest 'squirmers' home for this one. AP",1 +3547,"I had the opportunity to see this film twice at the 2006 Moving Picture Festival In Birmingham, Alabama. I enjoyed it so much that I watched it a second time when they had an encore screening.<br /><br />When I think of the films that are shown at festivals, I usually expect them to be edgy and offbeat, often with the feel of an elaborate student project. There's nothing wrong with these types of projects of course, and I enjoy the unique styles of independent films, but sometimes I want to see a more mainstream approach to independent film-making. By ""mainstream,"" I mean more like a film produced for national release - In other words, a movie that you would see in a regular movie theater.<br /><br />The writing, directing, cinematography, casting and acting in this movie are all totally pro. There is nothing typically independent about this film. As an aspiring director, I am always looking for movies that will motivate me to stop procrastinating and push harder to get my career going. This is one of those films. As I watched The Big Bad Swim, my motivation level was incredible. I felt like my adrenaline had kicked in. The reason I felt this way was because I was so impressed with every aspect of this production. I left the theater excited and ready to start writing that long put-off project. When a movie makes me feel like that, I know it's really good. This is the first feature-length project from Ishai Setton and I found myself wishing that It had been my project. For me, that's really rare.<br /><br />See this film. It's beautifully shot and directed, and the casting is excellent. Paget Brewster delivers a very believable and likable performance. She has a quality about her, a charisma, that really draws you in and keeps you focused on her any time she is on screen. She makes you feel like you know her personally as a friend. That's a gift. I think the industry is really missing out by not utilizing her acting abilities more often. Jeff Branson and Jess Weixler also did top-notch jobs. I can not say enough nice things about The Big Bad Swim. I look forward to future projects from all of those involved in its production.",1 +12724,"This is a typical ""perfect crime"" thriller. A perfect crime is executed and the investigating police officer, ignoring all the clues, immediately knows who guilty is. The audience has to wait around the whole movie for the guilty to be caught. The result is like every single episode of ""Columbo"" or ""murder she wrote"". The director himself refers to the hackney story by showing the police officer watching an episode of Matlock! This story barely fills up 90 minutes but the director insists on using all 120 minutes filling with every cliche in the book. Skip this one, you are not missing anything.",0 +13553,"I go to the cinema to be entertained. There is absolutely nothing entertaining about this film. From beginning to end, there is no respite from the gray, grinding reality of this woman's life. It is one-paced, with no change of mood. I remained until the end only because I was convinced that things must get better. They don't, and I don't think I was the only one, as evidenced by the many groans ringing around the cinema as the film drew mercifully to a close. Honestly depicting social depravation is no crime, but boring your audience to groans is not the way to win the sympathy of the public. A dreadful film.",0 +24371,"I had never heard of this one before the owner of my local DVD rental outlet mentioned it to me; being a 1980s horror flick with the notorious distinction of having been banned in the U.K., I decided to check it out. The film turned out be a dull, amateurish and ugly-looking ride; the sound recording is so poor that dialogue is unintelligible half of the time, whereas the acting gives new meaning to the word inept! <br /><br />What’s worse, the film follows the awfully tired formula of a trio of teenage girls being involved in an accident and finding themselves sheltered by a dysfunctional family living in remote surroundings. Soon, one of the girls goes to look for help and is never heard from again; another, still bed-ridden, is quickly disposed of (after being forgotten for most of the duration). The heroine is the one to interact the most with the three inhabitants of the house: a harridan of a bible-thumping mother (cue horrendous overacting), her repressed (and long-suffering) daughter, and the latter’s weirdo brother who occasionally appears on the scene to drool over the sleeping female guests.<br /><br />Often resorting to dinner-table reminiscences by the man-hating mother (as a means of filling in the dreary, to say nothing of unoriginal, backstory) and which invariably develop into mother-daughter sparring contests, the film does have one ace up its sleeve – the twist ending is as unexpected as it is ingenious, but it does little to remove the bad taste left in the mouth by the film (as much through the lameness of it all as the intermittent gore) or the inescapable feeling of having wasted 80 minutes of my time...",0 +11127,"I saw this movie a million years (5 years to be exact) ago for the first the time. In the light of recent events with the Australian woman Schapelle Corby being imprisoned in Indonesia for so called smuggling pot, I decided to watch this movie again. I excepted to cry my heart out, 'cause I'm sucker for hot girls in need (just read my review of 'the stalking of Laurie Show'). Some moist escaped my eyes, but it were hardly buckets filled with tears. Why? Not because the two heroines weren't utterly adoring and helpless, not because the movie wasn't heartbreaking at the sight of these two kids in the prime of their live locked up in almost inhuman conditions. Why then? Why did I not cry? I wanted to cry! When I rent a movie like this, I except to be moved, to sob like there's no tomorrow, to feel miserable and like it. This movie was simply too short to do this. It was just like the script was reduced to the main plot elements, and while doing this the psychological aspect was thrown aside. Clare Danes and Kate Beckinsale did an excellent job portraying the emotions of the two friends, but this movie just screamed for more footage of these girls in their depressing (and oppressing) surroundings. The mental journey is missing here for some reason. You only get to see the key moments of it (which are very touching, I admit), probably because of bad editing. Sometimes I felt these girls were walking around in a postcard. The relationship with the family members could also have used a bit more attention. What's up with the relationships between the girls and the parents (especially between Alice and her dad)? You catch a glimpse of it, but the film doesn't quite offer the whole picture, sadly enough.<br /><br />Nonetheless this was a great movie, and at the end I even had to bite my lip a bit. But I guess this has more to do with the acting skills (and the looks) of the actresses (and the music) then with the merit of the director. To be honest, I hardly knew who Kate Beckinsale was before I watched this movie (again). Now, I am a fan! Great movie, as long as you don't expect it to be classic cinema.",1 +17604,"I should preface this by stating that I am a Dolph Lundgren fan. The man turns out some of the funniest action clichés imaginable and Detention is probably my personal favorite. *Spoiler* even though there is no such thing as a Dolph spoiler since the scripts are so absurd to begin with: a chase scene with a handicapped kid carrying a pistol versus a guy on a Harley with a sub-machine gun, through a high school hallway and the kid wins? Good game, the Oscar goes to Detention. Dolph, if you're reading this, thanks for the laughs, old friend.<br /><br />In summary: Terrific movie that is a guaranteed laugh. I recommend inviting some friends over for this and forcing them to sit through it. Hilarious.",0 +4744,"'They All Laughed' is a superb Peter Bogdanovich that is finally getting the recognition it deserves, and why? their are many reasons the fact that it's set in new york which truly sets the tone, the fantastic soundtrack, the appealing star turns from Ben Gazzara, and the late John Ritter who is superb. and of course no classic is complete without Audrey Hepburn. the film is a light and breezy romantic comedy that is very much in the vein of screwball comedy from the thirties, film is essentially about the Odyssey detective agency which is run by Gazzara who with his fellow detectives pot smoking and roller skating eccentric Blaine Novak(the films co-producer) and John Ritter, basically the Gazzara falls for a rich tycoon magnate's wife(Hepburn) and Ritter falls for beautiful Dorothy Stratten who sadly murdered infamously after production, 'They All Laughed is essential viewing for Bogdanovich fans.",1 +18972,"At first glance this documentary/fiction/cartoon is quite entertaining and thought provoking. Of course, when something provokes thought, it can then be scrutinized. The reality is this movie combines metaphysics with innuendo and baseless conclusions. The link that ""What the Bleep..."" would have you see between science and spirituality is, in fact, not rooted in science at all. The Transcendental Meditation study mentioned in the film claims that meditation by a group can reduce crime in a given area, Washington D.C. in this case. In reality the HRA (Homicides, Rapes, and Assaults) crime rate was about 30% higher in 1993 than the average crime rate between 19881992. There was absolutely no decrease in the homicide rate during the study. In fact, each and every claim that links metaphysics to science can and has been debunked.<br /><br />My conclusion from this information is that this movie is either a poor attempt to indoctrinate people or a joke. Either way, I suggest that you do not waste your time.<br /><br />If you are looking for a long winded movie about science that could provoke thoughts, you might consider Mindwalk (1990).",0 +1475,"This movie is great. If you enjoy watching B-class movies, that is. This is a classic college 80's slasher movie, in which one song is played throughout the entire soundtrack. A horrible film, but worth renting to make fun of, or just to watch old men pop out of closets with knives. Kinda funny, if you ask me.",1 +21161,"The old axiom that bored people are boring people is well demonstrated in ""Women in Love."" The script, taken from D. H. Lawrence's novel, contains an endless flow of concepts that are, at best, sophomoric.<br /><br />What a pity so much effort went into so vacuous an exercise; what an empty array of characters given such attention. In spite of high production values, this film comes across as tedious as its personnel.<br /><br />A revisit in 2001 merely confirms a 1969 impression of juvenille minds in adult bodies, dawdling nowhere, and fumbling every step of the way.",0 +536,"Yes this movie is predictable and definitely not award-material. But then it doesn't try to be anything it is not. A fun-filled romp with real funny one-liners, a stellar and very funny performance by Peter O'Toole, a grounding and down to earth performance from Joan Plowright. The band's performance was on the spot, each one playing their role in a deft, comical manner. The music was good though not great but filled out the movie nicely. From some of the negative comments I deduced that the subtlety of some of the humour went over their heads. A good example is the comment about the ""strange baseball-like game"", well my dear American, that was cricket -from which baseball is derived- and the explaining of it to the ignorant US band was very funny for those that do know cricket. Also no, you were not supposed to wince when Carl broke a window; it was funny how Lord Foxley said ""oh yes!"" to get more money for breakage and the manager said at the same time ""oh no"" also referring to the money. Jeez, it seems that every joke must be explained to some people... All-in-all I enjoyed it and had some great laughs! Well worth seeing.",1 +16451,"I find myself wondering what the people who gave this a 10 saw in it that I didn't. This movie has a VERY hard time following and/or staying to a plot. If someone tells you it's a comedy, don't be fooled, it's about 98% percent odd-drama and 2% comedy. All actors turn in a great performance, that cannot be denied, however it seems like it really lost something somewhere. Don't know if the original script was good and it had to be edited down or what. This had potential, and instead it was really a flop. I would really like the hour and a half I invested in this movie back, but the video rental place doesn't do returns on time. Save your money and see something else.",0 +16427,"Well that's 90 minutes of my life I won't get back. This movie makes teen tv show ""California Dreams"" look like ""Almost Famous"". The acting was horrid and storyline unrealistic. Don't even get me started on the actual band at the forefront of this story, lame songs, look etc.. You had to believe that they were one of the hottest bands in the country, and there isn't enough irony in the world to accept that one. The guitarist is seen to be a heroin user, not that I blame him, if I was around such a putrid band with stale songs and wooden acting I'd be injecting the horse too.<br /><br />If you take music remotely seriously, avoid this at all costs.",0 +15252,"I had to give this film a 1 because it's that bad, but don't make this think that I didn't enjoy watching, because I laughed and laughed, and I even had a few questions. So half of the time I was laughing, half of the time I was saying ""what in the hell is going on?"" or ""why would someone do this?"" et cetera. I mostly enjoyed the terrible fog effects, the 80's style nude scene/battle/dialogue/nude scene, and the way that the warrior's swords flap in the wind when they ride their horses. And there's some crappy model effects (those aren't supposed to be real trees, are they?) and I still don't understand this guy that they find in the cave, what in the hell is he? A friend of mine told me about these movies and I thought I would give em a try, and I basically liked the film as people like Ed Wood films, I have no real enjoyment of what the film was meant to be, I look at it in my own hilarious way. So don't let this distract you if you really thought this was an action movie, it is, I just liked it for other reasons. It's much, much worse than Evil Dead, so it can actually make you think as though you are wasting your life by watching it (which came into my mind a few times). I guess the best thing for most people would be to have a few drinks, have some friends around, and laugh at this film. Maybe this is a bit harsh, but I don't think so, rent it and you'll see. Yo.",0 +22275,"If Edward Woodward was the the flicks watching this film then that's what he would scream out in horror. <br /><br />I'm sorry folks but enough's enough. We had Get Carter, The Italian Job, Alfie and now this. What's the similarities? No. It's not exactly a coincidence that three of the originals star Maurice Micklewhite and the other stars another great British actor. The main common ingredient in those originals IS the britishness of the films. They weren't made to impress Hollywood. They were quirky English films with a unique charm/atmosphere that just cannot be replicated in the USA. The word is CULT and what better way to destroy a cult film than to bastardise it with a remake or even a sequel. <br /><br />Wicker 06 had a tough task before it even hit the road. Wicker 73 is even more enigmatic that other said cult films; it defies genre, intelligent scripts, A-grade actors, the music score, set-pieces that defy description and all the stories surrounding the film.<br /><br />So here comes a remake. Don't worry. No originals were harmed in the making of this remake. Some major aspects of the story needed to be reworked for the modern USA - communications, paganism, virgins. But that's just about the whole premise. So we give the cop a Nam style trauma past complete with shock music flashbacks for the cheap scares. Then with no mobile phone mast on the island that sorts the communication out - but in the real world this wouldn't happen. Cops just don't go missing. Give him a blood link for motivation rather than the clash of beliefs and you have the remake. Wafer thin though, isn't it?<br /><br />It's just that it was all laid on with a trowel. The name alterations were simply hammy, almost Carry On, there was no sense of community on the island, no centre of town to catch your bearings, just a few houses dotted about a forest and that was it. Willow was just annoying by not giving out any info at all and Cage was useless to let her get away with it. When he went into the well you just knew he would get locked it. The screenplay was signposted all the way to the end - and you just wanted it to hurry up and end. The epilogue was absolutely hilarious and didn't know when to stop. <br /><br />That ending is probably the best way to summarise the difference between the two. One ends in the most beautiful sunset after the most horrific day. The other ends with a post-production explain-it-all-to-the-thickies type conclusion.<br /><br />I loved the original but went to the cinema with an open mind and was excited to see the film. I left thankful in the knowledge that this film will probably end up beneath a highway somewhere only this time mercifully forgotten forever.",0 +18872,"What the hell was all that about? I saw The Matrix and was amazed. It was the most spectacular movie ever made. What ever possesed the Wachowski brothers to do this film is beyond me.<br /><br />There is no plot, you can't argue with that. Basically all this film was was a load of talking, and don't get me wrong, I have no problem with talky films, but all the talking in The Matrix Reloaded was a pointless load of drivvle. Then there would be a fight sequence which lasted WAY too long, then more pointless drivvle, then another fight scene that lasts too long and it all builds up to the biggest anti-climax ever. A little bearded bloke talking a load of uncomprehensible bull for 20 minutes.<br /><br />Also, Keanu Reeves gives his worst performance yet. I knew he wasn't a good actor but this was beyond a joke. If you watch his films in the order he was in them it would seem he got gradually worse as they went along. God knows what his performance is like in Something's Gotta Give! Keanu Reeves: The only plank of wood ever to become an actor.<br /><br />After the splendor of the first film this came as a massive dissapointment. If you haven't already seen the first film I suggest you watch it, but don't waste your time with this utter pile of turd.<br /><br />",0 +2885,"Huge, exhaustive and passionate summary of American cinema as seen through the eyes of Martin Scorcese. Needless to say, there is never a dull moment in all of its 4 hour running time. Many genres, periods and directors are all examined, discussed more from the perspective of cinephile rather than contemporary director. For anyone even remotely interested in American films, or cinema in general. A masterpiece, and the best of the BFI's Century of Cinema series.<br /><br />",1 +14587,"Nope, I am just not going to get with it here. I refuse to go along with the program. Don't you supposed that perhaps this movie is just a tad over-rated? Look at the reader comments and their star ratings: Most are 6/10, 7/10 or better. I think this is an instance when the ratings may say more about the people rendering them than the movie itself, which is unique. How many other sex fantasies about simulated bestiality complete with horse couplings have become mainstream hits as catalog DVD titles? I watched this movie with a pervading sense of anticipation, expecting fireworks, and instead got someone popping a Gucci shopping bag. It looked great, but once the thrill had been spent even the twist ending didn't do much to save it.<br /><br />The film's background story says it all: Director films about 25 minutes of borderline hardcore fake bestial sex for another movie, is informed the footage will not be appropriate, sets it aside, waits two or three years for a smattering of critical acclaim to build up, then constructs an entire feature around that 25 minutes, filming roughly 70 minutes of otherwise unrelated, excruciatingly boring footage and inserting the 25 minute chunk in as a dream sequence. That the 25 minutes of film in question is strikingly odd, original and shocking in a deliberate, calculated manner goes without saying. But we aren't here to evaluate that 25 minutes alone, we must consider the entire film, and ask ourselves why people are so enthusiastic about the movie? Or are they just enamored by it's background story and history of having been banned by people who were stupid enough to be offended by it?<br /><br />Perhaps it is an anti-clerical agenda that appeals to them. Hating the western religions of catholicism and Christianity is one of the few remaining socially acceptable bastions of intolerance -- Just today it was revealed that the BBC routinely skews their broadcasts with anti Christian & anti Western sentiment in the furtherance of political correctness. You can say anything you want about the Bible, pedopheliac priests, the institutionalized cruelty of the church, and how much white men and their inhuman religions suck the dimpled skin off a golf ball ... But say one negative thing about non-westernized religions, and you are toast. This movie was tailor made for such a sentiment, with a wrinkly old dried up priest who has an entirely unwholesome on screen relationship with two pretty 14 year old French boys complete with inappropriate touching, fawning, fondling, fumbling, groping, and patting of the backsides. Ewww.<br /><br />And then there is the horse couplings, photographed in such fetishistic closeup detail that portions of the film could be used as visual aids for a biology class on animal husbandry. Yes I understand the thematic relevance of the imagery -- large animal phallus's with a wealth of reproductive fluids just waiting to be unleashed like fire extinguishers -- but if I wanted to watch horses, you know, do it, I would like go live on a farm. Having their genitals in my face is about as entertaining as watching someone use a bathroom.<br /><br />Is this movie just a sort of artsy diversion for social deviants? Probably, though I will grant the artistic execution of most of it, filmed in a kind of arty Euro detail that even has a dappled forest pond right out of a Monet painting, complete with a spanning arched bridge. And the ending (which even I managed to be surprised by) does sort of wrap it all up into a neat if distasteful package. But you have to remember that there are certain things that cannot be deconstructed for their design elements and many artists are guilty for exploiting them in their work to lend a sort of gravitas that would not have been achieved without it. That isn't fair, and even Clint Eastwood has fallen prey to the urge with his new movie about Iwo Jima. Whether or not his film is any good stands as a separate consideration from whether or not that battle was a noble cause fought by men who were heroes. The problem is that most people will not be able to separate out the two aspects of the movie and will be lining up to give it Oscars because of it's noble message -- not because it is a particularly good or original movie.<br /><br />While it may seem like an odd parallel, I see one with THE BEAST: How can anyone not see the basic beauty of nature in the sight of two horses mating? And who cannot see the logical culmination of the repressed sexuality from fairy tales in the film's explosive set-piece where Beauty and the Beast finally do the nasty? Somehow I managed to miss both points, and am delighted that I have seen this film so that I can trash it as being what it really is: 25 minutes or so of eye opening over the top adult fairy tale imagery surrounded by 70 minutes of skull drainingly boring artsy-fartsy Euro Trash dreck about some guy getting a haircut, and a great ending. It's art for sure, but it sucks hard.<br /><br />3/10",0 +2842,"I must say that I really had no idea that I was going to sit down and watch this movie. I guess it was the fact that I had nothing better to do between class. But, for once a TV movie caught my interest. More importantly Helen Hunt caught my eye. I really wasn't a big fan of hers prior to this film. Sure I liked Twister and As Good As It Gets. But, something about this movie really did it for me. I would now see myself as a huge fan. This movie comes with high marks from...me. Give it a chance, it won't let you down.",1 +13977,"The point of the vastly extended preparatory phase of this Star is Born story seems to be to make ultimate success all the more sublime. Summer Phoenix is very effective as an inarticulate young woman imprisoned within herself but never convincing as the stage actress of growing fame who both overcomes and profits from this detachment. Even in the lengthy scenes of Esther's acting lessons, we never see her carry out the teacher's instructions. After suffering through Esther's (largely self-inflicted) pain in excruciating detail, we are given no persuasive sense of her triumph.<br /><br />The obsessive presence of the heroine's pain seems to be meant as a guarantee of aesthetic transcendence. Yet the causes of this pain (poverty, quasi-autism, Judaism, sexual betrayal) never come together in a coherent whole. A 163-minute film with a simple plot should be able to knit up its loose ends. Esther Kahn is still not ready to go before an audience.",0 +24634,"While most of the movie is very amateurish, the Kosher slaughter scene is played up, but not untrue. Kosher law says that an animal must be conscious when the blade touches it's skin. The Kosher slaughter scene is accurate as anyone knows who has seen one, or has seen the Peta film showing a Kosher slaughter, in which the animals throat is cut, and the esophagus cut out while it is still alive, conscious, and obviously suffering. We must remember that history is written by the victors. Is one even Allowed to even THINK that maybe the Nazis were right??<br /><br />Doesn't it say anything that the Nazis had outlawed this vicious religious slaughter, and the Jews are still practicing it even today?",0 +7117,"I agree with many of the negative reviews posted here, for reasons I will go into later on. But this miniseries is powerful and convincing because the talented cast really captures the dark truth of Hitler's world.<br /><br />Peter Stormare is perfect as Ernst Rohm, the brutal Brownshirt leader. Each scene he has with Hitler is explosive! Hitler is so evil he dominates everyone but the thuggish, primitive Rohm -- and he clearly digs Rohm for just that reason. The interplay between Stormare and Carlisle illuminates the way Hitler relished Rohm's brutality, but later sacrificed him for political reasons.<br /><br />Jena Malone turns in a heartrending performance as Geli Raubal, Hitler's doomed niece and the victim of his unspeakable perversions. Without revealing any of the sexual filth directly, Jena Malone plays out all the horror of the slow extinction of a young girl's spirit. She uses her eyes and voice to suggest all the horror that will be visited on millions in the years to come. And she's brilliant! Zoe Telford very nearly matches Jena Malone with her portrayal of Eva Braun. Eva is clearly sick, cruel and heartless -- but at the same time almost pitiably dependent on her Adolph's twisted tenderness. The aborted lovemaking scene between them (hinting at the spine tingling truth of Hitler's enormous self-loathing) is both chilling and erotic.<br /><br />Liev Schrieber gives a deliciously weasel-like performance as Putzi Hanfstaengel, the spineless man-about-town who is seduced by Hitler's promises of wealth and power. While a brute like Rohm simply loves the idea of crushing skulls under his boots, Schrieber's character is one of many Germans who abhors Nazi violence but can't resist the quick and easy route to money and power. His weak-willed fawning over Hitler soon loses him the respect of his wife, played with style and sensuality by the stunning and regal Julianna Margulies. They provide a true portrait of marriage and betrayal.<br /><br />These performances carry the mini series along, easily overcoming occasional weaknesses in the script. There is one exception. Regrettably, Matthew Modine's acting chops just aren't up to snuff. His noble lunk-haid journalist ruins every scene he has -- the viewer can hardly wait for Rohm's brown-shirts to stomp that smug, righteous look off his ignorant, corn-pone low-rent Hollywood golden boy face. But the story still works.<br /><br />Now in regard to the factual inaccuracies of the script -- Hitler's perversions and cruelty are rendered in a vibrant, compelling drama. But the battlefield record of Corporal Hitler is badly distorted. As if afraid the audience can't handle the idea of evil and courage in the same person, the writers make Hitler look like a whining coward who ""begged"" for an Iron Cross. As if anyone in the Kaiser's Army could get a medal just by whining about it! The movie makes it look as if Hitler were a coward in the trenches, when he was a fearless soldier. They also suggest his comrades despised him, when in reality he was widely admired by officers and enlisted men alike. The depressing thing is that the mini-series succeeds so well in representing Hitler as a monster in honest ways -- but they just couldn't resist the cheap shot.<br /><br />All in all, however, Hitler: RISE OF EVIL is a soaring success highlighted by powerful performances.",1 +19069,"This movie was just down right bad. I love war movies and can normally come away from most movies and find something that I liked,but this was not one of them. This movie lacked substance and intensity.OK I get it, the Finns put up one hell of a fight and thats great, but the story is poorly told. You don't have any real connection with any of the characters and there's no real story line to follow. You just go from one random scene to another, nothing flows to form the story that is trying to be conveyed. If you want a war movie that will keep you riveted, and amazingly enough without battles scenes, then I would suggest ""Downfall"" (WWII German film). Or if you prefer a great story line and a lot of action then I would suggest ""Brotherhood of War"" (Korean war/Korean film). These two movies will not let you down as Winter War will.",0 +10761,"Not only was this movie better than all the final season of H:LOTS. But it was better than any movie made for TV I have ever seen!<br /><br />Looking at the ""Top 250"" I see that only one small screen movie has made it: How the Grinch Stole Christmas. I think it is time to increase that group to 2.<br /><br />I will admit that the original series had several shows that were better than this, but I didn't mind. I just LOVED being able to enter the world of the Baltimore Homicide Squad again!",1 +10840,"Well you take O.J. Simpson as a all american soldier turned all american bus driver who decides to rescue his passengers on his own just incase no one else is going to and Arte Johnson in an absolutely straight role as the tour guide who doesn't know what to do but doesn't want to admit they are in trouble and combine it with Lorenzo Lamas as one of three baby faced bad boys who intend to kidnap an heiress and leave a busload of people to die on the dessert and you have got to have action, plot twists and a lot of drama. Everyone was good but seeing Lamas as the baddest of the bad boys really blew my mind. He was much too believable as the overbearing bad guy who not only wanted to kidnap the heiress but rape the women and humiliate the guy who tried to stop him. This was evidently long before he cultivated his good guy image. And believe me a 20 year old Lorenzo in tight jeans you really don't want to miss!",1 +21479,"I would of enjoyed this film but Van Damme just does the same old same old rubbish time after time. Poo knickers fight scenes as per usually. The only thing this loser left out was the Russians normally end up being killed in the end. This film is utter doggy do do of the highest nature, please please please Van Damme get some acting lessons, you need them. Anyone who likes Van Damme has issues, It seems sad that the only way Van Damme ever gets any acting work is when he co writes the film, co produces the film and does the screen play for the film. AVOID VAN DAMME AND HIS SLICKED BACK NASTY WIG. I give this film a two out of ten, because the one with the the sandman was better. To add insult to injury I wasted a quid on this manure",0 +13620,"I bought this at tower records after seeing the info-mercial about fifteen hundred times on comedy central. I was actually really looking forward to watching this. My god where did i go wrong? Now before i give my review let me just say that i am a person who can pretty much find the good in all movies, hell i own over 1,500 dvd's! With that said, the underground comedy movie ranks up there with the worst film i have EVER seen. I tried to give it a chance, but not only was it not funny. It had no point, did not offend what-so-ever and was all around stupid. God who in their right mind thought these pieces of crap were funny? this is going right to the bottom of the bin...",0 +21393,"Maddy (Debbie Rochon) is a mentally unstable young woman with a troubled past who gets more than she bargained for when she goes to a pool party with a handsome coworker. When her date and his friends jokingly say they belong to a `Murder Club,' Maddy takes it seriously and moves straight up to `Level 3' by bashing in the brains of a woman in a parking garage (for denting her car!). But is Maddy also the one donning a plastic mask and killing off other members of the group or has someone else lost it?<br /><br />The plot of this film (originally titled MAKE 'EM BLEED) is very poorly conceived, full of holes and spirals completely out of control before a ludicrous, out-of-left-field twist ending. Some of the dialogue is downright laughable. I didn't have a problem with Rochon's performance, but the supporting cast was atrocious. However, I managed to sit through this Full Moon release thoroughly entertained. There's plenty of skin and blood and it's the perfect type of flick to sit around with a group of your buddies and pick apart. Horror fans may also enjoy the cameos from Brinke Stevens and Lloyd Kaufman (as Debbie's parents) and Julie Strain (an early victim).<br /><br />Score: 4 out of 10",0 +7303,"There are a number of things that are not correct, although this is not too important since what happened to whom and when is still in dispute. The most blatant liberty with the facts I think is when they start to play at Bruno Koschmidder's Kaiserkeller, when in fact they played at the Indra and moved to the Kaiserkeller later.<br /><br />I agree with Semprinni20 that the film was biased in favour of Pete Best's version, but if he is the story consultant then I guess he calls the shots. I also agree with Semprinni that the recordings Pete Best plays on say the last word on the subject of why he was fired.<br /><br />Although the film is not such a lavish production as the later film ""Backbeat"", I prefer this film because it is more accurate, and because it has a better script with deeper characterisation.<br /><br />There is plenty in the film that is quite substantial - such as Brian Epstein trying to hide the fact that he has been ""queer-bashed,"" only to find out that the band knew he was Gay all along. Little touches like the band going into a café and ordering ""Corn-Flakes mit Milch."" My favourite scene, which does have some bassis in fact, is where at an audition Stuart Sutcliffe has just bought his bass guitar but can't play it, so he stands with his back to the impresario and tries faking it, but gets caught. That's rock 'n' roll.<br /><br />Well worth watching.",1 +5325,"I won't try to speculate as to what Brando was attempting. At his best he turns in such oddball performances, insinuating so many things at once, that it doesn't seem he does anything so much as play by unfailing instinct. Often it seems he is calling attention to some favored aspect of his character over all others, a concentration which, if followed, turns out something of a red herring, as he turns out subtler, craftier than at first appeared. This is a mastery of artifice, not naturalism, as might be associated with the Method. The role of Sky Masterson, as Mankiewicz so wonderfully realized, seems tailored for him, which is to begin with odd, and odd still at the end, because whatever it is Brando has done, he has managed a grace maybe all his own, but a consummate grace nonetheless -- again, odd, coming from an actor with limited musical ability, not ever before or after associated with the musical comedy. Jean Simmons, also oddly cast, is not quite as impressive, but certainly above just-adequate, really delightful in the Havana sequence, and never less than enjoyable throughout. <br /><br />And yet...perhaps because actors are both so concentrated on what it is they are doing, and characters on what it is they intend of each other, there doesn't seem to be the lovers' ""chemistry"" brought up so insistently more than once. Brando/Sky Masterson and Simmons/Sister Sarah respectively feed off one another well enough, but I for one don't see more beyond that. In a movie this outrightly dazzling and entertaining (and most everything about it, craft-wise, is just that -- dazzling), that lack would seem something tactfully and easily overlooked, but so much would depend upon true chemistry! An, at least partial, transformation of the characters through such chemistry, would lend something positively moving to the final scene. As it is, one leaves this film certainly delighted, but not really moved, except in a way as to negate the trueness of the union. Note Sister Sarah marries in her missionary's uniform, Sky Masterson in his same natty man-about-town duds rather than wedding tux. And they have changed back to those from their previous scene!<br /><br />Funnily enough (that is, insightfully), the most touching, and most serious, scene is, I think, between Brando and Vivian Blaine, as Sinatra/Nathan Detroit's doll, Adelaide, the only scene where these two are exclusively together, not least because there is just no hint of flirtation between them even though it takes place in Adelaide's dressing-room while Adelaide is about to change. Though one may submit there is no place for that, Sky really is the type to ""check out"" Adelaide in this sort of circumstance. He is even there to tell Adelaide Nathan will not be meeting her to elope. Adelaide and Sky are both true in their respective ways to Nathan, even piteous of him, as is demonstrated through a tone in their exchange. Adelaide is of course also frustrated and disappointed, but her anger is mitigated by her deeper feeling for Nathan, as Sky is admonishing her that she can't love a man and then wish him to be someone else.<br /><br />Guys and Dolls is another turn at the battle of the sexes, around the themes of gambling and salvation. Since both the compulsive gambler and the salvation seeker are more or less unconsciously courting despair, there just may be a dark secret deliberately behind Brando's and Simmons' lack of chemistry. After all, that lack may well denote an excess of narcissistic preoccupation (echoed by the Sinatra/Blaine pairing, though with considerably less self-deception involved), which might explain Brando's and Simmons' odd, rather provoking, interpretations of Sky Masterson and Sister Sarah. I realize Simmons may be mostly depicting coldness and skepticism, but Brando, though playing to confront her, isn't exactly heated and eager, and is more than keeping his distance -- he's also assimilating it, keeping his balance through it. His boldness consists in merely playing against her -- the trip to Cuba, a kiss, whatever it takes -- but he is not actually set on winning through seducing her so much as beating her then in her own turf. This may be shrewd, as playing to zeal may be the only way to get to the missionary, and through. But it makes Sky's transition from merely trying to win a bet to actually wanting Sarah Brown a little less than persuasive. Yet why does he want her? What does falling in love mean to Sky? I find the only way to get around this is by indeed accepting his humanity has kicked in, and that he does not want to end up a mere cad toward Sister Sarah, so he does, as he's promised her, need to deliver the sinners to her prayer meeting, make good by his ""marker,"" as he puts it, as a way of winning her back when it seems he had already won only to lose her. But this still denotes self-concern more than anything. However, it also allows for Sarah Brown's own self-concern, as Sky will placate the missionary in her in order to get back the lover. Neither, at least it seems, will change much by their union, except perhaps in the acceptance of the other. Yet that would seem an all but fatally uneasy proposition: acceptance of is still quite a cry away from achieving happiness in the other, let alone the transcendence they each seem to imply by ""chemistry."" And behind all this, I suspect is Mankiewicz's full knowing.<br /><br />For all those who might say, in defense of Guys and Dolls yet, that not much can be expected from musicals by way of depth, I need only remind them Cabaret, The Three-penny Opera, Carousel, A Star is Born, even The Sound of Music, which I don't care for as much (and one can keep adding to this list without even reaching forward toward post-Cabaret musicals), all wrap gorgeous music and dance around dire anxieties.",1 +24696,"Tobe Hooper has made great movies so I was certain this couldn't be BAD. I didn't read any reviews and tried to watch this unintentionally humorous film. At times this made me laugh, sometimes I almost fell asleep, sometimes made me almost CRY for Hooper.<br /><br />I rated this 3/10 because its 1990 ""horror""-movie and many interesting or funny things happened there. Throughout the movie I was thinking something like ""they simply CAN'T add more things in this movie..."" .. but they did.<br /><br />Some tell this is some sort of Firestarter clone but truly isn't. It's based on that idea but thats all. This is combination of horror, comedy, weird religion/god things, funny gore, simple effects, drama, horrible acting, unbelievable script..and more.<br /><br />*spoilers* Story is: Government tries to create ultimate weapon using nuclear power or something and fails, during process child is born for 2 test persons. When mom sings to her child after the birth, both husband and wife burns and it is SPONTANEOUS COMBUSTION. Government buries whole thing and leaves this child live amongst other people and ... then after x years this kid is grown up and realizes he has been born for a reason and whoa he can burn things with his brains. Then everything goes unbelievable messy nothing really explains anything and .. Well when The Government realizes ""okay now he can set this fire thing to work"" they take him to normal hospital where is some nuclear toxic what they are going to use on this man BECAUSE they could kill him, no they can't shoot him no! .. and argh, I guess thats enough to tell, I promise there is 100 more weird things in this movie.<br /><br />Well if you want good laughs watch this one. Gosh.",0 +3673,"I don't think most people give this movie as much credit as it deserves. I love low budget horror movies and this takes the cake, especially for originality. Yes the Scarecrow is a Kung-Fu fighting frightner, but why not? No one else is willing to go that far. I really haven't had this much fun watching a movie since Candyman. So the town picks on this one kid calling him scarecrow, even his mom doesn't care about him. Then he gets killed and the spirit is infused with in the Scarecrow, who then goes on a Killing spree. His demise is relatively easy to assume once the movie gets going. The dedications at the end go straight to a bunch of horror directors, but with most dedication towards Dario Argento really struck me as cool, these folks who wanna make movies of a newer genre. Over the movie has a lot of Arnold rip offs, with one liners you'll definitely laugh at like stick around and he kills the sheriff with a stick. I would say, grab a pizza some friends an laugh your A$$ off with this movie. I love it for its originality, most fun.",1 +16674,"This is not a good movie. It's disjointed, all the acting is bad, and has a lame story you've seen a thousand times done much better else where. Not to mention you can see every plot point coming from a mile away. Worst of all, no one bothered to tell Lonette Mckee she can't sing. But who cares, she's sooooo damn good looking. But I digress, nothing new here. Bottom-line, hot girl group gets taken advantage of, some one gets hooked on drugs, someone gets hooked on a guy, some one gets the hell out, and then the horrible stuff happens. Surprise, surprise. Welcome to the music business. I can't believe so many people out there think this is a good movie. So many of you seem to want to use a sliding scale when it comes to grading Black Movies. I don't play that! If you want to support these films by going to see them - great! If you enjoyed it - super! To each his own. But don't try to tell me it was good. Pleeeease! I wish colored folks would not fawn over these kind of movies just because they feature black actors. Wanna see a good African-American movie? See Love Jones. Ray. Or The Color Purple. Those would be great movies no matter what the color of the actors skin. Why? Because they told compelling stories with great acting, that made you feel something long after you left the theater. Just because it's our experience does not automatically make it a good film. It's only good -- when it's good. Period.",0 +12365,"This film was made in 1943 when i think Judy was at her peak (looks wise). In her previous film For Me and My Gal people often say that she looks emaciated. Well in this film she looks perfect. She is beautiful and shows that she has a flair for comedy.<br /><br />I think this film is hilarious, especially at the beginning when she is trying to arrange an audition with John Thornway. One of the funniest scene's in my opinion is Judy's rendition of Lady Macbeth and when John is looking for her at the party to give her a spanking (Lol).<br /><br />One criticism i do have is that there is a hole in the plot when John and Lily fall in love. I mean one minute he despises her and the next they are going out on a date then the next time they meet after that date they are in love.<br /><br />Another point i didn't like was on opening night. If i were Lily i would be furious with John but she isn't...it just doesn't make sense.<br /><br />But all in all i would have to give this film a 10 because it is just wonderful and almost perfect.",1 +8274,"I'm one of those people who'd crawl a mile through broken glass to see a Hal Hartley film. From TRUST and IRIS to HENRY FOOL and (my Hartley favorite) NO SUCH THING, Hal's unique brand of movies are an acquired taste. Infusing equal parts mystery/espionage with wispy comedy seems to be his forte. The comedy isn't in your face necessarily, and often runs throughout an entire scene before coming to fruition. And that's the case with FAY GRIM, the sequel to Henry Fool.<br /><br />Parker Posey stars as Fay Grim, abandoned wife of Henry Fool and mother to Henry's only son Ned. Fay lives a quiet life until she comes home one day to find a CIA agent in her kitchen. His name is Fulbright (Jeff Goldblum, MAN OF THE YEAR) and he wants Henry's notebooks. There are many Henry Fool notebooks and they were all previously believed to contain nothing but mad wanderings. Apparently there's much more to them. Secrets weapons research or paths to terrorists? Who knows but Henry. Agent Fulbright tells Fay that her husband is dead but this is quickly surmised as a ruse to get Fay out of her home and searching for Henry (and it works ...but not the way they think).<br /><br />Fay battles multiple spy rings to gather Henry's notebooks and to seek him out. She also makes a deal with the CIA to get her brother Simon (James Urbaniak) out of prison (he'd helped Henry escape the country in the original Henry Fool film.) Multiple overlapping events occur in rapid succession: spy rings shoot each other to death, Henry is discovered being held in ""safety"" by a jihadist, Fay frees her brother but unknowingly risks her son's life, and the CIA gets its comeuppance for putting Fay in danger.<br /><br />Hal Hartley obviously loves to play with themes. And he does so to the extreme here. Even character names (Grim, Fool, Fulbright, Fogg) have implicit meanings of their own that are quite funny. The over-the-top espionage films of ol' are given plenty of screen time, too, as guns blaze in stop-motion sequences, never striking our heroine even though she's right in the line of fire.<br /><br />Now that I've heaped praise on this creation, I will say that Parker Posey's excessive portrayal of Fay Grim isn't the best part of the film, which is a shame considering how much time she's on-screen. I realize this was probably what Mr. Hartley wanted: an uncurbed woman with hand gestures to the Italian extreme. But it was still painful to watch at times.<br /><br />Even so, fans will probably devour Fay Grim and beg for more. Though this wasn't my favorite Hal Hartley film, I know I'm ready.",1 +959,"It might be a little erroneous to open a review by describing a film in terms of other films, but I think it's the best way to give an approximation of the place Election occupies in the gangster genre arena. It works somewhere in between The Godfather and Kinji Fukasaku's yakuza opus The Yakuza Papers (AKA Battles Without Honour and Humanity), in that it is simultaneously both romanticized and realistic, dark and gritty. But it's also a Johnnie To film, and as such it carries the distinct touch of the Hong Kong auteur.<br /><br />Every two years the HK Triad elects a new boss. Only this time one of the candidates is not overly happy with the result so he decides to take matters into his own hands much to the dismay of the rest of the Triads and the police. That's the story in a nutshell but rest assured it has a lot more going for it than that. As in The Yakuza Papers, there's a great deal of scheming, back-stabbing and forming and switching of allegiances (sometimes all it takes is a phone call - in one of the most memorable scenes I've seen in recent time) which might not necessarily make for deep drama but makes for an interesting plot and good character conflict. Fans of the gangster genre are likely to appreciate it in that aspect. Election is not as action-oriented as one might expect; although it IS violent. And I'm not talking about the glossy, glamour version of Hollywood violence. This is dark and grim. To's camera lingers in the scenes of people being brutalized in ways that reveal both the humanity and inhumanity of the perpetrators and victims; after all violence IS an integral part of us whether we like it or not.<br /><br />If you're familiar with To's style, then you should know what to expect. The pacing is relatively slow and deliberate. The cinematography is great, slick and dark in equal measures, utilizing dark hues (brown, dark green and orange) while the smooth tracking shots add a vibrant quality to it. In the end, Election occupies a peculiar place. It's not exactly a character study and it's not an action-oriented gangster film. It explores a situation (the election and its aftermath), but does so in style, and is both realistic and romanticized (the Triad ceremonies in particular echo of an oriental Godfather).",1 +12396,"God Bless 80's slasher films. This is a fun, fun movie. This is what slasher films are all about. Now I'm not saying horror movies, just slasher films. It goes like this: A high school nerd is picked on by all these stupid jocks and cheerleaders, and then one of their pranks goes horribly wrong. Disfigured and back for revenge, sporting a Joker/Jester mask (pretty creepy looking, might i add), Marty begins to kill off those teens one by one many years later, after he manages to make them believe that their old abandoned high school is having a reunion. That is basically the plot? What's wrong with that? That's the beauty of 80's slasher films, most of them i would say. A lot of things could be so ridiculous, but they keep drawing you more in an' in as they go by. Especially this film.<br /><br />It features some outrageous killings, and some are quite creative as well. (poisoning of a beer can, acid bath, i can't remember a javelin ever being used before in any other slasher film either)It really is a fun, fun movie. That's all it is. Nevermind the fact that the characters are complete idiots, never mind their stupidity, and never mind the outrageous, random things that occur in this film. Such as lights being able to be controlled by the killer (when he's not even switching any buttons, you'll see) and toilets being able to cough up blood, baths being able to have acid come out of them, just use that as part of your entertainment! Because thats what really makes it entertaining.<br /><br />Movies like this represent 80's slashers. Never again could movies like this get made, know why? It isn't the 80's anymore. That is why you should just cherish them for what they are, good fun! I highly recommend this film if you're a hardcore fan of Slahsers such as Friday the 13th.<br /><br />One last note this movie also had a kick ass villain as well, Marty Rantzen. A disfigured, nerd, who kills all his old foes in a creepy Jester mask. A good villain makes a good slasher. Simon Scuddamore, who played Marty apparently committed suicide shortly after Slaughter High was released. That alone adds something creepy to the film, and sticks with it and it even makes you feel more sorry for the Marty character, i guess. All in all, great 80's slashers fun! It's a shame it will never be the same again...",1 +1818,"Scream was Wes Craven's last decent thriller. Since then there has been nothing but an unbearable streak of Hollywood trash barely good enough for a blockbuster night, including the disappointment of the Scream sequels. Perhaps the genius and the craftsmanship devoted to the movie drained all the energy and creativity out of him, so that when it came time for supper, he had nothing to serve us but his own doo doo. Finally, after who knows how many bad movies later, he gives us a delicious, ruthless, gripping, chilling suspense thriller with Red Eye.<br /><br />Rachel McAdams once again delivers an enjoyable performance as she plays a hotel manager who has the unfortunate connection with an important political figure and regular at her hotel. Then she meets Jackson Ripner (Cillian Murphy, Batman Beyond) at the airport, who she gets to know a little better after a delayed flight and a bay breeze. What she doesn't know is he already knows her. And he also knows her father, who she will never see again if she fails to cooperate and meet Jackson's demands- to use her connections to set up her hotel regular for assassination.<br /><br />You're probably thinking this is nothing but your everyday thriller complete with predictability and chase scenes. Although this is a good old fashioned thriller, that's the beauty of it. No special effects. No cheap make up. Just classic suspense. You feel the desperation and regret with every decision McAdams is forced to make and you actually care for her as you cheer her on every move she makes to find an escape from her claustrophobic position.<br /><br />As always she delivers an entertaining and convincing performance. It's either her sweet face or her uncanny ability to sincerely cry, but you always seem to sympathize with her if her role demands it. Cillian Murphy on the other hand is naturally creepy looking, so even if the trailer didn't reveal it, his ultimate transition from charming stranger to merciless jackass isn't so surprising. Perhaps it would have been more trippy to see a nice guy persona like Toby Maguire transforming into evil relentless madman. Nevertheless, Cillian Murphy, after his true identity is established, played the role so solidly you'd really want him to die, or at least get his ass kicked.<br /><br />Don't overlook this feature. There are plenty of chalkboard screeching moments and heart jumpers that will keep your eyes on the screen instead of your watch like you would at Craven's recent pictures. If not for the you, do it for all the times you'll see your girlfriend, or boyfriend, or someone with popcorn jump and cling on to you. Wes finally gets it right. Aside from his trademark mastery in suspense, Red Eye is not without its humor as McAdams' replacement Cynthia at the front desk fumbles to keep the hotel in order. It was a relief that Red Eye wasn't a disappointment. Instead you'll get the pleasure of seeing McAdams deliver another incredibly talented performance, Murphy look creepier by the minute, and Craven craft a classic traditional thriller. A flight that was delayed and would have been the beginning of Craven's renaissance had it arrived right after Scream.",1 +14279,"A Nightmare on Elm Street: The Dream Child, the fifth installment in the Nightmare on Elm Street series and the worst sequel ever in the series, even worse than A Nightmare on Elm Street 2. I was lucky enough to get the Nightmare on Elm Street DVD box set for my birthday and I watched all the sequels. The dream child was the worst without a doubt, I was surprised too since they were doing so well with the last two sequels. But I guess they just lost the charm, the story was just ridicules and I wasn't happy with where it went. Alice just became more annoying, she's not Nancy or Kirsten, so her carrying this film on her own didn't work for me. Freddy is also loosing his scare, this was just getting a bit silly.<br /><br />Alice is back and she's carrying a child, she couldn't be happier with her life. But Freddy is also back and he's not going to be too light on her since she defeated him so easily in the fourth movie. But anyways, he wants her child and to be born into the world again. Did you ever wonder if Freddy had parents too? Well that's what A Nightmare on Elm Street: The Dream Child investigates and Alice soon finds out what Freddy's childhood was like and that maybe that's the one thing that can defeat him.<br /><br />A Nightmare on Elm Street: The Dream Child is just all in all a bad movie and an insult to the series. I don't think anyone could be happy with this sequel. Just the story was really silly, I mean it could have possibly worked, but once again, it was just executed the wrong way. I know that if you're looking to see the sequels for the Nightmare on Elm Street series, you should watch it, but I really wouldn't recommend it, it's not worth it, at least in my opinion.<br /><br />3/10",0 +17917,"I don't know what the Oscar voters saw in this movie, but they must of seen some pretty hard stuff to see in it to be able to award it with the best picture Oscar. All I know is that fortunately there was Gene Kelly to play in it or this would have been twice as bad as I believe it is. First of all, I don't think Leslie Caron was really fit to play such a role. She isn't that talented, she isn't a great dancer and she's not good looking at all. It's a shame that one actor or actress may ruin a movie just like by playing in it because if Leslie Caron hadn't been in this, it might have made a terrific movie. The story was intelligent, the directing wasn't bad, and, as I said, Gene Kelly was pretty good. Now I'm not saying all this stuff about Leslie Caron just to criticize her, I'm just saying it because I think that's what the worse part of the movie is. She's probably a good actress but I can't tell because I haven't seen her in anything else but I think she was pretty bad in ""An American in Paris"". So if you want to see it, go ahead but I'm telling you, you're way better off watching ""Singin' in the rain"".",0 +5076,"As a long time Red Sox fan, I just had to go see the movie. It was great! While there can never be enough live footage from the miracle 2004 Red Sox season, there were great shots of some of my favorite Red Sox players. While the movie is certainly a chick flick, it has enough baseball footage from the amazing 2004 Red Sox comeback to make it one of my top 10 movies of all time. I especially enjoyed the Red Sox fans that were part of Ben's baseball family. The scene where Ben is meeting with his buddies on draft day to determine who will get seats to certain games is hilarious! A must see if you are looking for a wholesome movie to watch with your spouse, date, or significant other...especially if you are a baseball fan...and even more especially if you are Red Sox fan!!!",1 +16790,"Conventional wisdom is that a sequel is seldom as good as the original movie. There are occasional exceptions, but this is NOT one of them. Disney should have quit while they were ahead. This was a real disappointment after a reasonably entertaining 101 Dalmatians.",0 +1747,"I've received this movie from a cousin in Norway and had to convert it from Norwegian to American format with a copied video. Comparing this film (1948) with the Heroes of Telemark (1965), Kampen om Tungtvannet (The Struggle for the Heavy Water) casts the saboteurs themselves, playing their respective roles, though actors were also cast to play the roles of the saboteurs who have given their lives in Norway's struggle for freedom in later campaigns. The plot is in four languages: Norwegian along with French, German and English (complete with Norwegian subtitles).<br /><br />Impressive during this course of history was what led to the struggle. French scientists were interested in obtaining some two hundred kilograms of heavy water from Norsk Hydro in Vemork to take back to France in order to do lab studies on its effectiveness. Simultaneously, the Nazis, too, were interested in obtaining heavy water to build a secret weapon. The French were worried that the Nazis might take an early lead by invading Norway, and through secret codes, their man carefully eluded Nazi spies on his trip to Oslo where he received the heavy water and making it back without hindrance. He was watched by two spies as he boarded an airliner, but they did not see him hop out on the other side where he crossed the tarmac to another plane nearby where his cargo was waiting for him. This clever trick worked by using the airliner as a decoy that the Nazis later forced down in Hamburg.<br /><br />However, the invasion of Norway on the morning of April 9, 1940, the Nazis took over Norsk Hydro and it was up to the Norwegian Underground and British intelligence in London to take action. Professor Leif Trondstad volunteered the services of eleven young Norwegians; the ""Swallow"" and ""Gunnerside"" groups who would successfully sabotage the heavy water production in Vemork. This was shown in detail on how they actually carried out the operation, including the sinking of the ferryboat after the Nazis abandoned Norsk Hydro to take the shipment of heavy water on rail cars to Berlin.<br /><br />The quality of the film was fair though there were many splices in the film. I highly recommend this film to anyone interested in World War II history.",1 +323,"After a slow beginning, BRUCE ALMIGHTY is a very funny film that had something positive to say. It wasn't one of Jim Carrey's best performances, but he was still OK. Morgan Freeman was just right as God. Jennifer Aniston had some good moments. I miss Steve Correll on ""THE DAILY SHOW!""<br /><br />I like director Tom Shadyac's choices of movies. He also did LIAR LIAR, PATCH ADAMS, and THE NUTTY PROFESSOR. In all three of those and in Bruce Almighty, he takes a big comedy star and tells a human story with him. A director who knows comedy, can get the talent he gets, and can tell a meaningful and intelligent story with it is hard to find.<br /><br />My biggest complaint is that they should have used more biblical references. I only remember three specific biblical references and they were the three funniest parts of the whole movie. My guess is that the first few drafts of the screenplay had more biblical references, but they were cut out because the producers were afraid of offending people. That's too bad because I thought it was a missed opportunity.<br /><br />My Grade:<br /><br />7 out of 10",1 +10296,"stars: Julianna Donald, Lonny Price and Louis Zorich. cameos: Art Carney, Brooke Sheilds, Liza Minelli, James Coco, Joan Rivers, Dabney Coleman, Linda Lavin, Gregory Hines and others.<br /><br />Muppeteers: Jim Henson as Kermit, Rowlf, Dr.Teeth, Swedish Chef, Waldorf, Ernie and others.<br /><br />Richard Hunt as Scooter, Janice, Statler and Beaker.<br /><br />Frank Oz as Fozzie Bear, Miss Piggy, Animal, Bert, Cookie Monster and Sam the Eagle.<br /><br />Jerry Nelson as Camilla the chicken, Floyd Pepper, Lew Zealand, Crazy Harry and Pops.<br /><br />Dave Goelz as Gonzo, Zoot, Beuregard and Bunsen Hunnydew.<br /><br />Steve Whittemire as Rizzo the rat and others.<br /><br />Another great Muppet flick. This time, Kermit, Fozzie, Miss Piggy, Scooter, Rowlf, The Electric Mayhem, Gonzo and Camilla the chicken are out of college and starring in a musical that they're trying to get on Broadway. After miserably failing at getting it produced, they all split up and go their separate ways. I love the characters and cameos. The songs in the film are ""Together Again"", ""Look at Me, Here I am"", ""Saying Goodbye"", ""And I'm Going to Always Love You"", ""Rat Jazz"" and ""He'll Make Me Happy"". Frank Oz directs this movie excellently and all the actors do a great job acting like the Muppets are real. See it! 91 minutes. Rated G. My rating: A.",1 +12750,"Now I'll be the first to admit it when I say something that may be blasphemous or unfair, so I would like to apologize in advance for my ranting about how much I disliked this movie.<br /><br />That about sums it up too. I disliked this movie. To be more specific, I disliked the concept of this movie. The cinematography was good. The mood was nice. And the acting was satisfactory.<br /><br /> However, the story is fatuous, unacurate and misleading. It is also offensive.<br /><br />I am a quarter Cree Indian, and for some reason I feel insulted, on a personal level, by the nature of Whitaker's character. First of all, he's a black guy. And this isn't a racist remark, I swear. The thought of a White, Hispanic or even Native American swinging a katana on a rooftop offends everything that the katana represents. The katana represents the soul of a Samurai, imbibed with the souls of his ancestors who guide and protect the Samurai. For Ghost Dog to use his guns instead of the Katana is also an insult to the blade and the souls inside, and where the heck did he get a Katana anyway? It must be one of those replicas, which insults the Samurai caste even more.<br /><br />Also, Ghost Dog showed no honor. Near the end of the movie, he shoots a bodyguard in the back through a window and then assassinates a man by shooting him in the face through a faucet drain. Not only is this a cowards way to kill an enemy, it's more like a ninjas way; silent assassins; a group that samurais deny exists, but hates none-the-less.<br /><br />Then he tries to kill his boss, when he finds out his boss is a baddie. You know what a true Samurai does when he learns his master is proven bad or dishonorable? He kills himself, to prove that he would rather die then lower himself to the level of his doggish master.<br /><br />Everything about the character was a giant contradiction to the real code that all Samurai adhere to: Bushido.<br /><br />So, we have great cinematography, good ambiance and so-so acting encompassing a satiricle plot and premise, (which unfortunately is the most important aspect of it) , making it an unsatisfactory overall film, and an insult to everything a honorable bushi(samurai) holds dear.<br /><br /> 2.5/10 Bleah",0 +10012,"In her autobiography,Laureen Bacall reveals that Bogie told her that she should not make such dud movies as this one or something like that.At the time,Douglas Sirk was labeled ""weepies for women"",actually,he was restored to favor,at least in Europa,after he stopped directing.And when he filmed ""written on the wind"" ,Sirk had only three movies to make:""tarnished Angels"",""A time to love and a time to die"",his masterpiece,IMHO,and finally"" Imitation of life""(1960).Then there was silence. Actually Bacall and Hudson characters do not interest Sirk.They are too straight,too virtuous.Dorothy Malone -who was some kind of substitute for his former German star Zarah Leander-and her brother Robert Stack provide the main interest of the plot.A plot constructed continuously ,most of the movie being a long flashback.The instability of the brother and the sister ,from a family of rich Texan oil owners,is brought to the fore by garish clothes,and rutilant cars that go at top speed in a derricks landscape. Malone's metamorphosis at the end of the movie is stunning :suit and chignon,toying with a small derrick:she's ready for life,the rebel is tamed. Now alone,because she's lost Hudson (but anyway,he was not in love with her).This end is a bit reactionary,but melodrama is par excellence reactionary;three years later,in ""imitation of life"",Sarah-Jane (Susan Kohner) will be blamed because she does not know her place.",1 +19762,"I have no idea why they made this version of ""Persuasion"" when they already had that fine mini-series with Amanda Root and Ciaran Hinds. I suppose that they wanted to make a feature-length version, but of course a lot had to be deleted; alas, what ended up on the cutting-room floor was all the lovely wit and humour, leaving a film that was mere melodrama rather than an amusing exposition of English country manners and mores.<br /><br />Also, the characters were shallow and uninteresting. They had poor Anne chasing up and down the streets after Captain Wentworth like a silly modern adolescent (and if you happen to be a silly modern adolescent reading this, let me tell you: running after a male like a female in heat is NOT cool). That is something a well-bred woman of the Napoleonic era would never have done, and certainly not this level-headed heroine.<br /><br />Some have said they found this antic laughable; my reaction was not laughter, but outrage. The very idea of such a corruption of an Austen work is beneath contempt.<br /><br />It was ghastly.",0 +22707,"A family looking for some old roadside attractions to include in the father's coffee-table book come across an ancient, decrepit old freak show run by an eccentric one-eyed man. When their family van breaks down upon leaving the sideshow, they're forced to stay at a nearly abandoned fishing camp that was the site of a prison break decades prior.<br /><br />There have been many films in the 'freak' subgenre of horror, ranging from Tod Browning's beloved 'Freaks' (1932) to Alex Winter's hilarious 'Freaked' (1993). Those are both classics (or soon-to-be with 'Freaked'). 'Side Sho,' however, never will be. And if it ever does reach classic status. . . well, it will be an obvious clue to the sad state of our genre. From the ridiculously bad opening song to the 17-year-old daughter that's obviously older than her natural mother, this film did not have much going for it. The writing was subpar, but not completely awful. . . just boring. The direction was poor, and the rare freak effects were pretty horrendous and unbelievable. The acting was abysmal and the casting was even worse. Anyone who would believe the ages of these two camp-age teenagers must not have met a teenager in a long, long time. There was far from enough gore & violence to make up for the lack of any other quality. . . and when there was a bit of violence, it was not well done at all. And, I can't forget to mention the ending fight scenes which were, with all honesty, some of the worst I've ever, ever seen in a film. Overall, this is an easily forgettable and poorly made horror film that deserves to be left alone at the bottom of the dollar bin.<br /><br />Final verdict: 2.5/10.",0 +3784,"This movie is among my favorite foreign films, some of the others are Amilee and My Life As a Dog. The similarities with those movies as with so many great foreign films, is that it takes a mundane slice of life and transforms it into a profound heartfelt lesson. <br /><br />In Japan, a man who is bored with his mundane life and the rut of his married life, sees a beautiful Japanese woman staring out the window of a dance studio. In the instant that it takes his train to pass, he is enthralled by her. But is it only by her beauty, by her faraway glance, or a connection that they will both discover that they share? <br /><br />Shall We Dance has memorable wonderful characters who have to deal with painful realities by transcending them through the world of dance. Breaking traditional moulds and stereo types of Japanese society, they risk all for happiness and find that joy is not too far away. It is one of those movies that is so magical and meaningful and, in itself, transcends the mundane by showing the true magic and miracle that life can be.",1 +20798,"When THE MAGIC OF LASSIE opened at Radio City Music Hall, I was foolish enough to believe it would be as heart-warming as some of the first Lassie films were. Not.<br /><br />The story was abysmal, the songs by the Sherman brothers were way below their usual level, the characters were uninspired and JAMES STEWART and MICKEY ROONEY had both seen much better days.<br /><br />Then too, I was interested in seeing what ALICE FAYE's contribution would be like, since she'd been absent from the screen for so many years and was always so fetching in her earlier roles at Fox. Alice too, was letdown by the foolish script and the unflattering photography. Another disappointment.<br /><br />Nothing original here, nothing even remotely interesting for an adult to enjoy--and clearly, no magic present for anyone. You can skip this one without missing a thing.",0 +23768,"Celia Johnson is good as the Nurse. Michael Hordern is good as Capulet, though it's his usual neighing and whinnying and not a patch on his King Lear. John O'Conor reads the verse well as Friar Laurence though he never takes it anywhere. Alan Rickman is good as Tybalt, in the first of his ""yuk"" roles that would make him famous. Christopher Strauli's Benvolio is sympathetic.<br /><br />The sets are pretty, if not stunning as in some of the other BBC Shakespeare's.<br /><br />And that's it. The rest is weak to dreadful. Rebecca Saire turned 15 during production, and hasn't a clue about how to act Juliet - she opens her eyes real wide and whines every line in exactly the same way. Patrick Ryecart is poorly matched to her, and his self-regard is inexplicable. The Balcony Scene flows smoothly and uneventfully with zero emotional or erotic impact. Their deaths come as a relief. If I had a dagger, I would have offered it to them hours earlier.<br /><br />Anthony Andrews is unspeakable as Mercutio, a great shock if you remember his fine work in ""Brideshead Revisited."" He breaks the mirror of Shakespeare's verse into a thousand shards of two or three words each, and then shouts the fragments in as disconnected and unintelligible manner as possible. In this production, Queen Mab abdicates. Awful.<br /><br />The director, Alvin Rakoff, shows only an intermittent gift of putting the camera where it will show us what we want to see. The opening brawl is notably incoherent. However there is humor when in a later fight, Romeo apparently knees Tybalt right in the cobblers. Tybalt then grabs the offended region. However did that get through? <br /><br />R&J is a long play. This version is not recommended for classroom use, or much else.",0 +8483,"Disney, the film name that once stood for all things innocent and suitable for all ages, has finally started to realise that to survive it needs to become more diverse. Such diversity has been very apparent in the last couple of years. Films like ""Tarzan"" and ""The Emperor's New Groove"" have made an attempt to move away from the traditional song-driven routine of Disney's past and into new, uncharted territory. ""Atlantis"" is the boldest step yet, but we have to remember: This is STILL Disney. The first ever serious film to come out of Disney's animation studio is a major achievement for them - in fact it's so serious it makes it into PG territory. Perhaps why a lot of families were scared off from seeing it this past summer.<br /><br />But despite the more mature subject matter, this is still a film that Disney wanted to draw in the families with, not just mature audiences, so the plot had to be kept simple enough for children to understand, but interesting enough to take it away from the realms of ""The Little Mermaid"" et al.<br /><br />So what we get is actually a potentially detailed plot, unfortunately suffering the blow of being condensed into a 96-minute movie. Ultimately, this is an action film about Atlantis, not about the exposition preceding it, so we are whisked through the first half hour with as many sequences bombarding the screen as is possible without losing coherency. Suspend your disbelief of how the characters get from point A to point B so quickly, you're unlikely to find an animated film that detailed coming out of Hollywood! If you want epic levels of detail in the plot, turn to James Cameron's ""Titanic"". Both films feature a boat in some manner.<br /><br />And let's talk about love, shall we? Yes, as with a lot of films, the lead male (one Milo Thatch, a bumbling archaeologist) and lead female (Kida, the clichéd Atlantian princess) are set to fall in love with each other. But what I found was not as clichéd as I was expecting. By film's end, for once, the characters touching/feeling/kissing sequence was far more subdued. There's various points in the film where the attraction grows, but it's just not in the ballpark of, say, ""The Little Mermaid"" (A good thing).<br /><br />You may have grasped that this is a rather clichéd film. Correct. You have your leading hero and heroine, backed up by more than half a dozen crew members who go on the expedition, all being given their moments during the film. Numerous other characters appear, take up the few minutes of screentime, then disappear. It doesn't take a genius to do the maths a 96-minute film with a focus on action and visuals, and with a considerable cast, has very little time to expand the characters to any major extent. So what does it rely on? Clichés, and lots of them. Every character emulates something that has been done a thousand times before. You have the bumbling scientist, the attractive princess, the square-jawed colonel, the rich eccentric, the maniacal sleazebag, the Russian femme fatale need I go on?<br /><br />I don't know why this got to anyone I found the tongue-in-cheek nature of this film quite amusing. Alright, this is meant to be a serious flick, but do you really expect Disney to give up every single trait of their history? At least the writers have tried to come up with consistently witty dialogue, and sometimes it even is a little inspired.<br /><br />But in the end it's those big stunning visuals that put the icing on this cake. The CGI animation is truly amazing in places, and doesn't dwarf the characters, which was a flaw that let the recent ""Titan A.E."" down. Speaking of characters, Disney hired an outside comics industry artist to create the designs, bringing an anime style to the film. Infact the visual presentation of the film as a whole owes a lot to anime, much more so than any previous Disney outing. This resulted in a conflict with fans of the Japanese anime, ""Nadia"", for the film's overall similarities with said cartoon series. Having not seen this anime, I can't comment.<br /><br />With picture, there is sound. Gary Rydstrom heads up the sound team, and what a soundtrack! From the opening shot the sound stage is alive and is a treat. James Newton Howard treats us to a dynamic musical score, which compliments the film in every way, never sounding out of place and always helping to build the tension or subdue it.<br /><br />Perhaps I missed the point of what the creators intended. To me, the film conveys that it's an adventure thrill ride, albeit with a more serious tone than any Disney film before it. If you don't like the clichéd tongue-in-cheek attitude, then perhaps the effort that has been poured into the visuals will delight. Heck, at least the mythology is far more correct than can be said about other Disney efforts (*cough*Hercules*cough*).<br /><br />This is a positive, 10 out of 10 review, from someone who was blown away by this film. I always suspend my disbelief with any animated film after all, the laws of the real world are more than frequently broken in the cartoon medium. So sit back, enjoy the ride, and perhaps everyone can find something to enjoy about this film.",1 +24716,"I remember this film, exhibit in Barcelona (Spain) in 1970, for the time of a week. Although it could seems incredible, and I can't offer any explanation for it, this movie was exhibit in a theater dedicated to... movies of art and big quality (that, is, Bergman, Resnais, Malle, Buñuel, and... The Projected Man). Few people saw it (luckly people, no doubt) and no reference about this very boring SF movie can be found in the Peter Nichols Science Fiction Encyclopidie, or about the author of the original novel. Very indicative. I remember of it, after all this years, a no-story, a lot of special effects that seems ridiculous effects in fact, and no more. It seems that in some countries the running time is 90 mm. and in anothers 77 min. Well, it means only a little more of pain.",0 +13836,"In the bygone days of the Catholic Church, a sin-eater was an individual that, through ritual, would take the sins of a dying person upon themselves. Often, these people were excommunicate or similar individuals who the church would not absolve, thereby denying them entrance into Heaven. The sin-eaters were seen as blasphemous, circumventing the chruch's monopoly on redemption. Sex this up a bit with some overt supernatural mojo, let the concept wander where it may, and you have ""The Order"", a movie that combines ""Stigmata""'s religious anti-authoritarianism, ""The X-Files""' paranormal investigation, and ""The Thorn Birds""' sexual spirituality into an odd melange that sometimes works.<br /><br />Alex (Heath Ledger) is a rogue priest, one of the last members of the Order of the Carolingians, a semi-heretical order of knowledge-seeking, demon-fighting priests. When Alex's mentor is found dead under bizarre circumstances, Bishop Driscoll (Peter Weller) sends Alex to investigate. Tagging along are fellow Carolingian Thomas (Mark Addy) and Mara (Shannyn Sossman), who was subject to one of Alex's exorcisms a year prior. The three go to Rome to investigate and are drawn into a dark underworld of bizarre Catholic heresy, ominous prophecies, demonic intrusions, and a man claiming to be the last surviving Sin-Eater (Benno Furmann).<br /><br />Written and directed by Brian Helgeland (who worked with the same principals on the scattershot and half-hearted ""A Knight's Tale""), the film is an odd one, and difficult to classify. It wants to be several things at once -- supernatural thriller, religious intrigue, dramatic television pilot -- and only sometimes succeeds at any of them. This isn't helped by the slow pace or the fact that most of the actors seem to be sleepwalking through their performances with occasional bursts of brilliance. Ledger, in particular, has a particularly stunning scene of despair in an otherwise monochromatic performance. Sossman, however, displayed the same disconnected performance that she's given in all of her films (most notably in ""The Rules Of Attraction"").<br /><br />The plot itself meanders back and forth between several different story arcs, leading you to wonder which is the main one with each arc containing its share of red herrings. Large gaps of narrative appear to be lost between scenes at times, which can be confusing for many, but this is also one of the film's saving graces. The structure of the film -- coupled by the fact that there is never a truly clear antagonist until the very end of the film -- forces the viewer to analyze and reason in a time when most films are blatantly obvious about everything (the exception to this is historical background on the Carolingians and the practice of sin-eating, both of which are explained in dry exposition). Even at the beginning of the film, character relationships and history are inferred instead of explained. Combine this with the on-location shooting and judicious use of special effects, and you have a very old-world supernatural thriller, with even the opening credits reminiscent of something from the late 70's/early 80's.<br /><br />A brief mention here, as well, for the subtle and organic score by David Torn, a combination of minimalist orchestration and Lisa Gerrard-style exotic vocals. A very nice score that is evocative without being bombastic and exists in a very deceptive simplicity.<br /><br />A confusing plot, a lack of purpose, and sometimes sleepy performances would often damn a movie, but for some reason, ""The Order"" remains watchable. Many people will be very turned off by the movie for its odd sensibilities, and some may even become angry that they are forced to engage the higher functions of their brain to understand it. Still, the film's sheer intangibility will prevent it from being either a critical or commercial success until the DVD, which I'm sure will be stocked with copious amounts of deleted scenes. A recommended film only for people who like to think while they watch. 6 out of 10.",0 +2281,"Well-done ghost story that will give you the creeps and some pretty fair scares along the way. The story unfolds slowly, building atmosphere all the way until you're ready to see the woman in black. You won't forget her once you've seen her. No gore, no knives, no hockey masks--just a well-constructed story that is best viewed at night with the lights out.",1 +13514,"Marvin(Rob Schneider)does not have the ingredients to be a cop which is his lifelong dream. But his luck changes when he has a car crush(a very bad one)and is found by a doctor. The doctor has to use animal organs to rebuild him. After this moment, he starts to have wild behaviours unconsciously and becomes a best cop one could ever be. By the time, he realises the changes and his animal instincts starts to take over his human side. In the mean time, he finds a lovely girl and try to be a perfect gentleman that means he has to control himself and behave civilised. I am not a big fun of Rob Schneider. In fact, this is the his first film I have seen. However, I can easily say that he is the best person to play the loser.(See his part in Ally Mcbeal, quite funny actually).There are some good parts in the movie such as his flirting with the goat. In such movies, the biggest problem is that the script is seems to make the viewer feel less intelligent. I am sure this movie is okay to watch as long as it is not taken too seriously. But very sad to see such films doing very good in the box office. The Animal is not the worst film I have seen to date but fails to get more than *.",0 +21714,"I was prepared to laugh throughout this movie like a Mystery Science Theater experiment, but it was just boring. It appears that the producers had many biker enthusiast friends, and from there casually decided to make a movie. <br /><br />It is frequently unwatchable. Lots of footage of the bikers riding on a dirt road, with the same music played repeatedly. Unfortunately, Renee Harmon is barely in the movie. Harmon probably would have livened things up. Perhaps she had other commitments the day this was filmed.<br /><br />Of course, the bikers terrorize a small town. Fights, murder, a cowardly cop, a goofy mechanic, etc. One of the bikers always wears a football helmet, a weak attempt to distinguish him from all the other outlaws.<br /><br />The script has nothing to offer. One scene features a biker assaulting a woman, yelling in the lady's face ""You're all the same! You're all the same!"". We come back to the scene a minute later and he again declares ""You're all the same!"". Couldn't the writer think of something more creative to say??<br /><br />At the end the good guys have killed the bad guys. We also learn that the wedding between middle-aged mechanic Joe and young Susie has been canceled. Susie is going away to college, and we abruptly learn that Joe's wedding is still on (but with a different bride). End.",0 +24101,"I found this movie in the 'horror' section of my video store. That seems to make sense as most zombie movies have their place there. From Romero's 'Dead' trilogy to '28 days later.' However upon watching it, you can quickly see what this movie really is.<br /><br />It is actually a music video that goes progressively faster and gets more and more and more gory. There is no horror here folks. Just some half-way decently staged action scenes which soon grow tiresome because they last... and last... and last... and soon you get the feeling maybe you're DVD player accidentally skipped back 3 minutes, but no, this is how they actually made the movie. It's a pity. I think anyone could find a better use for $7 million dollars in the movie industry than make this lump o' crud. Though some of the 360 effects were cool, but once again, they were over used and grew tedious since it was the same stunt over and over again each time, just with a different character.<br /><br />Also what is ROYALLY annoying is the splicing on of footage from the arcade game. I've played the game. It sucks. So why did they put it in here? Oh that's right, this isn't a movie but a music video, and it's a poor one at that. 3/10<br /><br />Rated R: a lot of violence/gore, and profanity",0 +18999,"As the number of Video Nasties I've yet to see dwindles, this little pile of garbage popped up on my ""to rent"" list when I saw it was available.<br /><br />The premise involves a fashion model or something being kidnapped and taken into the jungle to be held for ransom by a motley crew of idiots. Some other goof gets hired to bring her back and is given a sack of money to use as a bargaining chip, though if he returns with the girl and all the money, he gets a significant cut. He's brought a helicopter and pilot with him and, wow, that pilot is one of the worst actors EVER! Granted, they are all totally terrible and the dubbing will make you cry blood. After stealing away into the jungle, we learn that nearby is a cannibal cult whose flesheating earthbound god wanders the woods like a human King Kong looking for tribeswomen to ravage and devour. Now, this fellow is just a naked guy with some of the worst makeup ever, ping-pong balls for eyes and that's pretty much it. His growls and groans are an everpresent feature on the soundtrack, and I found myself muting much of those scenes.<br /><br />Oh, did I forget to mention the almost constant nudity? This is probably the main reason this film was banned, though there is one specific scene, about one second long, where the god attacks a girl and pulls her guts out, but it's not a redeeming factor for gore fans. Also, Jess Franco goes beyond the usual T and A and shows lengthy close-ups of female genitals, and, sadly, male as well. So, if you want ""fair"" in terms of exploitation, you got it.<br /><br />I can't recommend this trash to anyone. It's not even the good bad movie. It's just atrociously padded trash that only a Video Nasty fan will probably view and even then, if you are making your way through the list, leave this for the very last. If you watch it first, you may get the notion that this is the norm for the list, which is certainly not true.",0 +10462,"First it was Jack The Ripper, now it is Alan Feinstone. The crazy dentist tortures people in horrific ways. Quite realistic at times but some of the acting is abysmal and comical. Especially from Corbin Bernson. In some scenes there is dental torture that will really make you cringe.",1 +24825,"this was one of the worst movies I've ever seen. I'm still not sure if it was serious, or just a satire. One of those movies that uses every stupid who dunnit cliché they can think of. Arrrrgh.<br /><br />Don Johnson was pretty good in it actually. But otherwise it sucked. It was over 10 years ago that I saw it, but it still hurts and won't stop lingering in my brain. <br /><br />The last line in the movie really sums up how stupid it is. I won't ruin it for you, should you want to tempt fate by viewing this movie. But I garantee you a *nghya* moment at the end, with a few in between. If you have nothing better to do, and you like to point and laugh, then maybe it might be worth your while. Additionally, if you're forced to go on a date with someone you really don't like, suggest watching this movie together, and they'll probably leave you alone after they see it. That's a fair price to pay, I guess.",0 +6815,"Possible spoilers re: late-appearing cameos <br /><br />Seldom does one see so many fine & memorable character actors (almost entirely actresses to be precise) in one film. Even though a few only appear for cameos, each one is a gem. The British do this mix of comedy and real-life pathos better than anyone IMO, so it is no surprise that most of the actors are Brits.<br /><br />The music is great; no doubt much had to be dubbed (does Leslie Caron *really* play the bass so well? maybe - who knew?) But Clio Lane was unmistakably herself - her warm visceral sound still turns my crank like few other jazz singers.<br /><br />As an aging musician myself, not quite as old and certainly not in that class of course, it was a heartening film as well -- a great film for anyone whose wondering if they're past it in their profession or avocation whatever it may be. And of course a great celebration of the life of the stage.<br /><br />I missed a little of the opening, but a provisional 9/10 -- and it certainly makes we want to see the whole thing.",1 +16798,It is a good film for kids who love dogs. It runs a bit slow early on but ends if a flurry of gooped up De Vil. The basic plot is the same as the first movie. The bright side of the movie for adults is the talking bird that thinks it is a dog. The bird talks like a human(Eric Idle of Monty Python) and barks like a dog. It is the comedy that the film needed more of. See it in the matinee so you don't have to pay full price or wait for it to appear on Disney.,0 +7955,"OK, OK, don't get bent out of round. I was kidding.<br /><br />""Bustin' Out"" is actually a better and truer title anyhoo.<br /><br />Racism and crime dramas get the satiric treat meant from our X-rated animator friend Ralphie boy. And he does one of his better jobs here.<br /><br />On the crime front it shows the truth. They build it, defend it, then boredom and stronger rivals cause them to (maybe) lose it. See for yourself to see what goes down.<br /><br />Racist? I don't know. With Scatman (RIP) and the love walrus (also RIP) being black and the main point of view, I saw it as an attack on racism mostly. The fact that Richard Pryor liked it says as much as well. And the younger (pre ""Miami Vice"") Phil Mike Thomas in there was a nice surprise.<br /><br />It's an animated ""Blacksploitation"" film. That's a good thing. Done well and well done. It will make some squirm (like the lynching scene) but unfortunately that's based on fact.<br /><br />But Ralphie REALLY should have re-thought that title.",1 +4293,"Why has this not been released? I kind of thought it must be a bit rubbish since it hasn't been. How wrong can a girl be! This film is, in a word, enthralling.<br /><br />You will be captivated. It holds your attention from the start and its pace never slows.<br /><br />The final part of the film, the ""episode"" as it were (not giving anything away, you saw that in the trailer) is also unmissable. You will chose a favourite, you will be shocked, you wont be able to go and make a cup of coffee because you need to find out what happens. The adrenalin rises and you cant not watch. Cudos to the actors, it's very believable. And it doesn't stop there, they have a final shock for you.<br /><br />It also makes you question reality TV and if you would watch. And how far away from this are we, really? Endemol (who make big brother) made a TV show in Holland last year offering a dying woman's kidney to patients in need of a transplant. The show was revealed at the end to be a hoax, ostensibly to raise awareness of organ donation, but are we getting too close for comfort?",1 +6244,"A very engaging, intelligent, and well-made film. Liam Neeson and Tim Roth play their roles superbly. The cinematography is outstanding. The fight scenes are amazing. This is a film I will enjoy watching again and again. One of my favorites.",1 +22931,"Or maybe that's what it feels like. Anyway, ""The Bat People"" is about as flat as a rug, bland as a sack of flour and as exciting as a rock...and as intelligent as all three combined.<br /><br />Okay, plot in a nutshell (fitting vessel, that...): a doctor (Moss) gets bitten by a bat while checking out a cave with his wife (McAndrew) and subsequently turns into a bat - well, not exactly a bat but a bat-like creature that looks more like a werewolf who kills his victims in a first-person camera viewpoint....<br /><br />But then there's the business of the sheriff (Pataki), who is about the WORST kind of sheriff: the hick kind. He hassles people, he leers at married women, he steals handkerchiefs from haberdasheries (the FIEND!), he smokes with one of those cigarette holders in his mouth and talks at the same time, making him look and sound like Buford T. Justice in ""Smokey and the Bandit"" and (this is the worst part)... HE'S THE MOST LIKEABLE CHARACTER IN THE WHOLE FILM!<br /><br />The whole film, though, is just TV movie-of-the-week-like crapola (guano, in this case). It's an AIP, for crying out loud! What did you expect, Oscar caliber stuff?<br /><br />And what else can you say about a film that not even MST3K can save?<br /><br />How about...no stars for ""The Bat People"", full version OR MST3K version!<br /><br />By the way, if there's ever a sequel for this movie, I'm burying my TV.",0 +4519,"""Dragonlord"" sees Chan returning to his role of ""Dragon"" from ""The Young Master"". Not much has carried over from the first film though. ""Tiger"", his older brother, is nowhere to be seen; neither is the Marshall, his daughter or his son played superbly by Yuen Biao in the original film. Dragon does have the same master though - presumably all the other students have moved on to other things. (Dragon's laziness at training is portrayed heavily in this film, so maybe he's still studying!) <br /><br />Originally titled ""Young Master In Love"", this film sees Dragon (for the first sixty minutes at least) pursuing a villager girl in various idiotic and slapstick ways. His rival for her affection is his friend (inappropriately named ""Cowboy"") played comically by the longtime Chan Stunt-team member Mars. We see various scenes where their silly schemes backfire. It is one of these scenes that we (thankfully) find ""Dragon"" in over his head.<br /><br />This film is notorious in that it failed expectations at the box office. That said, I'm sure the expectations were pretty high, and I feel that this film has never had a fair judgment based on it's own merits. But even when I try to do this, I still feel that there is a problem with the film. It seems quite unfocused, sometimes rushed, and I think the action is too sporadic and not as brilliant as Chan's other work from this period.<br /><br />The thing that really saves the film is the ending sequence. As in ""The Young Master"", there is a fantastic final reel that it full of incredibly exhausting action - you really feel every blow. And again, Chan goes up against the same rival from ""The Young Master"" (is it the same character?), and the timing and energy here is brilliant. Chan's style of using every last bit of his environment to help defeat his opponent - not just relying on pure physical ability - is as apparent here as anywhere else. The barn they fight in is full of clever little prop gags and improvisations. This is an absolute highlight of the film and one of Chan's incredible career.<br /><br />It's not necessary to see the prequel before seeing ""Dragonlord"", in fact, it might even raise more questions than what it hopes to answer. But it must be said that the original film is the superior film, and ""Dragonlord"", with it's focus on girl-chasing and team-sports does seem baffling. Luckily, the few fight scenes it offers (plus a fantastic shuttle-cock scene) push it over the line as a must-see film in this genre.",1 +15259,"Woosh ! Man What can I say...?<br /><br />The opening-scene, maybe? We see a bunch of mongoloid-barbarians with bad make-up jump off the walls of some ruins. They sneak around and attack some dude with a scantily clothed captive girl. The dude runs off, the mongoloids follow him and one of them stays behind seemingly to rape the girl, but instead he exposes one of her breasts and kidnaps her. Then, the dude (still on the run) sees a horse and tries to steal it. Suddenly a blond god-like looking hero with a bad wig appears, saying ""That's my horse!"". The Mighty Deathstalker just made his appearance. The mongoloids arrive, Deathstalker kills all of them (including the dude) on the tunes of some rather inappropriate Mexicanos western score (this is supposed to be a Swords & Sorcery flick, so what's with the 'arriba-trompettos'?), and then goes up to Captive Girl and exposes both her breasts. He starts to rub them and Captive Girl seems to like it. She starts liking her lips and caressing Deathstalker. Just when they are about to get down to it, this old dude appears, interrupting what could have been the end of a perfect day for Deathstalker (and a possible perfect ending for a short-film).<br /><br />Now tell me Isn't that the point where either a feminist would angrily switch off the movie, or any other male viewer would say ""This is going to be one hell of a good movie!"" The plot is as simple as throwing a kitten from the balcony: Deathstalker must obtain the Sword of Justice and use it to steal the Amulet of Life and the Chalice of Magic from the evil sorcerer Munkar.<br /><br />Aside from decapitations, dismemberment, random bloodshed, retarded fist fights and embarrassing sword fights, this film also contains a massive amount of t!ts & a$$ shots. I initially wanted to add one extra point to this movie for each gratuitous shot of naked boobies I could count. After 9 points (not even halfway into the movie), I had to give up counting. It was distracting me from the rest of the movie. And the rest of the movie was worth it. Totally crazy stuff. Check out this mutant cat/worm-like creature Munkar has as a pet and which he feeds eyeballs and fingers. And here's an interesting question: What would you do if a man in a woman's body would enter your bedroom and try to kill you with a knife? The answer is simple: You slap him around a bit, take away the knife and then try to rape him. Then you discover that he's actually not a woman, so you throw him out of your bed and tell him to leave your room. It works out well, I tell you. Deathstalker does it too, and the Deathstalker-way, is the right way!<br /><br />DEATHSTALKER is a wonderful movie, really, as pointed out in other comments. The villains are vile. The women are delicious. There's blood, sex, violence, rape and tasty chicken. There's a completely pointless tournament which just features a bunch of barbarians beating, slashing and hacking the crap out of each other. My favorite weapon used in that tournament was a giant wooden hammer, used to beat a poor contender to bloody pulp. And my favorite contender undoubtedly was that one brute with the Warthog-head (reminiscent of the Gamorrean Guards from RETURN OF THE JEDI). I won't reveal how the movie ends, but just prepare to ravish in delight when I tell you a 4-way dismemberment is thrown into the movie's climax.<br /><br />And of course, there's a wonderful display of ineptitude throughout the whole movie. See a guy being dragged behind a horse over a dirt road, and the next point-of-view shot shows him being dragged over grass (no road). See that awesome tattoo on the sorcerer's head magically change sides within the same scene (on shot has it on the left side of his head, the other on the right). Well, after all, Munkar is a magician. It's that, or this movie was shot in an alternate universe where things like ""continuity"" simply don't exist.<br /><br />As much as I enjoyed this and as much as I am looking forward to the other 3 installments in this series, I do have enough shreds of decency left in me to not let this movie pass. I am prepared, though, to give it the maximum amount of minimal points, just so I could be able to deduct a couple of more points for the possibly inferior sequels to follow. DEATHSTALKER might be a superbly fun, trashy & sleazy CONAN rip-off, it also is an abominable movie.",0 +20014,"I've noticed over the years that when a rock star makes his final album before his death, that album, if it's not his best, is usually prolific in some way and worthy of a listen at least. The album is usually good enough to cement a legacy. However, when it comes to comedians, especially mainstream comics who star in their own vehicles, their final movie is usually God awful. John Belushi had ""Neighbors"", John Candy had ""Wagon's East"", Chris Farley had ""Almost Heroes"", Phil Hartman had ""Small Soldiers"", and Rodney Dangerfield had this movie.<br /><br />""Back By Midnight"", although it may not have been Dangerfield's very last film, is weak in every sense of the word. It wrapped filming in 2002 according to this website, and it's safe to say that it would have stayed on the shelves if Dangerfield was still alive. I have been a big fan of Dangerfield's since I was in my early teens, and it pains me to see how rotten this film was.<br /><br />What amazes me the most is that a number of other talented people took part in a movie with a very weak premise to begin with. Dangerfield, a great comedian who usually played his comic persona on film, is a prison warden who houses a close knit group of inmates. When the owner of the prison, Colonel-Tom-Parker-meets-Sam-Walton billionaire Eli Rockwood (Randy Quaid), cuts funding for the prison, the warden sends a group of inmates to break out of prison, rob Rockwood's eponymous convenience stores of consumer goods, and break back into prison with the loot. By taking what's in the convenience stores, they are (I guess) taking what they believe Rockwood owes them.<br /><br />With this flimsy premise, the movie sputters and stalls frequently. On top of that, the jokes that you think would be this movie's salvation are not even close to funny, not even from Mr. No Respect himself. That is incredibly disappointing too, because you'd expect a movie with Oscar-nominated (!!!) Randy Quaid, Kirstie Alley, Gilbert Gottfried, Ed Begley Jr., Yeardley Smith, and others to be at least a little bit funny. Instead, Quaid plays a character we've seen before in countless other comedies, Alley plays a British heiress with an awful British accent (could this movie not afford an actual British person!?!), and every joke was poorly set up and poorly timed by virtually every member of this ensemble. It was just not a good comedy in any sense of the word.<br /><br />""Back By Midnight"" was rated R mainly for language (and one scene of nudity). The irony in this fact is that many of the jokes are so audience insulting that even kids (if you edit out the language) would walk out of this film. The physical gags are also incredibly predictable, especially when Alley's pet monkey torments Quaid's character. When the monkey grabs a pair of scissors and jumps on Quaid's couch, who wouldn't know where that gag was going?<br /><br />Being a direct-to-video comedy, of course I didn't expect any Oscar-winning material on here. The truth is, though, Dangerfield has made some great, timeless comedies before. ""Easy Money"" and ""Back To School"" are hilarious still, and were definitely not Oscar-worthy in the slightest. However, there's a difference between making a dumb comedy that's funny, and making a dumb comedy. With the latter kind of comedy, it seems like the filmmakers don't even try, which is precisely the case with this lame excuse for a wasted 90 minutes. Rest in Peace, Rodney, but add this film to your batch of forgettable comedies like ""Meet Wally Sparks"" (1997) and ""The Godson"" (1999). This film, dare I say it, is not even worth seeing.",0 +3843,"In my opinion, this is a pretty good celebrity skit show. I enjoyed seeing Greg Kinnear as the host. There are many reasons why I said that. Even though Hal Sparks was an okay host, I sometimes wish that Greg Kinnear hadn't left. If you ask me, it seems that nobody stays with a TV show throughout its entire run anymore. Still, I enjoyed seeing the various hosts and other people spoofing celebrities. If you ask me, that was pretty darn funny. Before I wrap this up, I must say that I kind of miss this show. Now, in conclusion, I highly recommend this show to all you die-hard sketch show fans. You will really enjoy it.",1 +23908,"This is a formula B science fiction movie, and the director made no bones about it. It is about a dragon who is restored to life by a scientific team. Everything done is stuff you've seen many times before. It is a weak script, with no real characters. In fact, it is full of stereotype characters and situations. The director attacks this by just making it a formula movie, with no attempt to fool us, and that gives this movie a mild appeal, but it isn't something you're likely to remember a while. It is best seen while you're cooking, cleaning, working out. Sort of mindless fun. It has its place in entertainment, but it certainly isn't something you sit down with friends to watch, unless you're all just drunk and don't care. The mass rating of 3.2 is probably fair. I don't think it is as crappy as most people, but I am surprised that some people in the postings thought this was spectacular. That really eludes me, as I see no attempt to even make this a memorable film.",0 +22927,"This movie promised bat people. It didn't deliver. There was a guy who got bit by a bat, but what was with the seizures? And the stupid transformation? Where was the plot? Where was the acting? Who came up with the idea to make this? Why was it allowed to be made? Why? Why? I guess we'll never know.",0 +2851,"I just finished viewing this finely conceived, and beautifully acted/directed movie. It was nip and tuck as to whether I was going to waste my time viewing a movie on the Lifetime Movie Network because of the horribly distracting commercials. Reading the earlier comments persuaded me to give it a shot. After all the worst that could happen would be that I might fall asleep during one of the boring yet lengthy bug spray ads. So why did I watch it? mainly because when IMDB gives a movie a ""WEIGHTED AVERAGE"" OF 5.8 WHO'S STATISTICAL AVERAGE was 7.3 It must be a sure hit.<br /><br />I was totally delighted to have taken the time to view this movie, commercial pox and all. Helen Hunt continues to amaze me with her ability to take on tough roles adapting her core persona to fit each role.<br /><br />The portrait she painted in this film of the tough yet perceptively human police officer was beautifully executed. When the scene calls for quick witted, timely delivered verbal intercourse, she can stand toe to toe with any actor. Yet she is adept at the delivery of volumes of emotional response without uttering a word relying only on facial expression and body language. Without the commercials, which by design kill the continuity of any good film, This would have been a real edge-of-the-seat nail-biter. I gave it a 9.0",1 +12570,Now i have never ever seen a bad movie in all my years but what is with songs in the movie what physiological meaning does it have. WOW some demented Pokémon shows up and they multiply i can get a seizure from this. Animie is pointless the makers of it are pointless its a big marketing scheme look just cut down on songs and they will get a good rating i reckon that this movie would have been fine if they put out a message you must see all the Pokémon episodes to understand whats going on and it is not a film. It is just an animation it should be on video.<br /><br />Ps: i'll give it a 1 because i just got 5 bucks i could not give it a half because there's no halves.,0 +13073,"Forest of the Damned starts out as five young friends, brother & sister Emilio (Richard Cambridge) & Ally (Sophie Holland) along with Judd (Daniel Maclagan), Molly (Nicole Petty) & Andrew (David Hood), set off on a week long holiday 'in the middle of nowhere', their words not mine. Anyway, before they know it they're deep in a forest & Emilio clumsily runs over a woman (Frances Da Costa), along with a badly injured person to add to their problems the van they're travelling in won't start & they can't get any signals on their mobile phones. They need to find help quickly so Molly & Judd wander off in the hope of finding a house, as time goes by & darkness begins to fall it becomes clear that they are not alone & that there is something nasty lurking in the woods...<br /><br />This English production was written & directed by Johannes Roberts & having looked over several other comments & reviews both here on the IMDb & across the internet Forest of the Damned seems to divide opinion with some liking it & other's not, personally it didn't do much for at all. The script is credited on screen to Roberts but here on the IMDb it lists Joseph London with 'additional screenplay material' whatever that means, the film is your basic backwoods slasher type thing like The Texas Chainsaw Massacre (1974) with your basic stranded faceless teenage victims being bumped off but uses the interesting concept of fallen angels who roam the forest & kill people for reason that are never explained to any great deal of satisfaction. Then there's Stephen, played by the ever fantastic Tom Savini, who is never given any sort of justification for what he does. Is he there to get victims for the angels? If so why did he kill Andrew by bashing his head in? The story is very loose, it never felt like a proper film. The character's are poor, the dialogue not much better & the lack of any significant story makes it hard to get into it or care about anything that's going on. Having said that it moves along at a reasonable pace & there are a couple of decent scenes here.<br /><br />Director Johannes doesn't do anything special, it's not a particularly stylish or flash film to look at. There's a few decent horror scenes & the Tom Savini character is great whenever he's on screen (although why didn't he hear Judd breaking the door down with an axe while escaping with Molly?) & it's a shame when he gets killed off. There are a couple of decent gore scenes here, someone has their head bashed in, there's a decapitation, someone gets shotgun blasted, someone throat is bitten out, someones lips are bitten off & someone is ripped in half. There is also a fair amount of full frontal female nudity, not that it helps much.<br /><br />Technically Forest of the Damned is OK, it's reasonably well made but nothing overly special or eye-catching. This was shot in England & Wales & it's quite odd to see an English setting for a very American themed backwards horror. The acting is generally pretty poor save for Savini who deserves to be in better than this. Horror author Shaun Hutson has an embarrassing cameo at the end & proves he should stick to writing rather than acting.<br /><br />Forest of the Damned was a pretty poor horror film, it seems to have fans out there so maybe I'm missing something but it's not a film I have much fondness for. Apart from one or two decent moments there's not much here to recommend.",0 +5815,"Watched this as a late TV movie last night purely by chance. The blurb for the film said something to the effect of mother stays with daughter and goes on romantic journey, as I tuned in there's the carpenter hard at work on a new conservatory - played by Daniel Craig no less - so the plot was immediately apparent.<br /><br />It turns out that eponymous mother's carpenter love interest is also the daughter's boyfriend, so there's trouble brewing and not too many surprises. But I'd been caught by Anne Reid's compelling performance and I was hooked. The direction allows her plenty of space for staring into mirrors and adjusting scarves, when she exudes sadness.<br /><br />The sex scenes were fascinating and taboo-breaking. Shouldn't older women's bodies remain covered up? Not here and we're treated to a delicious reawakening in the Mother's sexuality. Even more startling are the drawings she's made that (SPOILER!) once discovered confirm her daughter's suspicion that something's going on here.<br /><br />Cathryn Bradshaw as the daughter didn't convince me quite as much as the rest of the cast, but that could be me. With her waves of pre-Raph locks I kept expecting to see Julia Sawahla, whose more intense face would have suited the confrontations better to my mind. Bradshaw has a rounder happier face that didn't carry the anger that emerges as the film progresses.<br /><br />The ending is weak. If the goodbyes for Mother as she leaves in disgrace are so indifferent then perhaps we could see some close-ups of those waving goodbye and see something of their individual reasons. Whatever she's done, she's a recently bereaved widow leaving for the lonely home she shared with her husband for 30 years, and I found the lack of sympathy jarring. For a film so full of emotion (and be warned it's like opening champagne, you'll never get the lid back on) the ending is a cold contradiction.",1 +12591,"I laughed all the way through this rotten movie. It's so unbelievable. A woman leaves her husband after many years of marriage, has a breakdown in front of a real estate office. What happens? The office manager comes outside and offers her a job!!! Hilarious! Next thing you know the two women are going at it. Yep, they're lesbians! Nothing rings true in this ""Lifetime for Women with nothing better to do"" movie. Clunky dialogue like ""I don't want to spend the rest of my life feeling like I had a chance to be happy and didn't take it"" doesn't help. There's a wealthy, distant mother who disapproves of her daughter's new relationship. A sassy black maid - unbelievable that in the year 2003, a film gets made in which there's a sassy black maid. Hattie McDaniel must be turning in her grave. The woman has a husband who freaks out and wants custody of the snotty teenage kids. Sheesh! No cliche is left unturned.",0 +8157,"Cult classics are nearly impossible to predict. Who could guess that Vision Quest, Fight Club, and 2001: A Space Oddysey, movies that were panned by critics and audiences alike upon their release, would become immensely popular? Like many IMDBers, I consider myself a movie expert. Unlike the majority of those who hated Envy(evidenced by a dismal 4.4 rating), I found Envy to be one of the funniest movies in the last decade.<br /><br />The plot of the movie is ridiculous. The dialogue isn't clever, the scenes have little continuity, and the script seems like it was written by a fourth grader. But that's exactly why the movie is so hilarious. You see, in order to appreciate the accidental genius of Envy, you have to enjoy the movie from an ironically-detached point of view.<br /><br />Why do I love Envy? Because the movie is bad to the point that it becomes good. This is the recipe for a cult classic, and Envy definitely fits the bill.",1 +9153,"I have seen this movie a while back, after ordering it for my friend, who is a big Dominic Monaghan fan. The movie itself was very interesting, though it had its positive points, which for me was the Donnie Darko kind of ""wtf?"" factor after the movie had ended.<br /><br />Of course, with positive also come negative points. To me, the young girl in the film was incredibly good, and Dominic Monaghan did a good job as well. Unfortunately I don't have this opinion about Daniel Burke, who played Lonnie. This might just be me, and I'm not claiming to be a serious critic, in the way that I don't find myself skilled enough, but he just didn't seem convincing as an actor. But perhaps it's even more striking then, for although I am not a critic, this does get my attention.<br /><br />To conclude, over all I think it's definitely a film worth watching. It's interesting, confusing, and you just should have seen it.",1 +6379,"but I want to say I cannot agree more with Moira.<br /><br />What a wonderful film.<br /><br />I was thinking about it just this morning, wanting to give advice to some dopey sod who'd lost money on his debit card through fraud, and wanted to say 'Keep thy money in thine pocket' and realised I was talking like James Mason.<br /><br />Even tho he didn't say those words, I still think he would! I've never forgotten 'Are ye carrying?' in his reconciliation with his son, Hywel Bennet: 'Always have money in thine pocket!' Good advice.<br /><br />Not enough kids have fathers with such unforgiving but well-meant attitudes any more. Or any father at all.<br /><br />It would be a good thing for us to reinstate 'thee', 'thy' and 'thine' in our language to show we care. It is only the same as 'tutoyer' in French or 'du' in German.<br /><br />Addendum: I just realised that a lot of my remarks were about James Mason in The Family Way!<br /><br />I think it's because I mixed up Susan George with Hayley Mills. Well, easy mistake.<br /><br />I stand by the comments tho'.<br /><br />And Spring and Port Wine is so very similar to The Family Way.<br /><br />When you took a girlfriend to the pictures in those days, you really had something to say and talk about afterwards, something that affected your knowledge of the world and your personal development.<br /><br />Theatrical experiences are almost real, and they are important in helping young people to grow up.<br /><br />It doesn't happen now, I think, that teenagers can just go to the pics like we did.",1 +15443,"This movie was rented by a friend. Her choice is normally good. I read the cover first and was expecting a good movie. Although it<br /><br />was a horror movie. Which i don't prefer. But no horror came to mind while watching the movie. It was a dull,<br /><br />not very entertaining movie. The appearance of Denise Richards<br /><br />was again a pleasure for the eye. But that's it. We (the four of us)<br /><br />we're a little bit disappointed. But feel free to see this movie and<br /><br />judge it yourself.",0 +397,"I remember seeing this movie shown several years ago on the Lifetime TV network and thought it was an interesting story. Several years later I see it again and fall head over heels in love with this movie. The story behind the movie is fascinating in and of itself. The cast just makes it that much more appealing. Meryl Streep is definitely at the top of her game in this picture. She nails Mrs. Chamberlain's mannerisms, the accent, and even look. She shows the pain, hurt, surprise, and anger that Lindy had to endure, and in the process it's hard to remember that it ISN'T Lindy. In my opinion, this performance of Meryl's was better than her Oscar-winning turn in ""Sophie's Choice"", and should have garnered her her third Oscar. Sam Neill is perfect as Michael Chamberlain, and for some surprising reason, wasn't recognized by the Academy with at least a nomination. In all, this movie only receive ONE Oscar nod (Streep's for Best Actress.) However, it did receive several Australian Oscars and nominations.<br /><br />Definitely a top-rate movie: it tells a great story and you get great performances from the entire cast.",1 +6878,"I believe a lot of people down rated the movie, NOT because of the lack of quality. But it did not follow the standard Hollywood formula. Some of the conflicts are not resolved. The ending is just a little too real for others, but the journey the rich characters and long list of supporters provide is both thought provoking and very entertaining. Even the cinematography is excellent given the urban setting, the directing also is excellent and innovative.<br /><br />This is a 10 in my book, this movie will take you places the normal and expected Hollywood script will not. They took some risks and did a few things different. I think it worked well, I am purposely trying to avoid any direct references to the movie because seeing it for yourself is the best answer, not accepting someone else's interpretation.",1 +21803,Welcome to a bad ghost story and someone's nightmare. This horror tale finds a newly married husband(John Hudson)and wife(Peggy Weber)haunted by the memory of his previous wife and screaming skulls found throughout their empty mansion and lily pond. Is the husband really trying to drive his already anxious bride insane? Or is it the learning challenged gardener Mickey(Alex Nicol)who has taken care of the mansion's grounds since the death of the original mistress of the house? This low budget horror flick has a story line that keeps you involved all the way the finale. Special effects are pretty bad even at 1958 standards. I swear at times the screaming skull sounds much like it should be in a Godzilla movie. Also in the cast as Reverend Snow is character actor Russ Conway. By the way...the lurking gardener(Nicol)is the film's director. You can catch this as part of AMC's Monsterfest.,0 +1201,"OK... this movie so far has been slated by critics and board-posters alike (although playing devil's advocate you could suggest that critics are often people who didn't make it for themselves as film-makers, and board posters are often people who didn't make it for themselves as critics) so I wanted to sit in Guy's corner with the magic sponge to perhaps reach maybe a couple of the people who've decided not to see the film based on how everybody seems to be looking down their collective nose of approval at it.<br /><br />The film's biggest flaw in earning wide support is how unexpectedly complex it is. This has been described many times as as making the film ""inaccessible"" to the viewer. The film's chronology is relatively non-linear and the characters are used as not only a means of storytelling but as a device for showing us the subtle (or not so subtle) hints of bias we give things as we commit them to memory, IE. Ray Liotta's character brandishing a gun saying the words ""fear me"" is portrayed as both tragically pathetic (from Statham's POV) or interrogating and bold (from Liotta's POV). This is but one example of Ritchie's far more mature approach he has taken to film-making with Revolver, we have a storyline which is pretty archetypal (the strong but silent gritty anti-hero gets released from jail with a score to settle but gets drawn inadvertently into a world of corruption... I mean it's paint by numbers film noir here guys, all the way down to the vague poetic choice of diction and the gritty voice-overs) but then Guy has taken this framework to make a number of extremely philosophical and complex points.<br /><br />Take the scene where Jason Statham's character runs afoul of a car. This throwaway sequence could have been emitted from the film and made no difference to the story whatsoever... but Ritchie is making point about how such little chance happenings such as receiving a phone call can make the difference between life and death.<br /><br />So the final act of the movie is pretty mind boggling, I'd be taking the p*ss if I said I didn't spend the last 20 minutes or so of the film turning to my date going ""uh... wtf?""... but that is the shoddiest reason to disregard a piece of art. It is far too easy to dislike something because you find it hard to understand. And even easier to say ""well nobody else seemed to understand it so it must be a real turd of a film!"". In my humble opinion, Revolver is a stylish, complex and mature piece of modern art which should be greeted with the same manner we would give the work of the Saatchi Brothers. If we choose this opportunity to collectively say ""Ah sh*t, I wanted a film about a load of bleeding' cockney gangsters in-nit loll... Guy Ritchie is a tit!"" then the day will come when film-makers are allowed only to make that which is expected of them by shallow, crappy people. Just because Guy made a name for himself with funny, cheeky cockney romps, doesn't mean he can't be deep without being ""pretentious"". Funny people can be thoughtful too.",1 +6384,"I saw only the first part of this series when it debuted back in the late 90's and only recently got a chance to watch all three parts via Netflix (convenient service by the way). All in all, I liked this lighthearted, sometimes genre challenged, mini series. The story of a younger man falling for an older woman seems to work and the actors are all fine. Yes, it does have some romance clichés of running in the rain or a train station goodbye, but the characters have a chance to be explored so it doesn't seem cheesy, like it would be if this were some Tom Hanks vehicle or similar. Robson Greene, who at times reminds me of a separated-at-birth Scott Bakula does a fine job of someone who is head over heels in love and the ebb and tide of desire and rejection throws the series into watchable fare. Personally, I think the series could have been done with two episodes, but that's up for debate I suppose. Apparently, there's a sequel, and that should be arriving tomorrow via Netflix.",1 +8550,"""Så som in himmelen"" was probably one of the 3 most beautiful films I have seen in my life. That it did not win the Oscar, I will not shed a tear. This movie is in a kind of class of its own, that an Oscar win would possibly have detracted from it!!! My dearest friend Anders (Nyberg), you have done true magnificence with your pen here! Kay Pollak, with your creation, and everyone contributing, you all have given a gift of Love to our world. Between the points of entering this world of ours, then exiting it - you really can say that you made it better! A special personal thank you from my soul to all of you, that you brought back some precious memories from the second decade of my life. I grew up in Sweden, and my young mind and present Beingness was formed and shaped by many beautiful Swedish influences, individuals, traditions, music and nature. My blessings with gratitude to you all. With Love and Light, George-Gabriel Berkovits Soulhealer, Johannesburg, South Africa",1 +516,"Even this early in his career, Capra was quite accomplished with his camera-work and his timing. This is a thin story -- and quite predictable at times -- but he gets very good performances out of his cast and has some rather intricate camera moves that involve the viewer intimately. The first part looks like a Cinderella story, though anyone with brains can see that the bottom will fall out of that -- the rich 'prince' will lose his fortune.<br /><br />Nonetheless, because of his good cast and fast pace, it's easy to get caught up in the clichés. Then the movie does become more original, as the married couple have to find a way to make a living. The ending is very predictable but satisfying. I also want to compliment the title-writing: very witty and fun.",1 +3588,"One of the last great musicals of the 60s. I was 7 years old the first time I saw this movie, and it's always been a favorite since then. The musical numbers are all memorable. In the 60s the people who were cast in musicals actually had musical talent (unlike a CERTAIN Academy Award nominated current musical based in a large midwestern city). All of the main roles were beautifully cast...Ron Moody shines as Fagin, as does Shani Wallis as Nancy. Oliver Reed was a menacing Bill Sikes (who thankfully has no musical numbers, lol), and Mark Lester as Oliver and Jack Wild as the Dodger were great too. Mark Lester comes across as an innocent waif, which was what Dickens intended when he wrote the book! Then, of course there are the dozens of dancers who perform in ""consider yourself,"" ""I'd Do Anything"" ""Who Will Buy"" and ""be Back Soon,"" many who were children! This is a great show for the whole family.",1 +2250,"Somewhere near the bottom of the film studio ladder you can find companies like U.F.O, Troma and beneath them lie Seduction cinema.<br /><br />Seduction is a direct to video production company that specialize in lesbian themed, non-hardcore erotic movies. It has developed a very dedicated fan base that purchase each new title as they are released but sadly the company has become too closely associated with frequent star Misty Mundae. I say sadly because recent mainstream interest and her appearance on the show Masters of Horrors has caused her to set her sights a little higher than the zero budget S.C efforts which forces the company to find a new identity. But back in their glory days they released this film on a very appreciative world.<br /><br />The gorgeous Misty Mundae is forced to attend a boarding school at the request of a absent father. At the school she meets her absurdly hot room-mate played by Ruby Larocca who immediately has designs on her but the headmistress (Barbara Joyce) has other plans. In typical S.C style the movie stops every ten minutes for a extended sex scene but unlike most of their efforts this one has a somewhat interesting story and a couple of good performances. Ms. Larocca appears to be having a great time as the sexual predator who views Misty as a tasty meal and Darian Caine makes a welcome (though brief) appearance as Satan. This is the sort of film that Jess Franco would crank out in the 70s (although this one does not have the hardcore sex that Franco was always willing to throw in for foreign sales) and fans of that madman's work would be wise to give this one a go.<br /><br />To me, as a long time zero budget cinema fan (and Troma worshiper), I came across the Seduction cinema films through their parody films (Playmate of the apes, Who wants to be a erotic billionaire) but I actually prefer their more original works. You either see past the low budget and occasionally weak acting or you get hung up on these things and just hate all of these films. For me the most obvious thing that unites these no-budget movies is a real sense of fun. These low budget companies are able to create their own unique style which gives the viewer something very different from the bland, by the numbers, studio efforts that load up the multiplexes.<br /><br />If you have never seen a Seduction cinema film either this or Sin Sisters (featuring both of the Mundae sisters) are excellent choices to begin with. This one is a fun, fast paced film (although the frequent exterior shots of the school do get a little old) and the DVD is totally loaded with extras including a ton of previews of other company offerings, a great behind the scenes featurette and some deleted scenes including a alternate opening. I do recommend you pass on the disc's bonus feature, the first film by director, as it is quite weak and not really worth viewing.",1 +18161,"W. Somerset Maugham's Of Human Bondage is supposed to be a English language classic. If so, much must have been missing from the film version here. Phillip's (Leslie Howard) attraction to Mildred (Bette Davis) is so utterly inexplicable as to make the scenario seem like the post-breakup retelling of a relationship from the man's point of view. Being a family lawyer I've heard many such accounts; the man depicts himself as noble and always correct, and the woman is a hellion who has had no other objective than to exploit the man.<br /><br />Indeed, unless one is willing to laugh at the social assumptions of the film maker, this is an uncomfortable movie to watch. Phillip even indulges Mildred when she brings over a baby of indeterminate paternity, but the real high point comes when Phillip allows Mildred - enraged and now of dubious sanity - the free run of his flat, with predictable results. Bette Davis was attractive for about five years of her life, but that period didn't occur here. In fact, by the end of the movie she looks a lot like the Baby Jane character she would play thirty years later.<br /><br />I note how Howard's character is always impeccably dressed and groomed. It tells me that Phillip craves middle class respectability. Someone like that could not run from a woman with a course Cockney accent fast enough. Phillip is, for most of the movie, a student; such a person would have been more believable if he had been younger, and had the disheveled looks that bespeak the low income and the low self esteem that often accompanies student status - an English Raskolnikov, as it will. And balanced that by allowing Mildred a modicum of charm.",0 +1457,fascinating look at fascist italy and the people who carved out a life under mussolini. street scenes and lifestyle glimpses alone are worth watching. combine this with a masterful plot and premier acting and you get a film that you will want to watch again . .. and maybe again.,1 +4556,"Japanese indie film with humor and philosophy where the three main characters run literally almost through the entire film, chasing each other due to strange circumstances and comical coincidence. As they are running, we see what is going on in their minds and how they got where they are at the moment. The act of running is a metaphor for these down-on-their luck people's lives. In some way, what they're really chasing for is not what they were originally chasing, but for meaning in their lives and an escape from their personal problems and broken dreams. Running makes them all feel truly alive. The big life-altering running adventure comes to an end when they accidentally get in the middle of something big, violent, and so absurd that it's funny in a clever way. One of my favorite films of all time by genius director Sabu.",1 +7516,"I've read up a little bit on Che before watching this film and you wanna know something, he was a real hero for the people because he only wanted to see equality for everyone and that he hated what the oppressive forces were doing to his people as well as all other Latin Americans in general! Now, I don't know about others, but to me he did the right thing by wanting socialism so that everyone had to pay their fair share. However, the powerful elite obviously weren't going to go for that. So, rather than understanding what Che Guevera wanted, they were forced to kill him in attempting to suppress the revolution. It didn't work since there were too many of his other followers who only picked up where he left off. A good example of this was when Castro continued his leadership in Cuba. As far as I'm concerned and as Che said it himself right before he died: ""If you kill me, that's fine. But you're only killing a man, you'll NEVER kill the cause!"" I couldn't have said it any better myself.<br /><br />But ... ANYWAYS.... that's why I give this film a 7 out of 10.",1 +20975,"With a movie called ""Gayniggers from Outer Space"" how could you go wrong? Just throw in some over the top stereotypes for the characters, use the Village People as the main suppliers for the soundtrack, and throw in tons of gay-gags. Plot is unimportant. Too bad, this film doesn't contain any of this and every joke misses the spot. The characters all look alike apart from the german gaynigger, one or two jokes work, the rest fails.<br /><br />The title made me laugh and I was prepared to laugh even more about the film. My expectation were to high apparently.",0 +18688,"Admittedly, I find Al Pacino to be a guilty pleasure. He was a fine actor until Scent of a Woman, where he apparently overdosed on himself irreparably. I hoped this film, of which I'd heard almost nothing growing up, would be a nice little gem. An overlooked, ahead-of-its-time, intelligent and engaging city-political thriller. It's not.<br /><br />City Hall is a movie that clouds its plot with so many characters, names, and ""realistic"" citywide issues, that for a while you think its a plot in scope so broad and implicating, that once you find out the truth, it will blow your mind. In truth, however, these subplots and digressions result ultimately in fairly tame and very familiar urban story trademarks such as Corruption of Power, Two-Faced Politicians, Mafia with Police ties, etc. And theoretically, this setup allows for some thrilling tension, the fear that none of the characters are safe, and anything could happen! But again, it really doesn't.<br /><br />Unfortunately, the only things that happen are quite predictable, and we're left with several ""confession"" monologues, that are meant as a whole to form modern a fable of sorts, a lesson in the moral ambiguity of the ""real world"" of politics and society. But after 110 minutes of names and missing reports and a spider-web of lies and cover-ups, the audience is usually treated to a somewhat satisfying reveal. I don't think we're left with that in City Hall, and while it's a very full film, I don't find it altogether rich.",0 +13758,"A documentarist, like any filmmaker, must convey a compelling story. Will Pascoe fails utterly in this effort, cobbling together uninspired snippets of Chomsky's wisdom from a visit to McMaster University in Hamilton. The footage is shot amateurishly and in video. Pascoe's only effort at cohering the fragments into a whole is by periodically throwing a vague title on the screen: ""9-11,"" ""Activism,"" ""Truth.""<br /><br />Lame.<br /><br />Compare this with documentaries like ""The Corporation"" or ""The Fog of War"" which create a narrative drawing material from interviews, stock footage, and filmed footage. In the end each delivers a poignant and insightful message deftly and intelligently.<br /><br />The only saving graces of the film are Chomsky's nonchalantly delivered upendings of historical dogma, and the fact that the running time is only 74 minutes.<br /><br />One of the more interesting passages was Chomsky's recounting of his experience with National Public Radio. He describes the conservative media as more accommodating to dissenting views, while NPR's liberal dogma strait-jackets its interviewees and dramatically limits its permitted messages. Yet another media outlet to be skeptical of.<br /><br />This documentary is for Noam Chomsky completists only.",0 +3351,"Steve Carell has made a career out of portraying the slightly odd straight guy, first on 'The Daily Show', and then in various supporting roles. In Virgin, Carell has found a clever and hilarious script that perfectly capitalizes on his strengths. Carell plays Andy Stitzer, a middle aged man living a quiet, lonely life. Andy is a little odd, but in an awkward nice guy sort of way. One night, while socializing with his co-workers for the first time, Andy accidentally reveals that he is a virgin. His co-workers, David (Paul Rudd), Jay (Romany Malco), and Cal (Seth Rogen) initially tease Andy about his situation. But it's clear that all three have a certain respect for the decent human being that Andy is, and they resolve to help him out by assisting him in ending his virginity. And so begins Andy's quest into adulthood. Andy is the quintessential innocent, and the bulk of the humor derives from his naiveté to the situations he finds himself in throughout the film. Some of the humor is crude gross out stuff, but most of it is just well done intelligent comedy. In addition, I found some parts of the film actually pretty touching as Andy finds himself developing both romantic relationships and friendships perhaps for the first time in his life. I'm not trying to portray the movie as a love story or a drama; it's a rolling in your seats comedy. Still, every good comedy I have ever seen contains enough heart for you to care about the characters. A good comparison would be 'The Wedding Crashers' from earlier this summer. Virgin has a similar humor, but is perhaps a bit more vulgar in some of its jokes. I particularly loved the ending of the film, which I thought was a perfect way to end the flick. Without giving anything away, it reminded me of 'Something About Mary'. Very light and fun; it leaves you laughing and smiling, which is exactly how you should feel when you finish a comedy. I would highly recommend.",1 +19137,"This is one of the worst movies I've ever seen. I saw it at the premiere at SXSW and was extremely disappointed. The director knew little about John Lennon and even said as much at the premiere. This is a drama, but people were laughing throughout at how cheesy the film was. That's never a good sign. The only saving graces were Dominic Monaghan and Jason Leonard as Livien's roommates/bandmates. They were funny while the rest of the movie took itself waaay too seriously. The cheesy dropping of Beatles lyrics was just absurd. The soundtrack was excellent, however, and was probably the best part of the movie. Unless you're one of those crazy, rabid Dominic Monaghan fans, don't bother with this one.",0 +2168,"Scoop *** out of **** Woody Allen is definitely not my favorite director, but I enjoyed ""Match Point."" It was an excellent dark romantic thriller that luckily did not star Woody Allen. It did have the beautiful Scarlett Johansson in it.<br /><br />""Scoop"" is Woody Allen's latest film and though he appears in this one, it's OK. It also features Scarlett Johansson and the two of them work perfect together.<br /><br />Johansson plays Sondra Pransky, a young college journalist who gets the scoop of a life time from the ghost of Joe Strombel (Ian McShane.) Joe heard the scoop while on a boat with the grim reaper and a bunch of other souls the Reaper has taken. One of those souls is the secretary of Peter Lyman (Hugh Jackman.) She tells Joe that Peter may be the serial killer roaming the streets of England. Joe, with the scoop of a life time, travels back to the living and gives this info to Sondra, during a magic act. Sondra is at some magic show with Magician Sid Waterman (Woody Allen.) She becomes a volunteer to go in a disappearing box and while she is in the box, she gets the visit from Joe. Not knowing what to do, she enlists the help of Sid Waterman to help her crack the case.<br /><br />This film has a nice light-hearted feel to it compared to ""Match Point"" and yet it all works. Johansson and Allen work great together. Allen's humor fits perfect for this story and role. Hugh Jackman is terrific as Peter Layman, the ""suspected"" serial killer.<br /><br />This is a fun little movie to see if your ever looking for one to watch. The cast ensemble works well together and the story flows and you sometimes forget that your watching Woody Allen be himself. I say give it a chance because you just might like it.",1 +22511,"After a series of power-outages on a remote island zoo, genetically engineered sabertooth tigers are on the loose and mauling residents of the island. Man, the sci-fi channel has made some bad ""original"" movies, but I think this might possibly be their worst so far! This badly written and directed ""Jurassic Park"" rip-off offers all the usual clichés (mad scientists who thinks people killed by the monsters are ""expendable losses"", characters walking down long dark hallways alone, brain-dead teen characters who's only function in the film is to die a horrible death, etc.), and, unsurprisingly, no suspense whatsoever. The special effects are atrociousthe puppet heads in close-ups of the title beasties are bad enough, looking like stiff plush dolls, but the CGIwhich makes the computer-generated dinosaurs in ""Walking with Dinosaurs"" look life-like by comparisonare just downright awful. There's some gore, but most of it looks pretty unconvincing. Oh, and the death scene of the scientist at the end is truly one of the worst things I've seen in years. I couldn't even laugh it was so bad!<br /><br />Don't waste your time, this one is just downright bad.<br /><br />2/10. <br /><br />Oh, and here's some interesting trivia for youthis film borrowed music cues from the 2003 sci-fi film ""Alien Hunter"", which was far superior to this piece of crap.",0 +5474,"it's a very nice movie and i would definitely recommend it to everyone. but there are 2 minus points: - the level of the stories has a large spectrum. some of the scenes are very great and some are just boring. - a lot of stories are not self-contained (if you compare to f.e. coffee and cigarettes, where each story has a point, a message, a punchline or however you wanna call it) but well, most stories are really good, some are great and overall it's one of the best movies this year for sure!<br /><br />annoying, that i have to fill 10 lines at minimum, i haven't got more to say and i don't want to start analyzing the single sequences...<br /><br />well, i think that's it!",1 +12136,"I didn't give this movie a perfect score in order to be honest in comparing to great classics like ""Citizen Kane"" and ""Seven Samaurai."" However, this movie is so all-around wonderful, it's a real shame it scores so poorly for the general IMDb voter. However, the IMDb voter leans to the geeky, and ""Paulie"" doesn't qualify for that.<br /><br />The only acting criticism I might suggest is that Hallie Kate Eisenberg didn't portray the perfect stuttering child. I'm sorry, but asking a 6 year-old child to out-do Dustin Hoffman as the Rainman is asking for the impossible in film-making.<br /><br />Moving past that minor complaint, the movie has the best of many films: buddy road-trip, con-games, hero as friendly party-animal (party-bird?), Disney-like humor for young and old, etc. What's not to like? Tony Shaloub wears his role like a pair of comfortable jeans. That's normal for him, it seems. (""I'm Russian... I LIKE long stories.) I don't like mangoes, but he almost makes me want to go out and buy one. Watch the movie and that will make sense.<br /><br />Buddy Hackett and Cheech Marin make very appropriate appearances in the film. Roles that are quite fitting to what we all know about them. I have always found Jay Mohr to be a bit slimy, and his on-screen role fits that as well. The only surprise to me was finding that Jay was also Paulie's voice. In the end, even that works well; put Parrot and anti-Parrot together as a team and it creates a magic of its own.<br /><br />If you are trying to find a film for you and the kids that is neither insulting nor boring for either, ""Paulie"" is a perfect candidate. I will, however, admit that a happy moment colors my review of ""Paulie."" I was on a road-trip during a major heat-wave. The car's air-conditioning died, half the restaurants had dead cooling (as did our hotel) and I said, ""let's watch a movie where there is working air-conditioning."" So we did. So for 100 minutes we were cooled, amused, and given a heart-warming experience. When I saw it recently on VCR under less emotional circumstances, I realized just how well this movie was made.<br /><br />It's a sleeper film you won't regret watching.",1 +6599,"Twenty five years ago, I showed this film in some children's classes in Entomology and can still remember the excitement of the kids; they were spellbound! It is not just about the termites who have built and live in the ""Castles of Clay,"" but also about the other animals who use the mounds. There is a fantastic scene in which a cobra fights a monitor lizard while a colony of mongooses watch. It is a not only good for entomology classes, but also for teaching about ecology since there is so much about the interactions between the termites and other organisms and the whole ecology of all of the organisms that live in and around the mounds. <br /><br />I wish it was available on DVD, so that I could watch it again and show others.",1 +17355,"I just finished watching Going Overboard. I have to say that we should send every copy of this film to Iraq and make them watch. I even tried to get a blind women to watch this and she turned it off in like 20 min. Adam Sandler could not find a better project than this? As for the writing, if thats what you want to call it, those responsible should be forced to watch this movie forever in Hell!! I believe that somewhere I read that the budget for this film was $10,000 and they were way under. Did Wallmart get a good deal on this? Every store has a big huge bin of this crap sitting on the sales floor. The only good thing about this movie is you can use the DVD as a coaster, or trade it to a friend, but then they might not be your friend anymore!!",0 +3189,"So wonderful, so quirky, so romantic, so Italian. The film is so feather -light you float off into its refracted reality and you never want to return to the humdrum again. A kitchen sink world of bakeries, and hairdressers, and plumbing, but one that shimmers with a soft luminescence. Should the credit go to the screenplay or the direction? Take your pick -- they're both faultless. Let me get back to that New York City that lies just beyond the looking glass.",1 +1056,"Big S isn't playing with taboos or forcing an agenda like, say Mencia or Chapelle (though I like them both). She states the obvious in subtle, near subliminal remarks. Her show won't change the World, nor is it meant to. But, along with the hilarious Brian Posehn and Paget Brewster's ex-boyfriend Jay Johnston of ""Mr. Show"" fame, this is one mean show with an appetite for destruction! My side's were thoroughly wrecked by the first episode. Look, I love this woman and like her famed boyfriend, Jimmy Kimmel, she just delivers the lines and lets the viewer run- with-it. The best kind of comedy around. Spoofing anything and anyone, like ""Mary Poppins"" in the second episode when she sings to the fake birds on to quick hitting commentary on society and college aged existential nonsense. This one is highly recommended, but only for those who still have a funny bone (and didn't lose it in their most recent lippo-suction treatment or boob job).",1 +16811,"SPOILER ALERT ! ! ! Personally I don't understand why Pete did not help to save Williams life,I mean that would be great to know why William was motivated,or forced.I think Secret Service members are every day people,and there is a rumor the writer was a member of the Secret Service,now he's motivations are clear,well known.But as a rental this film will not satisfy you,cause the old but used twists,the average acting -these are just things in this film,only for keep you wait the end.Clark Johnson as the director of S.W.A.T. did a far better work like this time,and I still wondering how the producers (for example Michael Douglas)left this film to theaters.",0 +20027,"The problem with family dramas is that, outside of TV movies on channels like Lifetime, most people don't want to watch them. And the ones that do get watched tend to be sensationalized and about current or topical problems or issues in the news (or recent news). Movies that explain or explore the human condition aren't popular. Particularly with the young crowd that would be Miss Lohan's fan base or the younger crowd that tends to make movies not simply popular but financially successful for studios.<br /><br />The specific problems I had with this movie is the cartoonishness of some of the characterizations. It was a bit much to blame all of the Lohan's character's acting-out (wrecking the car, drug use, etc.) on what her step-father did to her. While not improbable,it's just a bit much to expect the audience to swallow. Additionally, other aspects, such as her giving the young Morman boy, oral sex, or that she would actually make a good assistant to the vet, who coincidentally happens to have a thing for her mother, etc., all these elements just did not really help this movie along. It placed it more in the element of a situation comedy trying one of their ""special dramatic episodes"" then it did for a fully realized, well-written feature film.<br /><br />When you watch the DVD and listen to the commentary, particularly for the various alternate endings, you can really see all of this is sharp focus.",0 +13169,"This movie is mostly crap and the only reason this movie is worth watching is because Jean-Claud Vam Damme stars in this movie.There are some good action scenes in this movie and the best ones are at the end of the movie.<br /><br />The acting in this movie is so bad and its the worst acting i have ever seen and the 2 actors Bill Goldberg and Michael Jai White Can not act at ALL.And this movie by far has to be one of Jean-Claud Vam Dammes worst movies he has done and if u what to watch him in one of his great movies u should watch Blood sport,KickBoxer or Sudden Death.<br /><br />Over all this movie is crap/OK and my rating is 4 out of 10.",0 +10772,"What can I say? An excellent end to an excellent series! It never quite got the exposure it deserved in Asia, but by far, the best cop show with the best writing and the best cast on televison. EVER! The end of a great era. Sorry to see you go...",1 +8240,"""Such a Long Journey"" is a well crafted film, a good shoot, and a showcase for some good performances. However, the story is such a jumble of subplots and peculiar characters that it becomes a sort of Jack of all plots and master of none. Also, Western audiences will likely find the esoterics of the rather obscure Parsee culture a little much to get their arms around in 1.7 hours. Recommended for those with an interest in India.",1 +4520,"This movie is bufoonery! and I loved it! The ""dragon lord"" (Jacky Chan) and his buddy, ""cowboy"", totally made the movie fun, meaningful, and just plain silly. The movie is a rare blend of a good vs. evil fight and (somehow) the wonders and fun that is growing up. Long Shao Ye takes the viewer through the daily activities of the young ""dragon lord"" (so named because he is the son of a wealthy family) and ""cowboy"", which include implementing clever, elaborate ways to escape studying (with the help of the entire household, including the tutor), competing in rather boyish (and idiotically interesting) ways to gain the affection of a local girl, competing in ""soccer"" (you will see what i mean) and the list goes on. Somehow they find themselves in the midst of a fight to save the a shipment of valuable antiques and the lives of several people.<br /><br />The movie has its serious moments. But they do not depress, but rather inspire. The playfulness of the boys are not lost in this exchange, but is actually employed against evil. What I really loved about this movie is how it ends. Not the typical confrontation (which in itself was awesome), but well, you'll see. Let me just say it truly captures the spirit of the movie.<br /><br />silly, witty, meaningful, and nostalgic. great movie.",1 +5098,"The Farrelly brothers, Bobby and Peter, are at it again. With ""Fever Pitch"" the creators of other films that have dealt with a lot of gross themes, abandon that tactic when they decided to bring Nick Hornby's film to the screen, something that it would have been hard to do. The novel, of the same title, dealt with a man's obsession with soccer, since it is set in England, where that sport consumes most of British sports fans. It's to the credit of the writing team of Lowell Ganz and Babaloo Mandell, to transform the book into a language that would appeal to most Americans, when they make their hero, a Boston Red Sox fan.<br /><br />""Fever Pitch"" is a film that presents an obsessive fan, Ben Wrightly, whose life revolves into the Red Sox season, and who is an eighth grade teacher with uncanny ways for involving his students into the subject he tries to teach them. When Ben takes four of his best pupils for a tour of a local firm, he meets, and falls hopelessly in love with the brainy Lindsey Meeks, a young woman who is going places, but at thirty, has no life of her own.<br /><br />The story follows the two lovers through the ritual of attending the Red Sox, at home games, in Fenway Park. This team's fans are probably the most loyal people in the world, having stuck with a team that does marvelous things but, until 2004, never won a World Series. In fact, the ending, from what we heard, had to be changed because that was the year in which they finally won the event that had eluded them for eighty six years! Drew Barrymore and Jimmy Fallon are perfect as the couple at the center of the film. Ms. Barrymore is a natural who always surprises in her appearances in front of the camera. Jimmy Fallon, a popular television comedian, turned movie actor, has a better opportunity here than in his last appearance in ""Taxi"", in our humble opinion.<br /><br />The Farrelly brothers film will satisfy their fans as well as baseball fans with this baseball tale.",1 +13365,"Have you ever heard the saying that people ""telegraph their intentions?"" Well in this movie, the characters' actions do more than telegraph future plans -- they show up at your house drunk and buffet you about the head. This could be forgiven if the setting had been used better, or if the characters were more charismatic or nuanced. Embeth Davidtz's character is not mysterious, just wooden, and Kenneth Branagh doesn't succeed in conveying the brash charm his character probably was written to have.<br /><br />The bottom line: obvious plot, one-note performances, unlikeable characters, and grotesque ""Southern"" accents employed by British actors.",0 +14417,"Wesley Snipes is James Dial, an assassin for hire, agent of the CIA and pure bad-ass special operative. During his free time Dial dons a cowboy hat and breeds horses with macho names such as Beauty.<br /><br />Enter agent Collins, his supervising officer. Enter a new assignment - kill a terrorist that is in UK custody. Of course the United Kingdom being an allied state is a great place for covert ops and head-shots outside of courtrooms.<br /><br />The assassination is a big success apart from the fact, that the escape plan blew. So Dial's partner and local liaison gets killed in action trying to escape the police, whilst Dial becomes hot property with the London coppers trying to get to him and CIA trying to dispose of him.<br /><br />Fortunately for Dial the safe-house is routinely visited by a teenager Emily Day (Eliza Bennett), who loves hanging out with cold-blooded killers with arrest warrants and help them escape from the evil UK law enforcement...<br /><br />With a script like that need I say more? On the plus side Wesley Snipes is Wesley Snipes (be that a pro or a con) and the movie is quite engaging. On the minus editing is very disjointing and has a hurl effect on the stomach.",0 +15794,"While it contains facts that are not widely reported, it is not exactly the truth. They took a lot of liberties in rearranging events, excluding people, and using sets that do not meet the facts of their lives in the 30's. There were more than just Bonnie, Clyde, and W.D. in the gang at various times, and those people had as much to do with the facts as those included. Buck and Blanche went to convince Clyde to go straight much earlier than the one shootout, and in fact got drawn back into crime. Some of the events that were portrayed in daylight actually took place at night. Bonnie's wound was much more severe and never healed right. It was so bad she had to be carried around by someone until it healed up, and even then it stiffened up so she walked stiffly. Clyde also walked with a limp because while in prison he cut off a big toe. I know, I'm being nit picky, and it was a TV movie, but even without these factual errors in this ""TRUE"" story, the movie moves too fast from event to event and comes across more as several separate snapshots of their lives, rather than being a cohesive flowing story.<br /><br />I'd recommend reading a book or seeing a documentary if you want to get closer to the truth.",0 +24238,"This movie was so bad! It was terrible! It was awful! I cannot stress it enough! The acting, directing, story, characters and everything about it was bad! It was so corny and clichéd. Don't be fooled by the cover, or the tag line ""The 'texas massacre' is nothing to laugh at."" Are you frogging' kidding me! It was ridiculous.<br /><br />The first 2 minutes of the film is good until it gets to the main character Brendan, OK now turn it off. What I got from the film was, A bunch of ugly, annoying and immature people go to a cabin in the middle of the woods and a clown that sings nursery rhymes kills them in unoriginal and fake ways.<br /><br />This movie was a waste of my time and money, and it would be a waste of your money and time too! I fast forward through most of the movie because it was so terrible, I just wanted to see how each bad actor died, and it STILL wasn't worth it! Just looking at the cover is a waste of time. This IS seriously THE worst movie EVER! Rating: doesn't deserve one.",0 +3634,"CONTAINS SPOILERS!<br /><br />I saw an advert for this on a video.Then my sister discovered that we had the book so I read it.I rented the video on the same day I finished the book.I thought it was very memorable as was the book. The cast was brilliant.Tara Fitzgerald was excellent as Helen and Rupert Graves was hateful as Arthur.The costumes,music and settings are stunningly beautiful.<br /><br />WARNING!DON`T READ ANY MORE IF YOU HAVEN`T WATCHED THIS<br /><br />On the downside there are some sex scenes that have been added in and some violence.This is why the video is rated 15. There are some other things that have been thrown in.After the first part,I felt that the accuracy went downhill. While the book is better than this,I am glad I have seen it and would reccomend it to people who have read the book,are fans of Bronte or like costume dramas(I am all 3!)as long as you fastforward through the sex scenes. The book is rather underated.Anne Brontes books don`t seem to be that widely read or well known as Jane Erye or Wuthering Heights which have made it into television and film several times. Another thing.When I read the book ,I was surprised at how much religion ther was in it,but here they had axed that all out!<br /><br />7\10",1 +7841,"Moonwalker is such a great movie, from start to finish you cant take your eyes away. i love all the clips of Michael singing and dancing and I just love the 'studio tour' bit...soo funny :) And the 'mini movie' is to cool, with all the special FX etc...Michael is a genius and always will be!!!",1 +19587,"The message of this movie is ""personality is more important than beauty"". Jeanine Garofalo is supposed to be the ""ugly duckling"", but the funny thing is that she's not at all ugly (actually she's a lot more attractive than Uma Thurman, the friend who looks like a model).<br /><br />Now, would this movie work if the ""ugly duckling"" was really unattractive? When will Hollywood stop with this hypocrisy?<br /><br />In my opinion, despite the message that it wants to convey, this movie is simply ridiculous.<br /><br />",0 +23284,"I only watched this movie because I was so impressed with Olivier Martinez in SWAT. But this is no SWAT. SWAT had a plot and some likable characters and made sense. Bullfighter had none of these. <br /><br />I should have realized that it couldn't possibly be any good, after all, the always painfully bad Michelle Forbes had a starring role.<br /><br />One poster here called the movie incoherent. Another called it the worst movie ever. Both gave the movie far too much credit. I am so glad I got it from the library for free, yet I still feel ripped off.<br /><br />IMDb needs to include a ""0"" in the ""rate this film"" vote, just for movies like this one.",0 +852,"I saw this ages ago when I was younger and could never remember the title, until one day I was scrolling through John Candy's film credits on IMDb and noticed an entry named ""Once Upon a Crime..."". Something rang a bell and I clicked on it, and after reading the plot summary it brought back a lot of memories.<br /><br />I've found it has aged pretty well despite the fact that it is not by any means a ""great"" comedy. It is, however, rather enjoyable and is a good riff on a Hitchcock formula of mistaken identity and worldwide thrills.<br /><br />The movie has a large cast of characters, amongst them an American couple who find a woman's dog while vacationing in Europe and decide to return it to her for a reward - only to find her dead body upon arrival. From there the plot gets crazier and sillier and they go on the run after the police think they are the killers.<br /><br />Kind of a mix between ""It's a Mad Mad Mad Mad World"" and a lighter Hitchcock feature, this was directed by Eugene Levy and he managed to get some of his good friends - such as John Candy - to star in it. The movie is mostly engaging due to its cast, and the ending has a funny little twist that isn't totally unpredictable but also is kind of unexpected.",1 +20728,"This is a bad, bad movie. I'm an actual fencer: trust me when I say that this film's pretension of accuracy is just that. This is especially true during that vile little scene when the fencers are combining footwork with 80's pop. The ending is predictable, and the movie is a bore from start to finish. Horrible.",0 +18008,"Down to Earth is about Lance Barton, a black comedian who gets hit by a truck. He goes to Heaven and he gets to get another body. Lance gets the body of Charles Wellington, a white guy. So Lance does a few things in the body of Charles. The movie has a few laughs, but it's nothing special. It's a good movie if you're a fan of Chris Rock. Madagascar, the 2005 animated comedy, is better. This is a good movie, but Chris Rock has done way better things than this. It will only make you laugh about 4 times the whole movie. And it's not really laugh-out-loud funny. You'll laugh to yourself and you might giggle, but you definitely won't be rolling on the floor laughing.",0 +12431,"Actually this movie was not so bad. It contains action, comedy and excitement. There are good actors in this film, for instance Doug Hutchison (Percy from ""The Green Mile""), who plays Bristol. Another well known actor is Jamie Kennedy, from ""Scream"" and ""Three Kings"". The main characters are played by Jamie Foxx as Alvin, who was pretty good and also funny, but the one who most surprised me, was David Morse as Edgar Clenteen. He plays a different character than he usually does, because in other films like ""The Green Mile"", ""Indian Runner"", ""The Negotiator"" or ""The Langoliers"" he plays a very sympathetic person, and in ""Bait"" the plays almost the opposite, a man without any emotions, which was nice to see. The only really negative thing about this film, are the several pictures of the World Trade Center, which makes this film perhaps look a little dated. Overall I thought this was a pretty good little film!",1 +6069,"Directed by Samuel Fuller, who also wrote the screenplay, Pickup on South Street is a tough, brutal, well made film about a pickpocket (Richard Widmark) who inadvertently aquires top-secret microfilm and becomes a target for espionage agents. Also involved are Jean Peters as a tough broad who is used as a courier by her evil ex-lover Richard Kiley. It's film-noir at its best and although the performances are very good its grand character actress Thelma Ritter who steals the movie. As Moe a weary street peddler selling neck ties (and who also sells information) she is terrific in a role that brought her another Oscar nomination. Its amazing that Miss Ritter was nominated six times for an Academy Award and she never won. This should have been the role that copped it for her!",1 +24526,"first of all let's start out by saying that Robert Englund Doug Bradley and Melinda Clark should be commended for having to be associated with this piece of drivel. i had to give this a 1 it wouldn't let me give it a zero. wanna know how bad this movie is? my mom calls me from across town and tells me ""son, i just watched the stupidest movie ever. i responded as saying ""the killer tongue huh?"" she was like how did you know that? that's how bad this movie is. i mean it looked like a good movie at first Freddy pinhead Melinda. okay i'll give it a chance. i sat through the rest of this movie only because i wrote a column for reviews of horror movies. i implore you, don't waste your time money or even brain cells on this ludicrous piece of crap. run away. far away. if you see it on the shelf at Hollywood video blockbuster or even your local video store, turn it around and walk away....and i still want my two hours back dang it",0 +6874,"Panic In The Streets opens in high noir style, a view along a dark street followed by a camera tilt upwards to a window, behind which is playing out a sleazy card game - an opening flourish which, along with some of the location shooting, anticipates some of the atmosphere Welles brought a decade later in Touch Of Evil. One of the players throws open the window; it's an appropriate action, serving as an introduction to the events within as well as literally opening up our first view of the underworld.<br /><br />Shot in high contrast black and white, Panic In The Streets benefits immensely from a strong cast as well as some fine location shooting in New Orleans. Scenes set in such places as the mortuary, the crowded shipping office or amidst the peeling paint of 'Frank's Place' offer a unique, and sometimes claustrophobic atmosphere, impossible to recreate in the studio. With these elements, Kazan's film shows the influence of Dassin's groundbreaking Naked City of two years earlier, which established the gritty, almost documentary style within the noir cycle. In fact, Widmark's previous role had been in Dassin's even finer Night And The City, a film in which a sense of rising panic was even more prevalent. Joe MacDonald, a favourite with the director, photographed Panic In The Streets' detailed environment. MacDonald also worked on Kazan's Pinky and Viva Zapata!, and went on to shoot Widmark again three years later in Fuller's masterpiece Pick Up On South Street.<br /><br />As others have noticed, in a manner typical of some noir films, Kazan's work offers a contrast between the confusion, sickness and immorality of the streets with the modest, calm home life of the Reeds. But whereas (for instance) in Lang's The Big Heat (1953) the home life of the hero is destroyed by elements of vice surrounding the embattled central character - ultimately sending him back to work with an increased vigilance and sense of vengeance - Panic In The Streets places Reed's rising anxiousness within the confines of what amounts to just another working 'day'. Despite all the danger, ultimately he returns back to the bosom of his family justified and satisfied. The implication being that social balance has been restored, at least for the moment by his professionalism and curative skills.<br /><br />That imbalance of course, has been created by crime and disease. The two are closely associated in this film. It reminds one of the tagline from the much cruder Cobra (1986) - where ""Crime is the disease. Meet the cure,"" a neat analogy in context, if one which rings too uncomfortably of social reductionism. At its climax, as Blackie attempts to flee aboard ship, the visuals specifically allude to rats as being similar to criminals, both posing a menace to society's health. As (the presumably infected) Blackie prowls round the cheap rooms and the docks with his cronies, in search of something he suspects everyone is after, if without knowing exactly what it is, 'plague' and 'Blackie' resonate together in the audiences mind, adding further to connected associations. Ironically Blackie's hunch about Poldi's unfortunate cousin, that ""he brought something in"" of note is correct - even if, finally, its nothing he can sell or steal. Blackie's logical assumption that the police would not normally bother with the murder of some anonymous illegal immigrant has a ring of truth about it, and his so confusion is understandable.<br /><br />Dr Reed, although home-loving, and on the side of society, is a true noir hero. Familiar to the genre is the chief protagonist as a man who walks alone, forced to travel beyond the limits of the law. In his way, Reed is forced to take morality into his own hands for the sake of society at large - a dimension of the film that is particularly apposite, given director Kazan's controversial personal history. The director testified before the infamous HUAC, naming suspected communists and fellow travellers. His film depicts suspects being hauled in for questioning, and the manhandling of the press, on the grounds that the overriding public good justified the means. These actions perhaps echo the director's sentiments at the time, presumably accepting the McCarthyite witch hunt and the suppression of civil rights it entailed in the light of presumed communist infiltration of the entertainment industry. In these times of terrorist threats and state response, such issues as they appear in the film are strikingly modern.<br /><br />Standout scenes in the film include a notable scene where Blackie interrogates the dying Poldi as to the precise nature of his cousin's presumed contraband. Cat like, Blackie stalks his victim across the room, eventually preying over the doomed man's sick bed, holding Poldi's feverish head in his hands - a striking, evil cradling. It's a gesture emphasising the intimate nature of corruption, whether moral or physical. Apparently, the actors did many or all of their own stunts, which leads to some other, very dramatic scenes at the end, as the police and health authorities close in on the villains under the wharfs. Half crawling, half scrambling over the slippery timbers at the edge of the dock pool must have been an experience very uncomfortable for Palance, but it is sequence that adds immensely to the immediacy of it all.<br /><br />Occasionally less convincing elements distract the viewer. Apparently Dr Reed is left to fight a potential national emergency little government backup. Perhaps just as astonishingly, he never inoculates himself - inviting a dramatic turn which never materialises. At the end of the film, too, the potential epidemic has been halted, all contactees located, a little too neatly. But these weaknesses are more than outweighed by the other satisfactions of a film that still makes for compulsive and relevant viewing today.",1 +24185,"***SPOILERS*** Like some evil Tinkers-to-Evers-to-Chance double-play combination we have in ""Omen IV"" the evil seed of the deceased AntiChrist Damien Thorn come back. Terrorizing his parents his schoolmates his neighbors and finally the entire world as a she named Delia York, Asia Vieila. After being given to a ""deserving"" couple the Yorks Karen & Gene, Fay Grant & Michael Woods,by the Catholic Church's St. Francis orphanage.<br /><br />Little Delia didn't waste any time making her peasants felt by scratching her mom at a house party. Later Delia almost get killed by a runaway truck only to have herself saved by this ""Devil Dog"" named Ryder. Going to school Delia takes care of the local bully by getting the big guy to wet himself in front of all his classmates. Later when his father threatens the Yorks with a law suit she has his head sliced off in a self-induced traffic accident! Delia is someone that you never mess with if you know what's good for you.<br /><br />Meanwhile Dalia's dad Gene becomes a big man in town on his own, or so he thinks, by getting elected to the congress as a champion of the clean air and green trees crowd instead of letting the smog and concrete boys take over the neighborhood with his eye now on he White House itself! Did his bratty and strange daughter Delia have anything to do with Gene York's sudden good fortune?<br /><br />It's only later when Jo, Ann Hearen, is hired as Delia's nanny that the truth's comes out about her strange and evil powers. Jo a New Age type realizes that Delia is a bit weird, after turning all her white crystals black, and calls her New Age Guru Noah, Jim Byrnes, to come over and check her out. Noah is so upset by what he sees in Delia Kirilian color vibrations ,all black and blue with a little pinch of red, that it flips him out so bad that he almost crashed into Delia's moms car.<br /><br />Taken on a trip to a psychic festival by Jo Delia turns the entire event into an inferno setting the place, through mental telepathy, on fire and heaving everyone there run for cover including poor Noah who was at the festival and ended up with his leg broken. The and shaken and battered Guru was so shook up by the whole experience that he later checked out of the country to become a hermit in the Tibetan wilderness. <br /><br />Jo herself is later thrown out, with the help of the sweet and cuddly family pet Ryder, of a second floor window to her death because she knew and talked too much. It's when Karen is again pregnant that she decides, finally, to find out the truth about the real parents of Delia. That's when she,and we in the audience, come face to face with the truth. She's not only the feared AntiChrist of Revelations she's his twin sister! Her brother the AntiChrist himself is about to come on the scene as her kid brother the sill unborn Alexander York!<br /><br />Three times were more then enough for the AntiChrist coming back to earth to bring about Armageddon. The movie going public were already getting a little tired of of him and his evil adventures. With a fourth really not necessary since Daimen Thorn, the original AntiChrist, had been dead and buried for years. Were put through the usual ringer with no one believing that little Delia is ""Thee"" AntiChrist until it was almost too late to stop her in her deadly rounds of destroying the entire human race. The movie as bad as it is is also far too long, 97 minutes, for a horror flick that could well have told it's story is as little as 80 minutes.<br /><br />Having a private eye Earl Knight, Mchael Learner,and later a former Catholic nun sister Yvonne,Megan Lehch,and now faith healer Felichy in the film only to be killed off didn't help the plot either. It only prolonged the suffering of those of us watching the movie. You could see the surprise ending coming almost as soon as the film ""Omen IV"" began with the bases being cleared for Delia's eventual takeover of the civilized as well as uncivilized world. What was a bit of a surprise was Delia doing it with a little help from friends.",0 +24555,"Very strange but occasionally elegant exploitation movie with no real story, but benefiting from its stunningly ravishing lead actress and a handful of nice, gruesome make-up effects. Daniella is a beautiful twenty-something girl, carrying with her the trauma of being raped at the age of 13. Nightmares and hallucinations lead her further into believing she's the reincarnation of a female ancestor who was said to be a werewolf. She kills her brother-in-law during a nightly encounter and gets submitted in a hospital. She escapes again, however, and randomly devours more men whilst on the run for police detectives, doctors and relatives. It's all pretty to look at and listen too (really great soundtrack), but the absence of plot and continuity become irritating quite fast. Luckily enough, leading lady Annik Borel rarely ever wears clothes and she fills up the boring moments by dancing naked around a fire. The film is too long, too weird and too forgettable. The biggest surprise comes at the end, when suddenly and out of the blue, director Rino Di Silvestro tries to make us believe that his movie was based on true facts. Yeah, right...",0 +5117,"Ettore Scola is one of the most important Italian directors. My parents and I watched together ""C'eravamo tanto amati"" on a summer night: we liked it, but we didn't love it as we loved ""A special day"". I believe Ettore Scola is pretty underrated: we often forget to remember him, maybe because his latest films were disappointing. And so, yesterday night, my mum and I sat on our sofa to enjoy this masterpiece. Writing, direction, cinematography, score and production design were sober and accurate, but the thing I liked the most was the chemistry between Loren and Mastroianni. They're both excellent actors and play the main roles of Antonietta and Gabriele. Antonietta is an housewife: married with a fanatic Fascist, she has six children but her husband wants to have another child to get a prize for the huge families. Gabriele is simply an Anti-Fascist. They spend together a special day, that special day of 1938 when Hitler came to Rome visiting Mussolini. I don't want to spoil anymore about the plot: go looking for this film!",1 +19634,"Just okay horror film about a nice suburban family dealing with the death of their parents and the ""thing"" in the basement that they keep feeding people they pick up off the street. Of course there is more to it then that but to say more would be telling.<br /><br />For me this just didn't come together as it tries to have it two ways both as a family drama and a horror film. the film tries very hard to walk the cutting edge between the two genres but seems more to stumble all over the place as it tries to be shocking, something it never really is. It doesn't help that the final revelation is less a scare then an ""oh"", as on ""Oh thats it?"". Maybe if I hadn't been watching so many horror films recently this might have been better or it may have just seemed it since I wouldn't have compared it to so much.<br /><br />I'd take a pass",0 +15666,"This is it. This is the one. This is the worst movie ever made. Ever. It beats everything. I have never seen worse. Retire the trophy and give it to these people.....there's just no comparison.<br /><br />Even three days after watching this (for some reason I still don't know why) I cannot believe how insanely horrific this movie is/was. Its so bad. So far from anything that could be considered a movie, a story or anything that should have ever been created and brought into our existence.<br /><br />This made me question whether or not humans are truly put on this earth to do good. It made me feel disgusted with ourselves and our progress as a species in this universe. This type of movie sincerely hurts us as a society. We should be ashamed. I really cannot emphasize that our global responsibility as people living here and creating art, is that we need to prevent the creation of these gross distortions of our reality for our own good. It's an embarrassment. I don't know how on earth any of these actors, writers, or the director of this film sleeps at night knowing that they had a role in making ""Loaded"". I don't know what type of disgusting monsters enjoy watching these types of movies.<br /><br />That being said, I love a good ""bad"" movie. I love Shark Attack 3, I love Bad Taste, they are HILARIOUS. I tell all my friends to see them because they are ""bad"".<br /><br />But this.......this crosses the line of ""bad"" into a whole new dimension. This is awkward bad. This is the bad where you know everything that is going to happen, every line, every action, every death, every sequence BEFORE they happen; and not just like a second or two before, I mean like, after watching the first 5 minutes before.<br /><br />Every cheesy editing ""effect"" is shamelessly used over and over again to a sickening point. I really never want to see the ""shaky"" camera ""drug buzz rush"" effect or jump cuts or swerve cuts or ANY FANCY CUT EVER AGAIN EVER. This is meticulously boring, repetitive and just tortures the audience.<br /><br />But.......and let me be specific here, the most DISTURBING thing about this movie is that given the production, it appears that a somewhat decent amount of money was actually put into this excrement. I personally will grab the shoulders of the director if I ever see him and shake him into submission, demanding that he run home and swallow two-gallons of Drain-O or I will do it for him.<br /><br />If we ever needed a new form of inhumane torture for our war prisoners abroad, just keep showing them this movie in a padded cell over and over again. Trust me, I think they will become more extravagant with suicide methods after the 72nd time of sitting through this.<br /><br />Stop these movies, they are just the most vile of all facets of our society. Please. Stop. NOW.",0 +2559,"I can't remember many films where a bumbling idiot of a hero was so funny throughout. Leslie Cheung is such the antithesis of a hero that he's too dense to be seduced by a gorgeous vampire... I had the good luck to see it on a big screen, and to find a video to watch again and again. 9/10",1 +23919,"I just watched this movie and I've gotta say that with such a great premise and great talent this turkey just lays there!!! A friend lent me this movie and I watched with an open mind mainly because he had such high praise for the story. <br /><br />Well, the movie started off with Kevin Costner as a fighter pilot retiring... why? Why did they make him a fighter pilot? He was supposedly going to be hired by Anthony Quinn's character to be his new pilot... well, we never see Costner go near a plane for the rest of the movie! <br /><br />Costner runs into a Texan (James Gammon) selling a horse to a big Mexican businessman and Costner tags along for a ride. Without knowing what happened, Gammon is beat to near death and Costner drives him to the meeting, which happens to be with an associate of Quinn! But, nothing comes of it... nada, zilcho! Why did they have Gammon's character? Why did they have the horse sale with the Quinn associate if nothing was to come of it? <br /><br />Also, after they leave Costner for dead, they make Madeline Stowe's character become a whore, then she attacks one of Quinn's men that was paying for a turn... she stabs him with his own knife, and the next thing she's been moved to a convent! No explanation as to why she was moved, or when it was done!<br /><br />Too much talent wasted on such a weak script and poor editing!! I only watched this because a friend owned it and let me watch it... I'm going to throw it at him for the 2 hours I wasted of my life watching the blasted thing!",0 +2748,"And look how a true story, ""... with a little help of it's friends..."" : a welldone and touching script, a good directing and a surprising great acting from a bunch of ""no-name"" actors, especially from the 4-yr-old Jodelle Ferland, becomes a must seen movie. 9/10",1 +11988,"Most of the feedback I've heard concerning Meatball Machine has been pretty mixed. A couple even saying that they think ""it sucked"". Well, to those people I say, get some f@ckin imagination and go f@ck yourself. This was a very entertaining flick.<br /><br />The story starts with this mechanical bug which attacks and somehow transforms its hosts into these Gwar-costume looking, deathbots called Necroborgs. Eventually you learn that these mechanical bugs also attach a little parasite onto you, which then is able to control your actions due to hot-wiring your nervous system. Unfortunately for two love-seeking lonely young adults, they happen to cross paths with the mechanical bug, and before you know it transformations are taking place and blood is being splattered. Is there a way to stop the transformation? Maybe a way to stop this mechanical bug threat? Why do the Necroborgs fight one another? Do the two desperate singles get to express their feelings for one another and do the nasty? Only one way to find out.<br /><br />Going into Meatball Machine I was kinda wary due to the mixed reactions, but it turned out being a great surprise. A few unanswered questions, some average acting at times and a slightly confusing ending are the only weak points I can think of. From the anime feel to it, to the parasites becoming little characters themselves and even to the low budget feel, this movie hits the right mark much more than it misses. With a ever-developing story that's interesting enough to keep oneself asking questions throughout mixed with the cool make-up effects and blood splatter, this is one flick fans of bizarro/horror/Tetsuo/splatter fans should check out. 8 outta 10",1 +18927,"slow, incomprehensible, boring. Three enthusiastic words that describe the movie of the book. This is surely a case where the movie should never have been made at the expense of the book. The best part of the movie was the scenery, excellent. The worst part was the slow moving interactions of the actors which combined with endless meaningful glances. The editing is abrupt and patchy. However, despite this, the actors worked very hard at least trying to be a little believable with a terrible script. It was startling that although set in Peru there was hardly a person of Peruvian descent wandering about the set - even in the flashback scenes depicting Peru in the 17th century. If you have any sense of history, try to avoid this movie.",0 +6210,"This is one of those rare movies, it's lovely and compelling, dignified and quirky, a true gift. I consider it a prerequisite for any trip to Italy, or any vacation at all, because it reminds you to open yourself up to a broader experience (yup, find the magic). I especially loved Josie Lawrence, as Lottie Wilkins, but every lead and supporting actor is flawless in this film. Further the costumes, if you're drawn to fashion and costumes, are extraordinarily well done. I just wish they'd release it on DVD because I'm wearing my tape version out! <br /><br />Absolutely well worth your time, just make sure to settle in to watch it, without any interruptions.",1 +9942,"Of all the breakdancing / hip-hop films released between 1983 and 1986, the 1984 film Beat Street is unquestionably the best one. The story follows a DJ, his younger breakdancing brother, a graffiti artist and a wanna-be showbiz promoter through one winter in which they try to break out of the ghetto using their ""street"" talent. The acting isn't always up to par and the characters aren't fully drawn out, but they are more than compensated for by down-to-earth dialogue, a plausible story, fantastic dancing sequences and a timeless hip-hop sound track. It should be noted this film was shot in the birthplace of breakdancing (""This ain't New York, this is the Bronx!""), and features appearances by the fathers of breakdancing, dance troupe Rock Steady Crew and rapper Afrika Bambaata. Rock Steady Crew provide the best scene in the film when they dominate a dance battle at the premiere breakdancing club of the early 80's, the Roxy. A must see for hip-hop lovers.",1 +20537,"This film is just a kids against evil genre. Thunderbirds is just the hook to get people to see it, but are almost incidental in use. The fact that the action takes place on Tracy Island is just a ploy to pull in the public. It was interesting to note what the film makers view of future London will be and how the World all fits together.<br /><br />The best part of this film are some of the lines delivered by Lady Penelope which are highly comical. These provided some light relief for those expecting a rerun of the TV series.<br /><br />Having said that it passes 90 or so minutes in a 'fun' way and so may just be worth watching.",0 +23808,"This hodge-podge adapted from a Gore Vidal novel (actually one of the great American writers) makes THE MAGIC CHRISTIAN and VALLEY OF THE DOLLS look like Fellini art-works. Raquel Welch, with an incredible body (and she's actually not very tall) in a lead role (except for KANSAS CITY BOMBER when she was quite good) playing Rex Reed's (bad movie reviewer; not critic) alter-ego, only to be surrounded by drag queen (great chick) Mae West, horny John Huston, a young and ""naive"" Farrah Fawcett (pre-Lee Majors; what a shame), and other various creep-azoids to pretend to spoof WAY too may things has nothing going for it except inter-spliced old films clips (i.e. Widmark in KISS OF DEATH, Lena Horne)...JUST so they can continue to bleed the life out of everyone.<br /><br />A 2 out of 10. Best performance = ?. It's so bad, it's worth seeing!",0 +10628,"I watched this movie every chance I got, back in the Seventies when it came out on cable. It was my introduction to Harlem, which has fascinated me (and Bill Clinton) ever since. I was still very young, and the movie made a big impression on me. It was great to see a movie about other young girls growing up, trying to decide whom they wanted to be, and making some bad choices as well as good ones. I was dazzled by Lonette McKee's beauty, the great dresses they eventually got to wear, and the snappy dialogue. As someone being raised by a single mother as well, I could really identify with these girls and their lives. It's funny, these characters seem almost more real to me than Beyonce Knowles!",1 +17288,"I'm glad that I saw this film after Mr.Sandler became famous.<br /><br />It is bad....bad,bad,bad. There is no plot. It's like watching a painfully dull home movie.<br /><br />I really enjoy his other films......but if you're a fan like me....stay away from this one. It may change your thoughts on Adam. You may never recover from the horror that is this film....I've had a better time watching old folks play scrabble in a home.......",0 +5923,"I have seen just about all of Miyazaki's films, and they are all beautiful and captivating. But this one rises above the rest. This movie totally impressed me!<br /><br />I fell in love with Pazu and Sheeta, and their sweet, caring friendship. They were what made the movie for me. Of course, the animation is also superb and the music captures the feelings in the film perfectly. But the characters are the shining point in this movie: they are so well developed and full of personality.<br /><br />Now, let me clarify: I'm really talking about the Japanese version of the movie (with English subs). While the English dub is good (mostly), it simply pales in comparison to the original language version. The voices are better, the dialogue, everything. So I suggest seeing (and hearing) the movie the way it originally was.",1 +18216,"Well. Astronaut Steve West sits in a plastic space capsule, commenting that ""you haven't lived until you've seen the sun through the rings of Saturn"", all the while the obvious mid-day sunlight is streaming through the window, when suddenly he has a nose bleed. Next, West is back home in some secret hospital, a melting gelatinous mass who goes berserk and causes a chunky nurse to run through a fake glass door. Apparently, West ""gets stronger as he melts"", which makes about as much sense as anything in this hopelessly purile, adle-brained moovie. Then this dopey ""Army Brass"", who looks kind of like Coleman Francis (director of many bad moovies) tries to cover the info up, but goo man runs around killing everyone he sees because he is melting. He attacks a bickering old couple because he is melting. He makes one terrible actress scream and moan helplessly for about 10 minutes because he is melting. He is melting because he is melting. The fx by the slumming Rick Baker are supposed to be the star here, but they just look hokey. The film is poorly shot and everything looks so dark and muddled that it's very difficult making out what's what - not that it would help any. MooCow says who cut the cheese with this one?? :=8P ps - ""Didn't you get any crackers?""",0 +8900,"Otto Preminger's Dana Andrews cycle of films noirs are among the (largely) unsung jewels of the genre. Because they lack paranoia, misogyny or hysteria, they may have seemed out of place at the time, but the clear-eyed imagery, the complex play with identity, masculinity and representation, the subversion of traditional psychological tenets, the austere, geometrical style all seem startlingly modern today, and very similar to Melville. The lucid ironies of this film are so loaded, brutal and ironic that the 'happy' ending is one of the cruellest in Hollywood history. Brilliant on the level of entertaining thriller as well, tense, and packed with double-edged dialogue.",1 +18006,"I figured the whole joke of the movie would be to see some rich white guy acting like Chris Rock, and then see Chris Rock react to people's reactions. Instead you just see Chris Rock being himself and people not understanding him. There are maybe 2 scenes in the entire movie where they use their gimmick. This should have been a lot better.",0 +21113,"Given the chance to write, direct and star in my own movie, I would probably choose something about robot women with guns. Anthony Hopkins, however, decided to make possibly the strangest movie anyone has ever seen. ""Slipstream"" is a movie that is so strange that even David Lynch would probably look at the person next to him and say 'What's going on?'.<br /><br />This is a movie where, in one scene, a man crosses the road towards a yellow car facing to the right which suddenly changes into a pink car facing to the left. This is a movie where two characters have a conversation interspersed with shots of random people laughing and insects climbing up walls. This is a movie where a man starts talking about ""Invasion Of The Bodysnatchers"" only for the actor of that particular movie to suddenly show up as himself (and then disappear into thin air). <br /><br />This is a movie that decides to throw the need for a coherent plot straight out of the window and use fifteen different edits whilst doing so, as well as changing from black and white to colour for seemingly no reason at all.<br /><br />I must, however, commend Mr Hopkins for his choice of actors in this movie (some of whom portray multiple characters). All of those involved throw themselves into their roles, even if they probably have no idea what they're actually doing. My favourite here was Christian Slater's thug in a hat who was impressively menacing whilst babbling nonsense and singing the American national anthem. <br /><br />Anthony Hopkins has been quoted saying that he did this movie as a joke and that's possibly the best way to sum up ""Slipstream"". It's a joke on the audience. You'll watch it from beginning to end, trying to understand what is going on and hoping that the answer will come, only to discover that the answer never actually does. What the punchline to this particular joke is, only Anthony Hopkins will ever know.<br /><br />I mentioned David Lynch earlier and I'm a big fan of that particular director. I would guess that Anthony Hopkins shares my love for the likes of ""Twin Peaks"", ""Blue Velvet"" and ""Lost Highway"". However, ""Slipstream"" isn't as satisfying as any of the movies of Lynch despite imitating many of his techniques (although I was surprised to discover that nobody talks backwards in ""Slipstream""). It's far too chaotic and random - as another reviewer here pointed out, it's the movie version of Alzheimer's disease. No doubt there are a small number out there who are able to watch this and draw something from it. Unfortunately for the rest of us, ""Slipstream"" quickly becomes an annoying and confusing experience that was only made due to Hopkins' involvement.<br /><br />Watch at your own risk.",0 +4442,A good picture is worth all the words. This film has the most poetic scene ever dreamed of about people with Down's syndrome. And I won't spoil it by telling you. You'll want to see it yourself.<br /><br />Pasqual Duquenne is an amazing actor. I did not need to understand a single word he said to understand his meaning.<br /><br />The film has a magic of it's own. After watching it I understood better that we put too much value on achievement and not enough on the people we love. Passion and simplicity is all we need.,1 +2346,"When I first started watching this anime I never thought that something about making bread could actually be interesting, but thankfully I was mistaken. From the moment I started watching it, anime just pulled into the world of bread making, I was hooked.<br /><br />The biggest advantage of this anime is it's humor, which is very intelligent and very funny, with some recurring gags. But the animation, soundtrack and character development are below average, while these disadvantages aren't seen so much in the first episodes, because of the great job on this anime, it really starts to show in the last 20 episodes, when the reactions and recurring gags just grow old, and aren't as funny as before.<br /><br />As far as I'm concerned, if this anime had ended with episode 52 I would have given it a 9, but the last episodes just leave a bitter aftertaste, which sadly can't be washed away by the awesome 50 episodes.<br /><br />7/10",1 +2325,"Italy produced a lot of really great and original horror films in the 1960's - and this is certainly one of them! The first thing you will notice about Danse Macabre is the style of the film. Shot in beautiful black and white, and due to director Antonio Margheriti's use of lighting; the film almost looks like it could be a German expressionistic horror film. This, coupled with the horror-filled plot line ensures that Danse Macabre is a film that truly captures the essence of horror. Of course, the fact that the beautiful Barbara Steele appears in the film doesn't harm matters - and the good news continues as, in this film, she gets to flex her acting muscles more than she did in the films that made her famous. The plot is very aware of the time in which this was released, and so incorporates the great Edgar Allen Poe. We follow Alan Foster, a writer who accepts a bet from Poe himself and Lord Blackwood that he can't spend an entire night in the latter's creepy old castle. Everyone that has spent the night there previously has died...and our hero is about to meet the previous wager-takers! <br /><br />Nowadays, horror films don't tend to focus so much on each shot and the result is that there isn't much beauty left in the genre. It is refreshing, therefore, to see this film. Many of the shots here are incredibly beautiful - from the female side of the couple wearing just a see-through skirt, to my personal favourite - a shot of smoke creeping in from under a door. This my first Antonio Margheriti film, and even after seeing just this one; it's obvious that he was one of Italy's premier directors. Also interesting is the fact that screenplay was co-written by another of the Italian greats; Django creator Sergio Corbucci. The plot can meander a little too much at times, but there's always enough atmosphere on hand to make sure that the film never becomes boring - and the fact that it is always intriguing, even when the plot slows down, ensures the same thing. The way that Danse Macabre utilises the 'haunted house' theme is both well done and original, and helps to keep the story as eerie as possible. On the whole, fans of Italian and/or cult cinema will not want to miss this little gem!",1 +283,"This movie is the first of the six infamous Guinea Pig Movies and is one of the best. At the same time, it looks realistic and unrealistic, just knowing that the movie is fake. The story is about a woman who got captured and is tortured in a lot of different ways. A man in the beginning of the story receives a letter without a return address, and it includes a manga video, showing the torture. The men who capture her are testing the limits of a human before they die. Some scenes are shocking, such as the eyeball scene and others are not shocking like the girl being punched 100 times, because you see punches in nearly every movie. This movie has a lot of gore so I would recommend this to people 17 or older.<br /><br />9/10",1 +18358,"This movie was horrible. I watched it three times, and not even the whole thing. It's just impossible to watch, the story line sucks, it's depressing, and utterly disgusting. I don't write spoilers for anything, so if you want to know why it's so disgusting, see it for yourself. The only good thing about this movie was John Savage, his dialogue at the beginning, and some funny parts in the movie. The little kid in this movie is annoying, and the whole situation is bullshit. I saw this movie at movie stores around America, so I assumed it would be a good movie. Jesus Christ, was I wrong!!!! The acting is all horrible, and the nudity itself is lame and nasty. Another thing is, Starr Andreef, the other main character, hasn't been in such bad movies in the past, in fact, she was in some pretty good ones. Same with John Savage. This movie SUCKS!",0 +24768,"Mighty Morphin Power Rangers has got to be the worst television show ever made. There is no plot, just a bunch of silly costumed kids using martial arts while dressed up in second class spandex outfits.<br /><br />The special effects look like they are from the '70's, the costumes look like something out of a bad comedy, and the show is just plain awful.<br /><br />The only thing worse than the television show are the toys, just second rate plastic garbage fed to our kids.<br /><br />There are far better shows for your kids to watch!<br /><br />Try giving your kids something like Nickelodean, those shows actually have some intelligence behind them, unlike power rangers.",0 +21299,"This film really got off to a great start. It had the potential to turn into a really heartrending, romantic love story with cinematography that recorded the love between ""Harlan"" and Tobe in long, poetic and idyllic scenes. It really didn't need to be anything more than that, and for a moment there I became excited that someone was finally making a beautiful film for its own sake, another timeless classic, a modern myth perhaps. Why, oh why, then mess it up halfway through by making the lead character (Norton)another psycho? Maybe I'm missing the point, but do we really need another film about psychos? Or is this need in Hollywood to portray the sick side of human nature indicative of a more general malaise in the movie industry? For a moment there, I was going to make a mental note of the director's name; now I'm left feeling indifferent. At least it should be added in the film's defense that all the actors seemed to invest in their roles. Also, Evan Rachel Wood is really lovely to look at and a good actress with lots of potential.",0 +20019,"I haven't seen this, & don't plan to see this movie or any other that includes Lindsay......unless & until ""poor little rich girl"" straightens out her life for a 2 year period beginning with her most recent arrest in July 2007.<br /><br />In fact, I don't know anyone that has gone to see ANY of Lindsay's recent movies. I rather imagine 2007 will be the high water mark in her movie making career, until she cleans up her act. All of the recent publicity has only hindered her movie making career, if she has any further aspirations to make any more movies <br /><br />Up to this time, movie producers have actively sought Lindsay for roles in their upcoming production. Now, Lindsay will probably have to go to auditions & actually compete for ANY role. Her reputation is currently ""poison"" & quite possible could have a negative effect on box office ticket sales on any movie she is in.<br /><br />Sooooo....now Lindsay is going to have to deal with ""not being wanted"".....is she going to be able to handle this?<br /><br />I wonder if even Jay Leno will want to have Lindsay back on his TV Show?<br /><br />All of the foregoing is merely my OPINION. I have no inside information.",0 +1684,"I'm not a John Cleese completist (although I thought ""Fawlty Towers was brilliant), but I am a fan, and when I saw this sitting, neglected, on a shelf at my local Blockbuster, I decided to give it a try. What I got was a wonderful surprise, and one of the funniest 50 minute viewing experiences I've ever had. The writing is typical English ""goon show"" schtick. In fact, as an audio skit, this wouldn't be out of place on a ""Firesign Theater"" album. But the execution and timing is spot on and this elevates ""Strange Case"" into the kind of jaw-dropping performance that can create lifelong British comedy fanatics. <br /><br />The Brits have a gift for combining broadly satirical lampoons with closely observed ""tics"" of character and timing, and the creators use both to good effect here. Cleese's portrayal of ""Holmes"" seems to owe much to the Arkin's and Seller's ""Inspector Clouseau""; however Cleese has such a knack for physical comedy that he more than holds his own. But the unexpected treat here is Arthur Lowe, who plays ""Watson"" as an genial but invincibly uncomprehending imbecile with such superb timing and delivery that he becomes the best aspect of the film. I'd never heard of Lowe before this (his background seems to be vaudeville and musical theater), but he justifies his entire career with this performance as far as I'm concerned.<br /><br />Some people might not care for ""Strange Case..."", especially if British whimsy isn't their ""cuppa tea"". But I am extremely glad I got to see this before it vanished from sight.",1 +6625,"One the whole, this movie isn't perfect. It doesn't 'hang well' together as the story line is basically a bunch of hooks to hang jokes.<br /><br />Some of these jokes are a little 'too 80s' and tend to date the picture.<br /><br />But some of these jokes are classic.<br /><br />You know a movie has something special when you and your friends still reference silly quotes from it over 2 decades later.<br /><br />Plus, there are a bunch of familiar faces; Michael Keaton, Danny Devito, Joe Piscapo, Peter Boyle, Marilu Henner, Maureen Stapleton, Bob Eubanks, Griffin Dunne, and one of the last roles of Alan Hale Jr., the Skipper from Gilligan's Island.<br /><br />Also, there are some great absurdist moments, like when Johnny is labelling the puppies with a pricing gun, or the Pope making an appearance in Johnny's neighborhood. Also, the scene where the fake priest makes up a lot of words in Latin is excellent. (""Summa cum laude, magna cum laude, the radio's too louda... Post meridian, ante meridian, uncle meridian"").<br /><br />Other Classic Scenes include Ramone Maroney butchering the English language Danny Devito urging Griffin Dunne to 'Play Ball' Peter Boyle thinking he lost his manhood The fake VD movie<br /><br />This movie is no home run. But like 'Porky's', it has enough classic comedy bits to make it memorable.",1 +17008,"A cast of 1980's TV movie and TV series guest stars (Misty Rowe, Pamela Hemsley,Clevon Little, Seymour Cassel among several others)in the story of a photographer who has dreams about killing his models. Of course the models and other people start turning up dead causing all sorts of complications.<br /><br />Over done not very good thriller has enough nudity and violence to get an R rating but not enough good material to engender any real interest. This is best described as the sort of movie that gave the cable channel Cinemax the alternate name of Skinamax. I really can't see the point of watching this unless you need to see every sleazy thriller out there. (I also have to comment that this film is filled with smoking, to the point that it becomes laughable when anyone lights up)",0 +4410,"It's all about Mitzi. I loved her in this. And didn't she look fantastic?! I love these Lifetime Sunday afternoon popcorn movies. This is like one of those nailbiters where they always go to commercial at the most annoying times. The Richard character was completely creepy. I've dated guys like that. Well, not totally like that lol. I wish Zack hadn't have gotten killed. He was a cutie and very easy on the eyes. I LOVE these stalker type stories. It always makes me get up and make sure my doors are locked. My husband doesn't usually like these types of movies but actually sat through the entire thing with me and actually enjoyed it. I can't wait to see what Mitzi does next!",1 +8141,"I was especially delighted that in this movie Othello himself was dark-skinned and Desdemona didn't have fair hair like almost always. The cast played very well, too, and I liked the script following Shakespeare's original text so faithfully. But I must say some scenes were acted too erotically for such a character as Desdemona. I have always thought she is very modest, and that's why it is not proper at all to show her in bed with Cassio - although it was happening only in Othello's imagination. At first, I was a little surprised even that a love scene between Othello and Desdemona was shown so openly. But as a whole, I liked the film and especially Desdemona crying in the dying scene.",1 +8858,"Riding Giants is an amazing movie. It really shows how these people lived back then just to surf. Their lives were basically surfing, living, breathing, and having fun. They didn't care about money, jobs, girls or any thing. To them the waves were their girls. I have never been on a surf board, and it looks so hard, I don't understand how they can stay on them, it makes no sense at all. This is an awesome movie and if you love surfing then you should really see this movie. If you're a surfer and you want to find out who started surfing, how it came into life, who is really famous at it or what ever, then you should really see it. It might be a documentary, but it is really good. -Tara F.-",1 +23986,"The movie has only one flaw, unfortunately this flaw damages all credibility of the piece.<br /><br />It starts with the condemnation of the Israeli occupation of disputed territories. It fails to address the reason Israelis are there. Egypt, Syria, Iraq and Jordan attacked Israel. This is why Israel ""occupys"" their land, because those countries lost it in a war they started.<br /><br />The film also claims that Israel has defied the U N by not complying with Resolution 242. Problem is, 242 was rejected immediately upon it's inception by.....the palestinians, making it void.<br /><br />Many films are put together well, and can really show footage that changes minds, but remember, when watching anything, believe none of what you hear, and only half of what you see.<br /><br />All participants in this film are known critics of Israel, and some have made many antisemitic public comments, removing any possible credibility to their words.<br /><br />All participants are in dire need of a actual history lesson taught objectively, not by some palestinian sympathizer.",0 +11242,"This was one of the DVD's I recently bought in a set of six called ""Frenchfilm"" to brush up our French before our planned holiday in beautiful Provence this year. So far, as well as improving our French we have considerably enhanced our appreciation of French cinema.<br /><br />What a breath of fresh air to the stale, predictable, unimaginative, crash bang wallop drivel being churned out by Hollywood. What a good example for screenplay writers, actors, directors and cinematographers to follow. It was so stimulating also to see two identifiable characters in the lead roles without them having to be glossy magazine cover figures. <br /><br />The other thing I liked about this film was the slow character and plot build up which kept you guessing as to how it was all going to end. Is there any real good in this selfish thug who continually treats his seemingly naïve benefactor with the type of contempt that an ex-con would display? Will our sexually frustrated poor little half deaf heroine prove herself to the answer to her dreams and the situation that fate has bestowed upon her? The viewer is intrigued by these questions and the actors unravel the answers slowly and convincingly as they face events that challenge and shape their feeling towards each other.<br /><br />Once you have seen this film, like me you may want to see it again. I still have to work out the director's psychological motive for the sub plot in the role of the parole officer and some of the subtle nuances of camera work are worth a second look. The plot does ask for a little imagination when our hero is given a chance to assist our misused and overworked heroine in the office. You must also be broad minded to believe in her brilliant lip reading and how some of the action falls into place. But if you go along for the thrilling ride with this example of French cinema at its best you will come out more than satisfied. Four stars out of five for me.",1 +16425,"And the Oscar for the most under-rated classic horror actor goes to - Dwight Frye. Seriously his name should be stated with the same awe as Karloff, Lugosi, and Price, and this movie proves it. His character Herman was one of the 2 reasons I can give to watch this movie. Dwight gave this somewhat more than slightly disturbed misfit a lovable yet creepy demeanor that led you hoping for a larger role the entire movie.<br /><br />The other reason is the comic relief of M. Eburne. Being in the medical profession myself I have to give kudos to the expert performance of a self-pity prone hypochondriac. Though other ""medical mistakes"" did give a brief chuckle especially when the good doctor samples his fellow physicians medication... ""Well continue giving it to her"" Unfortunately these 2 outstanding performances could not keep me awake through 3 attempts of sitting through this unbearably slow movie. The plot is predictable with only few minor twists. The filming while pulling off a legitimate spooky atmosphere was more productive at making me yawn - yes you can use too much shadow.<br /><br />My recommendation - watch this once to see Frye and Eburne - but only when wide awake and with lots of caffeine.",0 +9653,"The Ancient Mariner is a truly classic piece of work, as the original poem was/is. The context/setting with the old mariner himself is fine, clear, and without pretense. The artistic work that accompanies the reading of the poem fits perfectly the time/period of the setting and of the work itself, carrying the audience into the period with a still, yet moving accompaniment, using excellent still-movement strategies only well conquered by the pre-MTV era producers and much less apparent in more current works. (MTV brought to television and video a static movement that races through, often irrelevant cuts, from theme to theme without forward movement and without clear relationships to theme or storyline.) The voice, intonation and vitality of Redgrave's reading brings this touching poem to life with all its fear, strife and pain. In addition, the smooth movement of the video emphasizes the cadence and occasional monotone (in this case a positive mood under the theme of the story itself)of the author's rendition of the ancient mariner's sad and spooky tale. This is a must for any love of classic poetry, the sea, a tall tale, that almost rings true, and a story that has left a lasting impact on our world and culture. Who does not understand the meaning of an ""albatross""? or the concept of ""water, water everywhere and not a drop to drink?"" A truly fine experience. Thank you Mr. DaSilva for bringing this to life for us, never to be forgotten.",1 +12034,"After growing up in the gritty streets of Detroit, MI, and having friends who traveled to New York balls, I fell into the lifestyle of being a House member. I joined the House of Theieves. We adapted the same rules as most houses, but we were professional crooks that would boost and commit credit card fraud to obtain the fabulous jewels and clothes we desired. I even learned how to profess the making of checks and driver's license and cash them in over seventeen states, until a jealous queen called the Secret Service on me and I went to Federal prison. But, I learned a lot from these queens in this movie and I highly recommend you watch it yourself. You can even read about how I grew up in the houses here in Detroit and the criminal activity we indulged in. My book, Identity Schemes is available on sale at Amazon dot com or at Identity Schemes dot com. But trust me, It is a lot better than Paris is Burning, because its a 2005 make.",1 +22809,"a friend of mine bought this (very cheaply) and decided to give it to me as a birthday present. i thought i'd never watch it 'cause i knew it was a joke and the cover of the DVD looked pathetic, but then my friends and i got really bored and watched it. from start till finish! i know quite an accomplishment but it really is a masterpiece. it's hard to describe. you should see it, it's a real lesson on what people are capable of when they believe they're creative and smart and really aren't. The ""acting"" is sous-terrain (you can actually see the ""leading lady"" laugh on some occasions, she's definitely the worst). the ""story"" is to stupid to be summed up and really everything in this film sucked. please, pay special attention to ""the sheriff"". the guy is an adult and therefor has absolutely no excuse to be involved in this. he's extremely bad as well. whatever it did have some hilarious moments. check it out, haha",0 +21134,"I'm probably not giving this movie a fair shake, as I was unable to watch all of it. Perhaps if I'd seen it in a theater, in its original presentation, I might have appreciated it, but it's far too slow-moving for me.<br /><br />I read the book some 25 years ago and the details of the plot have faded from memory. This did not help the film, as it's something less than vivid and clear in its presentation of events.<br /><br />This is really four linked films, or a film in four parts, and was, I believe, intended to be seen over four nights in a theatrical presentation. I found Part I to be enjoyable enough, but it was all I could do to sit through Part II, which drags interminably. Reading Tolstoy's philosophizing is one thing. If you get a good translation or can read it in the original, his brilliant writing far outweighs any issues one might have with the pace of the story. On film, however, it's hard to reproduce without being ponderous.<br /><br />I have other issues with the parts of the film that I saw. It's very splashy, with a lot of hey-ma-look-at-this camera work that calls attention to itself, instead of serving to advance the story.<br /><br />Clearly, I'm missing something, but I just couldn't summon the enthusiasm to crank up parts III and IV.",0 +12273,"It aired on TV yesterday, so I decided to check it out. This was one of the last Bruce Timm/Paul Dini DTV projects related to their old 1992 Batman the Animated Series, after that Jeff Matsuda came along and re-imagined Batman with his new The Batman series, but anyway, the story of this new Batman movie centers around the appearance of a new vigilante known as Batwoman, however Batman feels the need to stop her because of her extreme methods, and also in the meantime take down The Pengiun and Ruphert Thorn who both are secretly working with Carlton Duquesne(who's having family troubles) and another villain(which is later revealed in the movie) on a weapons smuggling operation,they also put a bounty on the Batwoman. The question is: who is this mysterious Batwoman and is it possible that they could be more then one? It's up to Batman to solve this mystery and stop Penguin's latest operation. For an animated movie, it has a fairly complex plot and a serious tone, which is good. Another plus was the complete redesign of the Penguin who looks much more like the sophisticated Mob Boss we're used to seeing in the comics, unlike his previous designs that borrowed elements from Tim Burton vision of Pengium(sewer rat and circus freak). Even though the movie contains a love subplot it's never carried that far and doesn't derail the movie like say, Batman Forever. The voice acting is standard quality for these direct-to-video projects(if only Batman: Mask of Phantasm took this route), Kevin Conroy still shines as Batman/Bruce Wayne. And like I said despite running for some very short 80 minutes, it manages to make a pretty good(and complex) storyline complete with a few minor twists and bucket loads of action. There are a few downsides, however, Nightwing is nowhere to be seen, and I'm sure Barbara Gordon and Bruce Wayne don't click as a couple, even though is just referenced, Tim Drake(aka Robin) does very little in the movie and to be quite frank, I was never a big fan of Paul Dini and Bruce Timm's Batman character design(especially in their Batman shows post-BTAS), this The New Adventures of Batman and Robin, well, it kinda makes Batman look fat then rather a well-built bulked up individual(kinda like the Jeff Matsuda character model from The Batman). Bruce Wayne seems a bit awkward, those blue eyes make him look more like Clark Kent then Bruce(though it's true they do look very much alike). Another downside is Rupert Throne(no explanation as to why he is in this deal, but it's safe to say he's has goons and what's a cut of the deal) which does very little more then hang out with the Penguim or get himself hurt every time he points a gun at someone(count how many times this happens in the movie and you'll be surprised. Overall, a good Batman animated movie, worth at least a rental.",1 +10228,"Hey guys, <br /><br />i have been looking every where to find these two movies and i can't find them anywhere in my local area. (I am Australian). Could You please help me and tell me where i can buy it from. In General Home Ward Bound 1 and 2 are the best movies i have ever seen and are good for people of all ages. It was my favourite movie wen i was 5 and it still is even now when i am a teenager. It is a great movie for the whole family. My entire family loves this movie except for my younger sister because i have watched it that many times that she is sick of it. I love this movie and i cant wait till i can buy it again on DVD.<br /><br />Sally",1 +963,"I always thought this would be a long and boring Talking-Heads flick full of static interior takes, dude, I was wrong. ""Election"" is a highly fascinating and thoroughly captivating thriller-drama, taking a deep and realistic view behind the origins of Triads-Rituals. Characters are constantly on the move, and although as a viewer you kinda always remain an outsider, it's still possible to feel the suspense coming from certain decisions and ambitions of the characters. Furthermore Johnnie To succeeds in creating some truly opulent images due to meticulously composed lighting and atmospheric light-shadow contrasts. Although there's hardly any action, the ending is still shocking in it's ruthless depicting of brutality. Cool movie that deserves more attention, and I came to like the minimalistic acoustic guitar score quite a bit.",1 +21216,"This is the kind of film one watches in gape-jawed, horrified silence, and yet continues to watch, mesmerized, as if watching a train wreck in slow motion. And yet, in the back of your mind, thoughts are churning: ""Who on EARTH green-lighted this garbage?""<br /><br />Some of the preceding user comments say things like, ""A good way to introduce children to Laurel and Hardy"" -- an insult to children everywhere. That children would need some sort of training plan to learn to love slapstick comedy shows a profound misunderstanding of the nature of children the world over. Others have commented on the faithfulness of the two stars' characterizations of Laurel and Hardy to which I would respond: so WHAT? One would think that the rash of movie BOMBS based on beloved series (Rocky and Bullwinkle, Avengers, Flipper, Mod Squad, ad nauseam) would have taught Hollywood that there are some things that simply can't be recreated. The films of Laurel and Hardy are readily available on video: why bother with this?<br /><br />As for F. Murray Abraham, a fine actor of stage and screen... well, all I can say is, he must have been in trouble with the IRS.<br /><br />Run, don't walk, away from the television if this trash comes on!",0 +12536,"The storyline was okay. Akshay Kumar was good as always and that was the only good thing about the movie. Kareena Kapoor looked bad. There was so hue and cry over her size zero but she did not looked good leaner. I don't know why the hell did Anil Kapoor accepted such a bad role. There was nothing much to do for him in the movie. Just because it is a Yashraj film does not means that an actor should accept the role however bad it is. Said Ali khan was alright. I think that it is high time that Indian directors and producers start thinking of Indian customers as intelligent lot. What are we ? fools!!!! What do they think, they will show 2 men taking on a SWAT squad to teeters and we will believe them. Is the Indian police so stupid that they are trying to nab some criminals.... they take an entire squad of 100 + policemen and no one was there to surround the palace. The action was crap and I have never seen such bad action. Akshay Kumar was between a circle of 30-40 policemen all shooting at him..... and he shooting back at them. None of the policemen's bullet touched him but he killed all the policemen. Crap. CRAP.<br /><br />I think the fight director who thought of this scene should take retirement.<br /><br />I strongly recommend NOT TO SEE THIS MOVIE.",0 +1103,"This is my first comment! This is a fantastic movie! I watched it all by luck one night on TV. At first 5 minutes i thought it was a B movie, but afterward i understood what an amazing product this was.<br /><br />I suggested to some friends to see the movie, only to tell me that it was a bad B movie. How wrong. Superficial critiques.<br /><br />I think that the movie is almost a product of genius! The well known director made an excellent job here and it is a shame to tell that he was out of the game all this time.",1 +21251,"What's happening to RGV? He seems to repeat himself in every movie. Has he run out of creative ideas? If he has, time to take a back seat. Went to see the movie with great anticipation - of course not once did I imagine it would be anywhere near the original. I knew it wouldn't, the promos said it all. But even then I thought it would be a great RGV treat, after all isn't he the same guy who directed Sathya and Company? Or is he? I have my doubts after watching Aag. I am not going to talk about the plot or the story, as most of it is taken from the original, if you are really dying to go and see this one, you could play a fun game with friends: identify the scenes from the original one and give ratings of your own! So Veeru becomes Heero (how corny is that?), guess Heeru wouldn't sound that great. Ajay Devgan is quite a disaster as Heero, the comedy is strained and the slurred talk that really was effective in Company sounds fake. The chemistry between Heero and Gunghroo (Nisha Kothari) doesn't exists at all. In fact the more charming Nisha tries to be the more irritating she becomes. This reaches a peak by the end. Raj is in fact not bad as compared to the others, he is a guy to watch in the future. I was really disappointed with Amitabh Bachchan as Babban, he looks like a caricature of Gabbar Singh. There is a scene where he is drinking something from a bowl all covered in a shawl, instead of inspiring fear he looks like a beggar with his bowl. The only performance that really stood out was Mohan Lal as Inspector Narasimha. I am afraid I don't have the patience to write more.",0 +12606,"This film has to be the worst I have ever seen. The title of the film deceives the audience into thinking there maybe hope. The story line of the film is laughable at best, with the acting so poor you just have to cringe. The title 'Zombie Nation' implies a hoard of zombies when in fact there are six in total. This cannot be categorised as a horror film due to the introduction of cheesy 80's music when the zombies 'attack'. The zombies actually talk and act like human beings in the film with the only difference being the make up which looks like something out a La Roux video. If you ever get the chance to buy this film then do so, then burn the copy.",0 +3277,"I found this to be a so-so romance/drama that has a nice ending and a generally nice feel to it. It's not a Hallmark Hall Of Fame-type family film with sleeping-before-marriage considered ""normal"" behavior but considering it stars Jane Fonda and Robert De Niro, I would have expected a lot rougher movie, at least language-wise. <br /><br />The most memorable part of the film is the portrayal of how difficult it must be to learn how to read and write when you are already an adult. That's the big theme of the movie and it involves some touching scenes but, to be honest, the film isn't that memorable.<br /><br />It's still a fairly mild, nice tale that I would be happy to recommend.",1 +626,The wit and pace and three show stopping Busby Berkley numbers put this ahead of the over-rated 42nd Street. This is the definitive 30's musical with a knockout frenetic performance from Jimmy Cagney. One of the last releases before the Motion Picture Production Code was strictly enforced. A must see.,1 +19985,"Why on earth is Colin Firth in this pointless film? Has he really been that strapped for cash?<br /><br />The film isn't clear on what it wants to be about, grief?, exotic places?, ghosts?, a vehicle for Mr Darcy? It's a muddled, muddy mess.<br /><br />There seems to be some sort of idea that Italy must be good, in itself, and that Italian has something to offer as a language - but in the end the girls just want to go back to yankland.<br /><br />There are pointless episodes on the beach, in churches, on busy roads - but what it is all about, or why anybody should care simply isn't clear.<br /><br />There was also a yank woman in the film. It wasn't clear what here job was, but she seemed only to be there to make vapid, inappropriate and maudlin comments to the girl. Was it supposed to be about paedophillia??<br /><br />A pretty dreadful mess, all in all. I gave it 2 rather than 1 because it doesn't have the charm of an utterly ghastly film.",0 +10981,"LOVE AT THE TOP--the utterly wrongheaded American title for the superb French film ""Le Mouton Enrage"" (which means, I think, The Rabid Sheep)-- is such an original movie, the fact that it dates back to 1974 seems all the more astounding. This film was far ahead of its time; even by today's highest standards, it accomplishes things that seem rich and new. Filmed by the hugely underrated director Michel Deville, it rather defies description in the way it combines social critique, comedy, mystery, love, sex and satire into one wholly original mix--leaving for the end a major but subtle surprise to render all that has gone before suddenly sad and more understandable. The cast is splendid, ditto the writing and theme. But it's Deville's delicious tone, keeping you constantly off-balance but enrapt, that pushes this ""lost"" film to a very high level indeed. (The written interview with the director on the ""Special Features"" section of the DVD is definitely worth reading if you have the time.)",1 +16804,"To say this film stinks would be insulting to skunks. As the other commenter says, this movie is insulting to anyone over the mental age of 7 (it is especially, incredibly insulting to gays). It is awful - and not in a ""so bad it's funny"" sort of way either - it's just plain awful. No, I have to say it: IT STINKS! (sorry skunks).<br /><br />From the opening credits to the end titles there is hardly more than 10 seconds of this movie worth opening your eyes for. The ""plot"" is incoherent, the characterization non-existent, the acting is of the over the top mugging ""look at me I'm being funny!"" school and so it goes on. The set pieces are clumsily set up (if at all) and are badly executed, it's just awful on every front - apart from the music maybe, I don't remember thinking the music stinks (apart from the songs).<br /><br />To be fair to the makers, they lay their cards on the table pretty quickly: the opening credits include the title ""Also starring Ertha Kitt as the voice of Betty the meteor"" (since as the meteor in question turns out never never say anything but make an occasional purring noise they may well have lifted Ms. Kitt's contribution from one of her records) and the second line of the movie runs something like: ""...and scientists have discovered new facts about the rings around Uranus."" Uranus - ""Your Anus"" geddit? geddit? huh? huh?? Your Anus? The humour really is that cheap.<br /><br />It says strange things about the ""comedies"" of that period in that it was perfectly permissable for the hero to deliberately shoot people dead in the street but not say ""sh*t"" out loud.<br /><br />I paid fifty pence (about $1.00) for this movie in a sale. I feel ripped off.",0 +6847,"The title overstates the content of this movie somewhat, which might lead to some unrealized expectations. Frankly speaking, there's very little ""panic in the streets"" to be seen here. In fact, throughout the movie very few people actually know that there's a murderer on the loose who may well be spreading the plague to everyone and anyone he encounters. Having said that, what we do have here is a very well done story with a level of suspense that starts out reasonably high anyway (because, unlike the people ""in the streets"", the viewer knows what's going on) and that director Elia Kazan builds very deliberately. As the plague-infected killer is sought, one of the more interesting sidebars I found was the developing relationship between Dr. Reed (Richard Widmark) and Police Captain Warren (Paul Douglas). At the beginning, the two really don't like each other, even though they have to work together. By the end, they've forged a real bond of respect for each other. Kazan did a good job with that.<br /><br />Pretty much all the performances here were excellent. Widmark and Douglas were great, and I was quite taken with a very early look at Jack Palance playing what would become his typical ""heavy"" role. I found very little to criticize here. Perhaps Barbara Bel Geddes came across as a little bit flat as Reed's wife Nancy, but her role wasn't really central to the story. All in all, an excellent piece of work. 9/10",1 +6308,"I have to totally disagree with the other comment concerning this movie. The visual effects complement the supernatural themes of the movie and do not detract from the plot furthermore I loved how this move was unlike Crouching Tiger because this time the sword action had no strings attached and most of the time you can see the action up close.<br /><br />I think western audiences will be very confused with 2 scenes one of which involves a monk trying to burn himself alive and the other concerning the villagers chanting that it is the end of the world. The mentioned scenes are derived from certain interpretations of Mahayana Buddhist text (Mahayana Buddhism can be found in China, Korea and Japan) and the other scene deals with a quirk in the Japanese calendar...people back then really thought that the world would come to an end... Gojoe has the action, story and visuals to mesmerize any viewer. I strongly believe that with some skillful editing it can be sold in the U.S. My one complaint is in the last fight scene (I can't give anything away--sorry).",1 +5934,"I saw this film in a London cinema in 1975 and have not seen it since. I found it hilarious. I loved it's originality. It's rare that someone MAKES a movie like this - and it's sad too.<br /><br />What I mean is, I once read a book called ""The Black Hotel"" - and as a film-fan, I always ""picture"" books as films. Kinda ""adapt"" them, you know? But as I read it, I thought, well, this would make a great movie - but of course it would have to be ""adapted"" - to the point where it would bear little relationship to the book.<br /><br />But then I thought, well WHY? Sure, it could never be shown on Sunday afternoon TV, but provided it were shown in cinemas to ADULTS, who knew what it contained, where's the HARM? Dammit, my civil liberties were being crushed here. A director SHOULD be able to make a literal film adaptation of ""The Black Hotel"".<br /><br />In an ideal World, censorship of films for adults should not EXIST. But sadly, whilst I accept that with INTELLIGENT adults, such freedom might be harmless, there would always be those who would lack the rationality to differentiate between fantasy and reality, and who might be spurred on to commit foul deeds.<br /><br />However, it's hard to see how ""La Bete"" falls into that category.<br /><br />On it's appearance in England, the British censor dismissed it out of hand. Despite the '69 relaxation on nudity, given the film's theoretical theme of bestiality, had the censor passed ANY of it, he'd have been looking for a new job on Monday.<br /><br />BUT... in those days, there was an alternative. The G.L.C. This was a local town council with a department who had the power to pass a film just for London, where it was deemed audiences were more ""sopisticated"" than those who lived out in the sticks.<br /><br />The film was duly submitted and PASSED. However, it later emerged that the ""board"" consisted of just four people - three who voted, plus a ""chairman"". And on the day, one of the voters was off sick. Thus the remaining two voters and the chairman sat down to view ""La Bete"".<br /><br />One of said voters thought, like me, that the film was hilarious and hardly likely to encourage foul deeds by ANYONE. The other lacked imagination and simply thought the piece disgusting. And the chairman didn't understand it, so decided to err on the side of FREEDOM.<br /><br />When the missing voter finally saw the film, they too thought it disgusting, but it was TOO LATE! The film had received its ""X-London"" certificate and opened to mixed reaction. The G.L.C. film censorship board was disbanded soon after! Thus ""La Bete"" only opened in London by what could best be termed a FLUKE! But I'm glad it was. It's GREAT! If you haven't seen it, DO so. It's a FANTASY, and as such, it's far less disturbing than most things you see on the news these days...",1 +15559,"that's incredible! Fidani (who he was also a spiritist) was one of the cheapest director of all the world. This movie stole the original title of Leone's ""Duck you sucker!"" but tell the boring story of a Pinkerton agent against the killer ""Testa di Ferro"" (the improbable Gordon Mitchell, a stuntman). All is poor and crazy in this pelicula filmed into the dear landscapes of Lazio. The story is bad and crazy at the same time. Fidani was not able and ingenuos at the same time. Into the story happened some kind of crazy illogical things (like the discussion into the Sheriff's house and the demential appearance of Butch Cassidy !?!?!?!?!? yes, really Butch Cassidy,who is portrayed like an idiot). Terribles nuit americaine, absurd comportaments, illogic plot, bad acting and a fugace appearance by one of the most rewarded anchorman in the story of italian television, Renzo Arbore. Ah, of course: Klaus Kinski. Yes is great and terrible, but i'm sure he was in it only for money an for playing with iron horses) 2 of 10 but...DON'T MISS IT!!!!!",0 +20987,"The Good Earth is perhaps the most boring film I've seen in my life. The plot is slow and lacking. The acting is borderline comical. While I love Paul Muni, I can now say i have seen a film that does not do his true ability justice. The only saving grace I found with this film is it's production value. The use of hundreds of extras throughout the film creates a very believable and interesting environment. Also, the beautiful effects used to create the illusion of millions of wasps sells easily and was revolutionary at the time. Other than the production value I can say little else that is good or entertaining about this film.",0 +19449,"Wow it's ironic since this movie has been out for awhile I think that someone else JUST reviewed it a couple days ago.<br /><br />Anyways, I watched this movie simply because it has Nick Stahl, for the record.<br /><br />The movie was ridiculous. The characters drove me INSANE, they were SO Cliché and STEREOTYPED. This movie had some of the worst dialogue I have ever heard. It had way too many plot twists too.<br /><br />There is ONE scene in the movie worth seeing however, the scene: ""Warm heart, cold gun"" where Nick Stahl kills the obnoxious girl in the shower. (Well, actually they were all obnoxious.) But his acting in that scene was excellent. The look on his face, it reminded my of American Psycho (a good movie). The scene is worth seeing but not worth seeing the rest of the movie for, do yourself a favor and don't watch it.",0 +13978,"""Giant"" is one of the most boring, overly-long Hollywood contraptions ever. Many scenes seem utterly fake and without energy. Rock Hudson, Elizabeth Taylor, and James Dean are wasted in this big Hollywood production. A central notion to this movie, that a rancher would ever resist drilling for oil on his land, is absurd, and I know this because I'm from Houston. A couple of scenes, especially Dean serving Taylor coffee, redeem this otherwise boring film. For a much more accurate and interesting depiction about how modernism changed the ranches in Texas, see ""Hud"" (one of Paul Newman's great performances) or ""The Last Picture Show.""",0 +23684,"No, I've never seen any of the ""Santa Slasher"" series, i.e. 'Silent Night, Deadly Night,' the original 'Black Christmas' or this one, 'Christmas Evil.' I've heard all about their reputation, or, MADS (Mothers Against Deranged Santas.) I thought I would rent this one as I've heard it pop up as a reference on a 'Fat Guys At the Movies' segment.<br /><br />Mothers should be against this, but not for the ooooohhhh ""killer"" Santa, but for the fact this movie was just plain crap. Boring, long even at only 92 minutes, crap.<br /><br />Little boy sees Santa arrive down a chimney in 1947, deliver presents, eat some goodies and miraculously, float up the chimney. Boy goes to bed, but returns to living room to witness Mommy and Santa (sort of) getting it on. Apparently this messed up that kid for the rest of his life, though the scene was about as steamy as when Ralphie's dad got the ""Leg Lamp"" in 'A Christmas Story.' He was sooo disturbed, he went to the attic and, well cut his own hand.<br /><br />Fast forward to the future! Now, it's 1980 and messed up boy works in a toy factory. We get a whiff of him being a little off-kilter, and he stalks both kids and parents alike. Who's naughty, who's nice, blah blah. It takes a good two-thirds of the film to get him to finally snap as if that's not foreshadowed from frame one. NO MOVIE should take that long.<br /><br />I will admit, this movie had its tension building, but only because I kept expecting him to do something, anything to anyone. When he finally does, well, punish ""who's naughty,"" it's as graphic as a ""Garbage Pail Kid"" card. And I haven't mentioned the WTF ending. I'm thinking it was a metaphor, but in reality, it's just as weird as the rest of the movie. (Take the brother who's upset his sibling is killing, and his solution is uh, killing.) Don't open this mess, even on Christmas Eve, or Evil. Again, I didn't watch the other ""Santa-Slashers"" but this one sucked bad. It built up suspense due to the nature of the movie and never once delivered a decent present.",0 +22121,"Well, on it's credit side (if it can be said to have one), Timothy Hines DID manage to capture the original setting of H.G. Wells' outstanding novella. But other than that - well, to call a spade a spade - it sucks bigtime. What the Master Ed Wood could have done with the alleged $20 million dollar budget! Timothy Hines really does make Mr. Wood, who was a flawed genius anyway, look like the best filmmaker of all time. The special effects (I guess you'd call them that) are not even up to computer game standards. The acting is, well, perhaps about dinner theater comparable, and the accents are atrocious. At the risk of sounding offensive, a lot of the acting from the principal male characters is (especially Poor Ogilvy), well, ahem, . . . GAY! Poor Ogilvy minces and flounces about the bogus English countryside, waving his asbestos white handkerchief about as if it were heat resistant armor. Hey, the Stormtroopers in ""Star Wars"" had neat white body armor too, and it didn't work either, they still got blasted. Even when Ogilvy and Company get fried by the Martians' 'Heat Ray'(?), they flounce and mince in some weird kind of dance, even when they're theoretically DEAD and reduced to skeletons, which persist in unseemly dancing and writhing. Maybe Timothy Hines rented the skeletons from Ray Harryhausen, being left over from ""Jason And The Argonauts"". Or was it ""Josie And The Pussycats""? I dunno. The soldiers, presumably because they're 'military', all seem to just rather unconvincingly explode, like the soldier on crutches and his unfortunate comrades carrying the stretcher just beyond him. Wow! I loved it! But the 'soldiers' all looked like they were either fascist troops from the Spanish Civil War, or Boer Commandos (which would be more or less correct for the period. Perhaps that was some bit of shrewd subtlety on the part of that wicked genius Hines?). Oddly enough, the character of the Curate looks exactly like he's drawn in the original illustrations by Warwick Goble, and he also turns in the most convincing job of acting. Oh, yeah. Musn't forget the THUNDER CHILD. In the book, the warship is described as an ironclad torpedo-ram. It was MEANT to RAM enemy ships. Yet, it's bow was crumpled after ramming the Tinker-Toy constructed Martian War Machines, with a tiny jagged hole in the forepeak, and she sank. An ironclad warship like THUNDERCHILD could've rammed the TITANIC and survived, but I guess the Royal Navy was bound by the same lowest-bidder constraints as our own Military. The costumes are all wrong, especially the British Army and Police uniforms, cobbled together mostly from USMC Alphas. And Timbo, in an obvious homage to Western Films Of Yore, has obviously set his movie in Wild Western England, because all his riders are using western saddles. The accents being used by just about everyone appear to be a mixture of some kind of Scottish regional accent used by Clan Macabre, and magically delicious Irish accents from County Malarky. On the credit side, and contrary to what one reviewer wrote, the only genuine, authentic feature of this Thing is the artillery. The guns are not from the Civil War, but appear to my eye and research as bona-fide British nine or 12 pounder Rifled Breach Loaders, perfectly authentic to the period. So was the ammunition shown being used. But the Artilleryman, who is a driver in the Horse Artillery, was not shown correctly driving his limber. You don't sit on the frigging limber box and drive a gun team, you ride the nearside wheel horses. The Opening, using what I believe is authentic period film footage, is okay, and the score's not bad. However, to the best of my knowledge Weybridge has never had an underground, and it certainly didn't in 1898.<br /><br />But growing up reading this novel, I am very disappointed. Even more disappointed then I was at Spielberg's zillion dollar, special effects laden version. Maybe his version would have profited by swapping Anthony Piana for Tom Cruise, and vice versa. I have a lot more to say, but I'll let it go at this for now: I wish somebody would make a GOOD version of ""War Of The Worlds"" that's faithful to the original. Timmy's vision is fine for a high school film class, or maybe I should say pretentiously stupid for a college-level film student, and about as bad, which is about the best I can say for this thing, but that's about it. Oh, yeah. Just where DID the budget go? And what happened to Michael Caine? I'd like to hear HIS comments! I have a sneaking suspicion that Timbo ""Orson Wood"" Hines' breathtaking, bound-breaking cinema masterpiece just might be the risk-taking director's ticket to cult stardom, because, I must confess a guilty pleasure at watching this movie, which I didn't pay for anyway but was thoughtfully sent to me by a friend who burned a DVD copy for me, with no malicious intent that I've been able to determine. I must add here that I thought Blackmoon's dubbed and abridged version was not only a vast improvement, but an absolute, hysterically funny (in a good way) treat to watch. I find it hard to watch Master Timbo's version after Blackmoon. Keep it up, Tim! Make your own version of ""DUNE"", now. It just awaits the hand of a master like you! And all you headupyourass snobs who hated Cloverfield? FORGET IT. It CANNOT BEAT TIMBO HINES ARTISTRY FOR SHEER HILARIOUS AWFULNESS! HEY GET A LIFE!TIMBO IS WORSE THAN THE MASTER ED WOOD! I KID YOU NOT!",0 +3463,"This movie describes the life of somebody who grew up in the worst of circumstances but unlike many people he actually grew up to be a respectable person. Whats more is that this is a true story.<br /><br />Antwone Fisher is so innocent and yet he was abused such just because he was not white. Antwone Fisher has been married to the same women for ten years and he never fooled around with women, coke, cigars, weed, alcohol, or any of those things that are very popular in the places he was growing up. <br /><br />There is not much more to say about this movie it is excellent. The only rating I can give it is a 10/10.",1 +10752,"If this had been done earlier in the Zatoichi series it could have been one of the best. It is good enough, as most of them are, but the plot and the characters seem too complicated for the series at this point. The situation is unusually intriguing: the farmers in the province have two champions, a benevolent boss (for once) and a philosopher-samurai who starts a sort of Grange; both run afoul of the usual local gangsters, who want the crops to fail because it increases their gambling revenues and their chances to snap up some land; their chief or powerful ally is a seeming puritan who is death on drinking and gambling but secretly indulges his own perverse appetites. (He also resembles Dracula, as the villains in the later Zatoichi movies tend increasingly to do.) These characters have enough meaning so that they deserved to be set against Zatoichi as he was drawn originally, but by now he has lost many of his nuances, and the changes in some of the characters, such as the good boss and the angry sister of a man Zatoichi has killed, need more time then the movie has to give, so that the story seems choppy, as if some scenes were missing. Other than that, the movie shows the virtues of most of the others in the series: good acting, sometimes lyrical photography, the creation of a vivid, believable, and uniquely recognizable landscape (the absence of which is obvious in the occasional episode where the director just misses it), and a technical quality that of its nature disguises itself: the imaginatively varied use of limited sets so their limitations seem not to exist. And of course there is the keynote actor, whose presence, as much as his performance, makes it all work. This must be one of the best-sustained series in movie history.",1 +8743,"Ho, ho, homicidal maniac! This spirited tour-de-force adaptation of a great EC Comics horror tale is undoubtedly one of the best episodes of the cable TV series ever made. Director Robert (""Back to the Future"") Zemeckis makes the most out of a witty script by Fred (""Night of the Creeps,"" ""The Monster Squad"") Dekker which centers on a ruthless two-timing housewife (well played by Mary Ellen Trainor, who was married to Zemeckis when she starred in this episode) who kills her jilted jerk of a husband (a nice cameo by Marshall Bell) on Christmas Eve by whacking him upside the head with a fire-poker. Complications ensue when a deranged murderous madman dressed up as jolly Kris Kringle escapes from a nearby asylum and decides to pay Trainor a decidedly unfriendly visit. Alan Silvestri's spooky, stirring score and Dean Cundey's typically polished cinematography further enhance the macabre fun. And Larry Drake (the sweet gentle giant Benny on ""L.A. Law""!), with his creepy hiccuping guffaw, a demented twinkle in his bright green eyes, and a leering, truly wicked grin, makes for a sensational sanguinary Saint Nick.",1 +10670,"I originally saw this film years ago during Cinemax Friday after dark series(back when the cable box was built like a keyboard),and it intrigued me. Even though there is a pointless aspect to the film it is well acted.The performances of Depardieu & Dewaere are very enjoyable.They have a good chemistry together & Miou-Miou makes a pink fur look breathtaking.A movie like this probably wouldn't be made in these politically correct times(at least not in the US), since it seems to sensationalize things like violence,robbery,& casual sex. This movie proves that with a talented cast & also talented directing a good movie is a good movie no matter the subject.It saddened me to find out Patrick Dewaere committed suicide & in the near future I,ll will check him out with Depardieu & Miou-Miou in Get Out Your Hankerchief.",1 +11924,This is a must see for anybody who loves thriller's specially political thriller. One scene that stands out is Milgram experiment it is shot to perfection very rarely do we get to see a movie shot and scripted the way this movie is presented.<br /><br />The movie starts with a Kennedy like assassination and a three member team is constituted to investigate the assassination. However one of the member does not agree with the final findings of the committee. As per the terms set that member would initiate a one man investigation into the assassination. This investigation gets him involved in into to deep and dark secrets of high office politics and the way they are controlled.,1 +10422,"Just a note to add to the above comment. Fear of a Black Hat doesn't have the criminal who's image has been ripped off by the band, that's in CB4. Easily confused as the two films are so similar, but Black Hat is vastly the superior of the two..... yeah.",1 +5496,"I had no idea what this movie was until I read about it in the L.A. Weekly. I generally agree with the reviews in the LA Weekly and decided to get a ticket for this film. the film stars molly parker (from my favorite television show Deadwood) and Lukas haas -- who I suspect we will be seeing more of in the very near future. The film is funny, heartwarming, features great acting, and beautiful photography. i don't know if the film has distribution, but I hope it does - or will - soon. this is destined to be a real indie gem. it even has music by my favorite band the silver jews! the only disappointment was that molly parker wasn't there at the screening. even without her there... this was hands down the best film i saw at the festival.",1 +10372,"I recently rented the animated version of The Lord of the Rings on video after seeing the FANTASTIC 2001 live action version of the film. The Lord of the Rings live action trilogy directed by Peter Jackson will undoubtably be far better than George Lucas' Star Wars ""prequel"" trilogy (Episodes 1-3) will ever be as the real fantasy film series of the 21st century!<br /><br />I remember seeing the animated version as a child, and I didn't quite understand the depth of the film at that time. Now that I have read the books, I understand what the whole storyline is all about. To be sure, some of the characters are quite silly, (Samwise Gangee is particularly annoying, almost as much as Jar Jar Binks in Star Wars Episode One, (AWFUL!)) but, I have to say it follows the book rather closely, and it goes into part of book two, The Two Towers. The good things are that the action is somewhat interesting and some of the animation is quite remarkable for it's time. The bad things are that it ends upruptly halfway through The Two Towers without any result of Frodo's quest to destroy the one ring, and the animation looks quite dated compared to today's standards. <br /><br />Overall, not AS bad as many say it is. BUT, the 2001 live action version is the new hallmark of The Lord of the Rings! At least Ralph Bakshi took the script seriously! Peter Jackson has said that the animated version inspired him to read the books, which in turn caused him to create one of the greatest fantasy series ever put on film, so we can at least thank Ralph Bakshi for that matter! I'll take the animated version of Lord of the Rings over the live version of Harry Potter anyday!<br /><br />A 7 out of a scale of 1-10, far LESS violent than the 2001 live action version, but NOWHERE near as good! For diehard fans of the books and film versions of The Lord of the Rings.",1 +2084,"Directed by Brian De Palma and written by Oliver Stone, ""Scarface"" is a movie that will not be forgotten. A Cuban refugee named Tony Montana (Pacino) comes to America for the American Dream. Montana then becomes the ""king"" in the drug world as he ruthlessly runs his empire of crime in Miami, Florida. This gangster movie is very violent, and some scenes are unpleasant to watch. This movie has around 180+ F-words and is almost three hours long. This movie is entertaining and you will never get bored. You cheer for the Drug-lord, and in some scenes you find out that Montana isn't as evil as some other Crime Lords. This is a masterpiece and i recommend that you see this. You will not be disappointed. 9/10",1 +4084,"""Once in the life"" is a very good movie. However it's not good for everybody, due to the extensive use of vulgar language and the violence of some of the situations. The movie manages to represent in an anecdotic, believable way the ""life"" in NYC neighborhoods where drug problems are important. This depiction is in turn used as the decor for a most thoughtful and suspenseful drama backed up by powerful dialogs (however I had a hard time understanding some of them because english is not my mother tongue. On video it's OK). There is a little overplay sometimes, but I think it fits quite well to the general orientation Fishburne gave to the movie, which gives matter for reflexion more than just being a good style exercise, notably in the time/action management. The characters, even though not simple, are easy to relate to and actors do a fine job at impersonating them. By the way I much enjoyed the soundtrack (B. Marsalis). If you're not too prude, you should enjoy seeing that movie once, twice, three times. I rated the movie 9/10.",1 +6830,"I'm so glad I happened to see this video at the store. I was looking for some happy movies and this one turned out to be a true gem. I loved that the movie, a love story of sorts, wasn't about some beautiful twenty-somethings; rather, it's a story of some beautiful sixty-somethings, who used used to be twenty-somethings. It's a good, well written, and wonderfully acted story with fabulous WWII band music thrown in as well. It's also got a delightful surprise in it for Scottish castle lovers. It left me smiling and ready to watch it again, which I did a couple more times before I turned it in. I highly recommend it.",1 +8528,"One of the best ""Amitabh comeback"" movies I liked. This was the phase when Govinda was going strong with Dhawan. The songs were awesome and totally as we call it ""masti"" type. An evergreen entertainer with the likes of the multifaceted Anupam Kher chipping in. The story line has a lot of hilarious twists and turns as is known for David Dhawan's potboilers. With a timely appearance by Mrs.Madhuri ""Nene"" Dixit, it was a total riot towards the end. It was great to see Amit perform with such force and humor after a long exile. Although some may consider it a typical ""Bollywood Masala"" movie, I would watch it any day. I am giving it an easy 8 out of 10 just for being pure Bollywood.",1 +2009,"Dick Tracy wasn't the best for many comic book fans, because they wanted something with blood like Batman. Dick Tracy plays the innocence of just being a comic book with villains that have severe appearance disorder and being fun. Warren Beatty directs and stars as the main character that fights crime without even using super powers. I have liked Dick Tracy since I was a child because of the comic atmosphere of the main colors: red, blue, orange, yellow, green and black. This is the perfect film for anybody to watch with their children. Al Pacino is like the Jack Nicholson in Batman and plays Big Boy Caprice with zest. Madonna as the babe who is the second villain in this film doesn't play the same boy toy she represents. Like I said, no blood, obscenities, sexually innuendo or anything to offend anybody.",1 +18518,"I was eager to see ""Mr. Fix It"" because I'm a huge David Boreanaz fan. What I got, though, was a 1-1/2 hour nap. The premise seemed enjoyable: Boreanaz is Lance Valenteen, proprietor of a business called ""Mr. Fix It"", where dumped men enlist his help to get their girlfriends to take them back.<br /><br />Among the problems with this movie are the editing, script, and acting. Although I've found Boreanaz delightful in his other film roles (with the exception of that ""Crow"" movie he did), this was disappointing. At times, his character was interesting and others, flat. The supporting cast reminded me of soap opera day players. I realize it wasn't a big-budget film, but some of the scene cuts and music just didn't seem right.<br /><br />My advice: watch at your own risk.",0 +259,"I have always been keen on watching Hong Kong movies, but all of them failed to meet my expectations...until now! BURNING PARADISE doesn't contain the flat humor most HK movies have, nor a second rate story line that has been dragged into the film. The story is not complex, but there are never scenes that are just there to fill some ""intelligent"" space (the only truely intelligent martial arts film I have seen is CROUCHING TIGER, but since Hollywood is involved it is no true HK movie for me). There are some incredible fight scenes in this movie, from the first one(which is one of the coolest I have ever seen, yet so short) to the last main scenes! But mind, there's also a lot of blood that flows (people cut in half, decapitated, etc). The production is pretty good and the special effects show that the fantasy of the writer can be fulfilled even though some shots must be pretty technical (notice: the sheet of paper that he throws and got pinned into a wall!). Yep, it's not Tsui Hark or John Woo that made my favorite Hong Kong film, it's Ringo Lam! And I'm sure as hell going to check out more from this director! Ace.",1 +13287,"I can't think of much to say about this film. <br /><br />This was an awful movie...I can't even tell you what made me decide to view it. It had SO few redeeming qualities that I don't even know where to begin.<br /><br />The plot moved from implausible to downright absurd. My entire body was tense throughout the duration of the movie because I could not wait for the awful thing to be over and done. By the end of the movie, I found myself feeling beyond relieved. <br /><br />The editing was poor, the acting was sub-par, and the storyline was weak. Francoise Robinson was cast as a Native American, even though she does not even closely resemble someone of Native American heritage. <br /><br />If a movie is going to be this idiotic, it should be laughably stupid -- at the very least. It wasn't. It was just pathetic.",0 +7907,"I loved this movie. It is rare to get a glimpse of post-partum Vietnam, and this movie-sans combat scenes and exciting bombs and gunfire- did it. I had no idea I'd be so affected by it. What an amazing look at how alien Vets feel. It was tough to watch, quite frankly. We all understand the fighting and the Apocalypse Now type of drama, but this is so so different. What happens when they come back and try to live a life? They can't. It made me very aware of a large group of men that are rattling around lost in America. Not able to relate, can't sleep, can't have love affairs, can't deal with ""normal society"". They feel totally apart. This is a huge tragedy, and one that isn't addressed enough. Yeah, we've changed our attitude about Vietnam Vets, we like them now, but so what? It doesn't seem to have made any difference to them. It's too late? So it was a great film, but I cried a lot. I have no other criticisms.",1 +23670,"Great CGI effects & a truly Oscar-worthy performance by Gary Sinise as Lt. Dan. <br /><br />Tom Hanks is a one-trick pony in this movie, how he got the Best Actor Oscar that year over Morgan Freeman was a crime. <br /><br />This movie is a pandering treacly love letter to the baby boom generation, with a barely concealed right-wing prejudice, beginning from Forrest's service in Vietnam all the way through to the ""resolution"" with Jenny at the end.<br /><br />With that said, though, it is hugely entertaining and an American movie through and through. I found certain parts of this film exceedingly offensive, Zemeckis dumbs down this movie almost to the level of Gump himself . . .maybe that was the point he was trying to make.<br /><br />Watch this film and ask yourself ""What is Robert Zemeckis saying about what makes a good American?"" <br /><br />Forrest seems to have made the ""right"" choices and been at the ""right place at the right time"" for the last 45 years. Those who are wrong according to the director's vision seem to pay a heavy price. So is Zemeckis saying that idiocy disguised as innocence and naivety is a patriotic, even AMERICAN quality?",0 +20190,"I am ashamed to have this movie in my collection. The most redeeming factor to owning the DVD is the short film in the bonus features. My vote for this movie is a big fat ZERO. Don't misunderstand, I'm a horror girl. but i want some meat behind the story, not to mention i prefer the evil to happen to humans, not to be tricked in to watching, what seemed like forever, clips of animal snuff. Acts of brutality interrupt achingly long silence and poor acting. If i was forced to make a comparison to another film, the only one that comes to mind is Cannibal Holocaust. Bad, boring, pointless and a wholly uncomfortable watch.",0 +22302,"This movie is a vehicle for Schwarzenegger-clone Alexander Nevsky. His charisma however is insufficient to lift this movie above the level of its poor script. He has little to add to his Arnie-act.<br /><br />Michael York is quite pathetic as the begging diplomat. Watching him revisit his D'Artagnan-act from the time that he was a better actor made me feel uneasy. Come on, you can do better than that!<br /><br />The story is full of holes and unexplained relations; top of this bill is the informer of Vlad, who sounds like an American woman, but from the context appears to be working for a Russian government-department.<br /><br />Although the story takes place well after the end of the Communist-regime, all the Russian characters are still very communist-like. In contradiction to that, Vlad is allowed to drive a pimped up all utility vehicle as police-car. The action scenes are poorly shot and therefore lack dynamics.<br /><br />Not a must see movie...",0 +22502,"Everything about this film is hog wash. Pitiful acting, awful dialog, ugly native girls. this movie sinks into oblivion!!!!!!!!!!!!!!! The director must have been a weekend bender. Robert C. is totally lost and has not got a clue on what is going on . The college kids are worst. No acting talent at all, very stupid reasoning, and just down right dumbbells. Special effects are for the birds. The so called security force around this park belongs in toy land: with stupid looking guns, walkie talkies that are useless; and a computer system that ranks with a roll of toilet paper. if the park is under construction and nothing works; why bother inviting potential clients until everything is complete. the writers should be the first victims of the mess along with the producers and the crew. The whole film belongs in a septic tank shot to another planet for viewing. What a gem. Convicts should have to watch this, so they can commit suicide.",0 +21589,"A stupid rich guy circa about 1800 wants to visit a nearby mental asylum to see how a famous doctor cares for his patients. Despite an initially hostile response, he is soon cordially invited in and given a tour by the good doctor. And, as the doctor shows him about, he talks and talks and talks!!! And as he talks, loonies run amok here and there doing nothing especially productive. While there is SOME action here and there (and some of it quite disturbing), it's amazing how dull and cerebral the whole thing is--lacking life and energy, which is odd for a horror flick. Even a guy who thinks he's a chicken and dresses like one becomes rather tiresome. The further this tour takes the guest, the more disturbing it becomes until ultimately you realize that the inmates have taken over the hospital and are torturing their keepers. Yet again, despite this twist, the film is amazingly lifeless in many places--particularly when it moves very slowly as a bizarre ceremony is taking place or people are just wandering about the set. Only when the workers from the asylum found in a prison cell, starving, does the film have any real impact. Considering this plot, it sure is hard to imagine making it boring, but the people who made this cheap exploitational film have! Now with the same plot and competent writing, acting and direction, this COULD have been an interesting and worthwhile film.<br /><br />You know, now that I think about it, this was the plot of one of the episodes of the original ""Star Trek"" TV show! You know, the one with ""Lord Garth--Master of the Universe"" and Kirk and Spock are held prisoner by this madman and his crazed followers.<br /><br />A final note: The film has quite a bit of nudity here and there and includes a rape scene, so be forewarned--it's not for kids. In fact, considering how worthless the film is, it isn't for anyone! However, with the version included in the ""50 Movie Pack--Chilling Classics"", the print is so incredibly bad that it's hard to see all this flesh due to the print being so very dark.",0 +14982,"I think that it was just pointless to produce a second part of a movie like ""My Girl"". ""My Girl"" was a very good movie but it is ridiculous making a second part of a movie in which one of the main characters (Macaulay Culkin as Thomas J.) dies. The story was over after the first movie. I wonder why someone tried to find a way to make the story going on. That was senseless!",0 +9826,"Lost isn't the greatest TV show in history, but it's not far off. It doesn't have the plot or characterisation of The West Wing or possibly even early ER, however, it is arguably the most continuously gripping show I have every come across. I love the way I can't guess what's going to happen. I love the re-telling of the characters' back stories which often give rise to new dimensions for us to see them in. In some ways I want the show to last forever, but I think they can get 6-7 seasons out of it before they have to end it on a glorious high. The combination of the characters and their nationalities coupled with the show's fluidity for moving backwards and forwards thus extending dead characters ""life spans"" all adds to the overwhelming sense that this show is something very different from what we are used to. It's captivating, surprising and (here's a little suggestion for all of you conspiracy theorists) more than a little interactive- keep those internet discussions going- you're only adding to the plot...",1 +1940,"A fine effort for an Australian show. which is probably not surprising seeing as there seems to be somewhat of a resurgence in quality Aussie drama. dare i compare this show to the brilliance of love my way? no. but it is reminiscent of early secret life of us. the cast is great, gibney works her magic in the first two episodes i have seen, the British cast is strong also especially the callum and lizzie characters. but abe forsythe may be the saving light (not that it needs saving) if this show is to get another season. i wasn't a fan of his performance in the awesomely awesome marking time mini series a few years back but he was great as hal in always greener. its also good to see brooke satchwell again. lets hope the show keeps improving with each episode.",1 +10244,This is a great movie for all ages. Its the story about three animals how have to find their way home. There is a bit of a twist at the end and mainly throughout the whole movie. You never know what is going to happen next. This movie makes you cry and makes you laugh. You just don't know what going to happen next. The trek home is all beautiful with all the wonderful wildlife scenes. They producers also spent a lot of money for this movie and it shows too. The animals in this movie were well trained and are great actors/actress themselves. Everything about this movie is great! 10 out of 10 the whole way! Rent or buy it today I can guarantee you will love it the whole family will!,1 +13838,"::POTENTIAL SPOILERS::<br /><br />Man, this movie was awful. A Catholic/superstitious/suspense thriller it goes over already well tread ground from previous movies.<br /><br />The doubting priest. Sex and the priesthood. Politics and religion. Church hypocrisy. Conspiracy involving the church. The dawn of a new evil age. All kinds of dark magic voodoo battles between good and evil.<br /><br />Pretty stupid and lame with a weak storyline to suffice. The story revolves around two concepts: Absolution, better known as the Sacrament of Anointing the Sick - the last rights a person can ask for to cleanse one's sins while on the brink of death; And Excommunication, the act of cutting a person off from the Church. Basically, an Excommunicated person can't receive Absolution. Thus comes in the Sin Eater, and I'll leave it at that. Throw in all the dopy things I already listed and you have ""The Order"".<br /><br />I found the sex scene with the priest interlaced with shots of a picture of the Virgin Mary rather insulting to Catholics. It also ends with Heath Ledger saying (I paraphrase) ""I am the redeemer and damner of sins, I live on without love blah blah blah"" /cue him walking in dark alley with long trench coat alla ""The Matrix"".<br /><br />I gave this movie a 1 for not only being crappy and unoriginal but also because it managed to insult an entire faith in the process. If you want to see something better I suggest ""The Prophecy"" with Christopher Walken.",0 +23119,"Entertainment Tonight has been going down hill for the last few years, but as of last night (Aug 17th 2006) they reached a new low.<br /><br />In an effort to try to hype up their broadcast, they decided to post actual photos of JonBenet Ramsey's body in their teasers last night ...saying ""Pictures from the case you have never seen before"". The two photos were graphic and very disturbing. One was of the side of her face and head/neck and you could clearly see the cord that was used to strangle her around her neck, and bruising on her face. This was so hideously awful, I could not believe it. How has this got to do with ANYTHING remotely related to Hollywood Entertainment?? Nothing!! They have dropped their level of dignity and values to a new low....and it shows. This used to be THE premiere show to watch...and it's just garbage now.<br /><br />I will watch Access Hollywood from now on.",0 +19407,"I was expecting the movie based on Grendel, the book written by John Gardner in the late 1970's. It was based on the Beowulf epic, but told from the perspective of the monster. <br /><br />Whatever you may think of Gardner's book, a movie based on the Beowulf epic should not be entitled Grendel, when it doesn't say anything more about the monster beyond the few pathetic scenes in which the CG monster is shown as nothing more than a modified Predator. <br /><br />On top of this, the writers should also be punished for screwing up the original story so badly and contributing to the continued growing ignorance of mass TV audiences throughout the US.<br /><br />Typical Hollywood to get this so wrong. <br /><br />Very disappointing and a complete waste of time.",0 +11316,"After ""Beau travail"", everybody was waiting for Claire Denis to make a follow-up masterpiece that never arrived. Now it has. Denis makes a quantum leap in this film, an orgy of gorgeous cinematography, elliptical editing and willfully obscure narrative events that feels strange and acts even stranger. There's a nominal plot (derived partly from the Jean-Luc Nancy book of the same name) about a mature man in need of a heart transplant and who seeks a Tahitian son he abandoned long ago; but mostly it's an exploration of the idea of intrusions personal and cultural. It takes a couple of viewings to fully comprehend, and has pacing problems close to the end, but it's still more advanced and gripping than anything else I've seen this year. Miss it at your peril.",1 +22548,"First, I am not really a fan of the whole ""things eating flesh in disgusting new ways"" genre of film but I am a bad movie afficionado so my next door neighbor said he had the worst movie ever. This one. So we start watching it. First and foremost - it is recorded on a camcorder sans tripod! Second the voice of the skinny white doctor is dubbed by a large black man! Third, none of the dialogue makes any sense. Fourth, the zombie scenes, though unconvincing and chockful of poor makeup and tomato paste, lead me to believe the director (and my next door neighbor) are in need of psychological help. It's funny for about 5 minutes but it gets old fast. It's so amateurish it's like watching a poorly dubbed high school video yearbook.... with zombies. A note to anyone involved with this movie - I want the 20 minutes of my life I spent watching this, before I fell asleep, back.",0 +3686,"1958. The sleepy small Southern town of Clarksburg. Evil Sheriff Roy Childress (the almighty Vic Morrow in peak nasty form) cracks down super hard on speeders by forcing said offenders off a cliff to their untimely deaths on an especially dangerous stretch of road. Childress meets his match when cool young hot rod driver Michael McCord (a splendidly smooth and brooding portrayal by Martin Sheen) shows up in town in his souped-up automobile with the specific intention of avenging the death of his brother (Sheen's real-life sibling Joe Estevez in a brief cameo). Director Richard T. Heffron, working from a taut and intriguing script by Richard Compton (the same guy who directed the 70's drive-in movie gems ""Welcome Home, Soldier Boys"" and ""Macon County Line""), relates the gripping story at a brisk pace, neatly creates a flavorsome 50's period setting, and ably milks plenty of suspense out the tense game of wit and wills between Childress and McCord. The uniformly fine cast helps a lot: Sheen radiates a brash James Deanesque rebellious vibe in the lead, Morrow makes the most out of his meaty bad guy part, plus there are excellent supporting performances by Michelle Phillips as sweet diner waitress Maggie, Stuart Margolin as a folksy deputy, Nick Nolte as amiable gas station attendant Buzz Stafford, Gary Morgan as Buzz's endearingly gawky younger brother Lyle, Janit Baldwin as sassy local tart Sissy, Britt Leach as stingy cab driver Johnny, and Frederic Downs as the stern Judge J.A. Hooker. The climactic vehicular confrontation between Childress and McCord is a real pulse-pounding white-knuckle thrilling doozy. Terry K. Meade's sharp cinematography, the well-drawn characters (for example, Childress became obsessed with busting speeders after his wife and kid were killed in a fatal hit and run incident), the groovy, syncopated score by Luchi De Jesus, and the beautiful mountainside scenery all further enhance the overall sound quality of this superior made-for-TV winner.",1 +16510,"The fine cast cannot uplift this routine tale of a secretary murdered by her married paramour. In fact there are more questions than answers in this one-sided tale of romance and murder; and since we are only provided with the prosecution's side, none of these questions will be answered. This is the type of fare that appeals to the ""He Woman, Man Hater"" clubs of America. As presented, it is the tale of an innocent woman who just happens to be ""caught up"" in a romance with a married, high-profile attorney. Is it possible that IF, she had not been two timing her boy friend and having an affair with a married man, the whole nasty murderous, sordid incident could have been avoided? When you watch this, don't worry about going to the 'fridge, you won't miss anything.",0 +16543,"A Cinderella story made for adults who live in dreamland. The romance is very unrealistic, fluttery, lovey dovey, perfect etc. The Cinderella plot till the very end and Shahid Kapoor is the only reason for my stars. If you're looking for a dreamy romance with a twist, this is definitely you're movie, but for the rest of us real world people, I'd highly recommend saving your three hour watch time. Wake up people!<br /><br />Four out of the five people that saw the film with me would not recommend the film. We had a great time bashing majority of the unrealistic scenes. Maybe I'm missing something.. I just can't believe a movie like this can beat a classic like HDDCS!!",0 +21460,"The eight Jean Rollin film I have watched is also possibly the weirdest; the intriguing plot (such as it is) seems initially to be too flimsy to sustain even its trim 84 minutes but it somehow contrives to get inordinately muddled as it goes along! A would-be female vampire (scantily-clad, as promised by the title) is held in captivity inside a remote château and emerges only to 'feast' on the blood of willing victims (who are apparently members of a suicide club) As if unsure where all of this would lead him, the writer-director ultimately has the human villain actually the blank-faced hero's kinky father ludicrously revealed as a mutant(?!) from the future! The languorous pace and dream-like atmosphere (the cultists wear hoods and animal masks to hide their features from the sheltered girl) are, of course, typical of both the film-maker (ditto the seashore setting at the {anti}climax) and the ""Euro-Cult"" style, as are the bevy of nubile beauties on display. Personally, the most enjoyable thing about the whole visually attractive but intellectually vacuous affair was watching familiar character actor Bernard Musson (who appeared in six latter-day Luis Bunuel films) crop up bemusedly through it from time to time!",0 +8341,"They probably could have skipped some of the beginning - I'm not sure why this starts out in the Asian part of Turkey. If it was because starting in the Mediterranean, they could have gotten closer starting in modern day Lebanon.<br /><br />One the cameras and crews get to the Bakhtyari tribe, it's the beginning of an amazing 48 day journey. 50,000 people with about 250,000 goats, camels, cattle, and horses make this amazing trek across what seems to be a very fast moving Karun River. They use rafts that are kept afloat by inflating goat skins - you can see where the head and legs were removed. The other ""bank"" of the river was very steep - I'm guessing about a 60 degree rise.<br /><br />Just watching that was incredible, but there was much more to come. To get to the pastures, they also had to cross a major mountain that had about 4 feet of snow, if not more. Being able to climb this mountain was pretty amazing in and of itself, but they (and all of the animals) climbed this mountain barefoot! Yes, barefoot.<br /><br />The one drawback to this documentary were some of the inter-titles with poor attempts at humor.<br /><br />If you want to see a documentary from the silent era, or the incredible challenges that this tribe not only face, but conquer. This is just an incredible document of a little known group of people facing all kinds of challenges.",1 +8010,"It's great to see Jorja Fox in a role where she gets to smile a lot. Also loved hearing her sing. Nice change to see her out of her CSI/West Wing/ER roles. The movie itself was entertaining, but it seemed skip some explanation in a lot of parts. Several of the characters seemed to be miserable one minute and happy the next and it was left up to your imagination to figure out why. Each character was quirky though and in some cases, I couldn't wait to see what they would do next or hear what they would say next. This movie wasn't full of squeaky clean people, but rather complicated realistic people who could make mistakes, feel bad about them and then find a way to fix them.",1 +5929,"I must say, I thought I had seen it all. I am an extremely jaded movie buff. This movie didn't shock me, by any means. I'm way past that point. But it did take me to certain emotional places I didn't know I could go to. I had no idea I could ever find (ick) the idea of beastiality erotic. Never never never. Ever. Ever. But there you go. He did it. I have to give the director credit. He pulled it off.<br /><br />For the first 40 minutes this movie is a TOTAL bore. We start off with some very explicit footage of two horses having sex. After five minutes of this I started wondering if buying this movie wasn't a mistake. Then an old guy in a wheelchair talks to some other old guy about two people getting married. Then some nervous guy shaves. Then we see (briefly) a hot chick getting it on with a butler (but this is very brief). At this point I was cursing the movie out loud while trying to stay awake. In fact, I fell asleep at about the 40 minute mark and forced myself to finish it the next night.<br /><br />We finally get the good stuff when a girl (who knows who she is, or who anyone is in this movie) has a dream about a Victorian-era gal being ravaged by a beast-thing in the forest. The scene goes on for quite some time and is really the meat (heh-heh) of the whole deal. It's beautifully shot, superbly edited, and does deliver the goods. They do try to wrap up the plot at the end and it sort of makes sense but sort of doesn't either. Oh well. I would definitely recommend this film. The first 40 minutes made me want to shoot myself (and my TV) but the last 50 minutes totally redeems it.",1 +10063,"This is a film that everyone should watch. Quite apart from raising hugely important points (while South Africa is on the road to recovery there are still many countries in similar situations now), it is superbly directed while Denzel Washington gives, in my opinion, the best performance in his career so far. Kline also gives a good performance, although perhaps not as stunning as Washington's. John Thaw also puts in a good turn as the Chief of Police.<br /><br />There are so many possible areas where a film on apartheid could fall down, but all of these have been avoided. It would be easy to simply portray white people as the bad guys and black people as the good guys, but Attenborough has not done this. Sure, there were some white characters who seemed inherently evil, such as the Captain at the Soweto uprising, but to add extra dimensions to all the characters would make the film unbearably long. Some people complain about the length of the film as it is, but I think it needs the whole two and a half hours to tell the whole story, for it really is an incredible one.<br /><br />The best scene in the film is that of Steve Biko's funeral. When the whole crowd begins to sing the South African national anthem, it is probably one of, if not the most moving scenes I have seen.<br /><br />If you haven't seen this film already: watch it. It may not be comfortable viewing, but it's certainly worth it.",1 +2136,"One of Disney's best films that I can enjoy watching often. you may easily guess the outcome, but who cares? its just plain fun escape for 1 hour forty-two minutes. and after all wasn't movies meant to get away from reality for just a short time anyway? The cast sparkles with delight. -magictrain",1 +20853,"Sniffing girl's panties kills a guy...and a stupid freaky puppet says a lot of stupid freaky things......My eyes could not leave the screen, my finger could not leave the Fast Forward button....I had to rewatch this spectacle to see if I had really experienced what I thought...I did.....God help us all!",0 +17895,"This film is the worst film, but it ranks very high for me. It is how a slasher movie should be. It takes place at a university in which there only seems to be a handful of students. The teachers are dumber than a sack of hammers. It is filled with good Catholic priest, sexually repressed humor. Bad hair, bad clothes. The dialogue is so cliched it is hard to believe that I was able to predict lines in quotes. The slashings have some creativity and seem to revolve around stabbing people in the genitalia. A lack of continuity in the soundtrack and characters that deserve to die because they are so bad, I recommend this film for a fun time. Get a case of cheap beer and some friends, watch it and laugh.",0 +1834,"WHEN FRIENDSHIP KILLS, in my opinion, is a very touching and kind of heartbreaking drama about the consequences of being anorexic or bulimic. Anytime Lexi (Katie Wright) or Jennifer (Marley Shelton) threw up, I wanted to vomit myself. It's kind of hard to explain why. If you ask me, they should have been more cooperative about things. However, I did enjoy seeing them do things together as well as get lectured by their parents. Before I wrap this up, I'd like to say, ""If you ask me, WHEN FRIENDSHIP KILLS does indeed show you how being anorexic or bulimic can affect a person's body. "" Now, in conclusion, I recommend this movie to everyone who hasn't seen it. You're in for some tears and a good time, so the next time it's on TV, kick back with a friend and watch it.",1 +11063,"I watched it subtitled as it was in Russian, but really enjoyed it. The main character Sasha was born cursed, with a deadly weapon as an extension of his body. He lived his whole life unhappy because he was different and because anger caused him to do deadly things. <br /><br />When Sasha finally found love in a young woman named Katya everyone tried to take her away from him ending in a deadly battle. There was a fair amount of gore, but not too much for the weak stomached.<br /><br />Not for people who like the regular old Hollywood movie, but for those who enjoy independent films. Kinda got the feeling of an Asian fantasy film.",1 +7090,"Jammin' the Blues is an Oscar-nominated short from 1944 that is basically 10 minutes of improvisational jazz played in one long jam. Marie Bryant sings ""The Sunny Side of the Street"" at one point for the film's highlight then jitterbugs with Archie Savage to bring this most entertaining ""jam session"" to its exciting end. The director Gojn Mili was a photographer and that experience shows in some of the double exposure shots of some of the musicians that makes this one of the most innovative angles of the '40s. According to some notes I read one of the musicians was white and had to be filmed in silhouette in reflection of the social attitudes of the time. What a shame. Still, this most unusual film of the time is available on YouTube so if you love jazz, I suggest you seek it out there.",1 +16397,"You don't need to write a script for this trashed outrage! You just sit back and watch a pair of moonshine women and guests duke each other out before a riotous audience exposure at ""The Jerry Show""! Violent and obnoxious, this cash-in on the real Jerry Springer program reveals everything that the over-rated hyped talk show doesn't show to you on the air - - unless you have a collection of uncensored videos made by the producers of ""Cops"". Even the outside world of Springerland reveals the most amateurish acting of the decade! This goes to show you that THE GONG SHOW MOVIE had a central character in a motion picture turkey. Change the channel! REJECTED<br /><br />",0 +7706,"Unfortunately, in cases such as these, there are so many conflicting stories as everyone tries to cast blame on to others that it is a near impossibility to get a clear picture of what really happened. This movie is a victim of such circumstances. The writers (too many of them) have decided to take ALL of the stories and give them to the audience to let them decide which version of the truth they like the best. As in the real life case, there is no clear answer, no conclusion, and the audience is left with a general felling of being unfulfilled (like coffee without the caffeine, or sex without the climax). Whodunnits with no whodunnit are generally frustrating and makes you wonder why someone didn't do research before they put it out there. At least tout your movie as a fiction if that is what it amounts to (and this does).<br /><br />That is not to say there are not some great performances here. Kilmer (as Holmes) does an outstanding role bringing some humanity to what is otherwise an unsavory character. Kilmer, and the real life lovers and friends who consulted on the film, let the audience see a selfish, troubled human being who, though his faults were many and large, was loved and cared for by many people (except himself). Kudrow as Holmes's wife, only gives a glimmer of the dramatic actress she can be, but it is very noticeable and unforgettable glimmer. Bosworth's character was not as emotionally complex as she could have been and needed to show more inner conflict to give credence to what ultimately happened between Dawn and Holmes (she turned him in 6 months after they fled to Florida). Bosworth's apple-cheeked performance is at time annoying, at times touching, but shows none of the backbone the real Schiller must have possessed. The other characters fade in to the woodwork which is a pity. Lucas is a great performer who could have sunk his teeth in to this role had it been fleshed out for him. Even Dylan McDermott was surprisingly capable in his role of drug dealing biker. <br /><br />The fault of this movie does not lie with this cast, but with the writing. Too many cooks spoil the soup, and this kettle, filled with so much promise, ultimately leaves you hungry. The story and characters may have been less than sympathetic, but in what movie of this ilk are they not so? Other movies such as 1989's drugstore cowboy starring Matt Dillon (who was reportedly asked to take this role and refused) worked with similar subject matter and mastered it to such a degree that you felt a kinship with the main character by the end of the movie despite what he had done. Van Sandt could have given James Cox and his crew a few lessons. Had someone bothered to try and find the truth, this would have been an intriguing story. As it is, you will find the accompanying WADD documentary more palatable (in the 2 disc DVD)and much more informative. You will realize from the DVD that Holmes was not a bad guy, but not a very good one either..as are most people.",1 +99,I got in to this excellent program in about season 4 and since then i have seen all the episodes got all the episodes on DVD and keeps getting better and better with the seasons of 9 and 10. It now may not have Richard Dean Anderson now but the addition of Ben Browder and Claudie Black it has still given the show more strength and original still even after 10 seasons. Sadly now the sci-fi channel got rid of this amazing show with no hope relay for a 11 season there are making two direct to DVD movie and hopefully more. Atlantis is still going strong on its 4th seasons. And there is a third spin off in the works the stargate franchise is nowhere near dead. This TV show is a must see for all sci-fi fans and people of genres because this has such a wide range of things to appeal to all ages and all types of people Watch IT !!!!! 10/10,1 +23463,"Unbelievably awful film. I watched part of this on T.V. recently. My jaw dropped as I watched a horrendously conceived plot and listened to mind-numbing drivel. Not a single line from the master of one-liners could come close to producing anything resembling a chuckle. It was so bad it made me want to exhume Rodney Dangerfield's body, slap him around and scream, ""How could you?"" I know many films are done in haste, hoping to cash in on the popularity of a given actor or theme. But please, Hollywood, show a little respect for your audience. It's sad and scary that people were expected to pay to see such tripe. The bottom of the cesspool, even by Sunday afternoon television standards.",0 +13019,"I didn't know what to expect from the film. Well, now I know. This was a truly awful film. The screenplay, directing and acting were equally bad. The story was silly and stupid. The director could have made a smart and thought provoking film, but he didn't. I squirmed in my seat for the last half of the movie because it was so bad. Where was the focus to the film? Where was anything in this film? Christians should boycott this film instead of promoting it. It was shabbily done and a waste of my money. Do not see this film.",0 +13995,"Faith Domergue (better known as ""Dr. Ruth"" in THIS ISLAND EARTH) is the only reason to watch this film. The story is very thin, and once the Air Force buddies return to the States with a Cobra Curse upon them the action is just a waiting game. See Faith the Snake Woman and try to pretend the rest isn't happening.",0 +4157,"this is one of the funniest shows i have ever seen. it is really refreshing to watch and i was in stitches many times. i guess there is a social awareness factor to this too which makes it quite interesting. if these were white girls would they get the same reaction? maybe they would, maybe they wouldn't? the characters know no limits (check my lyrics) and do not exclude anyone from their twisted sense of fun!There are so many funny sketches. my favorites is the bob the builder one. it's so silly it's genius. if you like twisted black comedy then this is for you. if you like keeping up appearances it probably isn't.3 non blonde's is yet another hilarious British BBC comedy shown on TV! It is such a funny show and the characters unleashed on the unsuspecting public are laugh at loud funny! It would be impossible to keep a straight face watching the crazy characters and the reactions of the public! This series easily adds to the excellent comedies being produced!",1 +7719,"One of the most disturbing and tragic periods in American history began. The members of the Summer of Love culture, at the end of the seventies and onset of the 80's, were eventually tool old for love beads and all night parties and evolved back into mainstream life, whatever that meant. For those who could not out grow their youthful and sometimes irrational exuberance, their's was the culture of Wonderland. A love for drugs and a sense of entitlement coupled with a distaste for authority, values and ""the establishment"" is the world that the film captures. <br /><br />The sixties were a time of revolution and violent change that tore the American ""house"" apart. Once the battles were over, we all had to deal with the aftermath of the carnage. The characters in the Wonderland house are icons of the misfits of the Seventies; part biker, part hippie, part crook, all outcast. No ideology to express, just a sense of dissatisfaction with everything and allegiance to nothing. Ron, Billy and David fancy themselves as some sort of Robin Hoods with dope. They talk of love and behave violently; they take from the rich and sell to the misbegotten; they steal from everyone.<br /><br />Holmes and company are the end result of a strange collision of anti-matter like sex, and drugs and rock & roll, when the lab technicians get bored and move on. <br /><br />The film is skillfully directed and paced and captures the frenetic world of the drug fiends in their element. The fact that Holmes is a porn star is almost irrelevant. That story was told in ""Boogie Nights"". This is a story of a transitional and forgettable era.",1 +20579,"I cannot believe that they managed to spend US$17million on this film. Spectacularly bad acting, egregious scripting and effects that you could do on your average PC, unbelievable plot contrivances...a reporter who can get an inexperienced stewardess a major job at the UN? What? Not only that, but the message of this film is so unsubtle that you come out feeling as if they've tried to batter you over the head with a full size crucifix. All this movie will do will preach to the choir and make everyone else laugh at such a ridiculous waste of money. If the makers of this film really wanted to sway people to christianity and show what it means to truly believe, they would have used the money to help people truly in need. Now, /that/ might have swayed some people into actually listening to them.",0 +5627,"Corean cinema can be quite surprising for an occidental audience, because of the multiplicity of the tones and genres you can find in the same movie. In a Coreen drama such as this ""Secret Sunshine"", you'll also find some comical parts, thriller scenes and romantic times. ""There's not only tragedy in life, there's also tragic-comedy"" says at one point of the movie the character interpreted by Song Kang-ho, summing up the mixture of the picture. But don't get me wrong, this heterogeneity of the genres the movie deals with, adds veracity to the experience this rich movie offers to its spectators. That doesn't mean that it lacks unity : on the contrary, it's rare to see such a dense and profound portrait of a woman in pain.<br /><br />Shin-ae, who's in quest for a quiet life with her son in the native town of her late husband, really gives, by all the different faces of suffering she's going through, unity to this movie. It's realistic part is erased by the psychological descriptions of all the phases the poor mother is going through. Denial, lost, anger, faith, pert of reality : the movie fallows all the steps the character crosses, and looks like a psychological catalog of all the suffering phases a woman can experience.<br /><br />The only thing is to accept what may look like a conceptual experience (the woman wears the mask of tragedy, the man represents the comical interludes) and to let the artifices of the movie touch you. I must say that some parts of the movie really did move me (especialy in the beginning), particularly those concerning the unability of Chang Joan to truly help the one he loves, but also that the accumulation of suffering emotionally tired me towards the end. Nevertheless, some cinematographic ideas are really breathtaking and surprising (the scene where a body is discovered in a large shot is for instance amazing). This kind of scenes makes ""Secret Sunshine"" the melo equivalent of ""The Host"" for horror movies or ""Memories of murder"" for thrillers. These movies are indeed surprising, most original, aesthetically incredible, and manage to give another dimension to the genres they deal with. The only thing that ""Secret Sunshine"" forgets, as ""The host"" forgot to be scary, is to make its audience cry : bad point for a melodrama, but good point for a good film.",1 +8158,"I just saw this movie at a sneak preview and all I can say is...""What did I just watch????"" And I mean that in a good and bad way.<br /><br />The plot is really simple. Stiller and Black play friends/neighbors. Stiller is the focused, hardworker while Black is a dreamer. Black invents this idea to create a spray that erases poo. The idea becomes very popular, and Black becomes very rich. The extravagant lifestyle that Black gains and the fact that he still tries to be best friends with Stiller causes Stiller to become crazy with envy.<br /><br />As I said, the plot is simple. Everything else is plain odd. The direction is odd, with a weird rotating opening shot to out-of-nowhere sped up sequences. The dialouge and the acting is very odd; odd in a rambling sort of way. And the sound track is the oddest thing in the movie, from the weird ""Envy"" song that keeps on reappearing to the scene where you think you're going to hear a classic 80's song but suddenly it's in Japanese.<br /><br />So, the true question is this...is odd funny? That depends purely on the individual. I was cracking up at the shear unwavering weirdness of the movie. After the screening I heard people call it horribly unfunny and glad that it was free. Strangely, I understood their point. There are no jokes whatsoever, so if you aren't hooked by the uniqueness of it all, you will hate this movie. Absolutely hate it.<br /><br />This movie is destined to lose a lot of money at the box office and become a DVD cult classic. If you can laugh at a movie with no real jokes, like Cable Guy or Punch Drunk Love, then I suggest you see it. If you don't, run away from this movie. It'll only make you mad.",1 +4596,"Any child old enough to sit up in front of a screen will be absolutely captivated by the beautifully drawn images and wonderful music in this heartfelt and humorous re-write of the Grimms' fairytale. They'll be singing 'Bibbity-Bobbity-Boo' before they can even formulate a complete sentence and will continue singing it till their dying days. It is a classic for all children, especially those adults who are young at heart.",1 +8818,"In the history of movies based on comic books, ""Mystery Men"" is one of the most underrated ones. This is no regular comic superhero movie! It follows the exploits of a motley crew of well-meaning wannabes, which include Mr. Furious (played by Ben Stiller), the Bowler (Janeane Garofalo), the Shoveller (William H. Macy), the Blue Rajah (Hank Azariah) and the Spleen (Paul Reubens). ""Mystery Men"" spoofs several aspects of superhero movies like ""Superman"" or ""Batman,"" such as the pithy sayings, and the questions about secret identities. Most of the superheroes aren't billionaires like Bruce Wayne, but blue-collar types with menial jobs and neurotic home lives. So it looks as if director Kinka Usher is making the heroes into something the average viewer can relate to. I found ""Mystery Men"" to be visually stimulating and very funny. Even if it doesn't turn into a franchise, it's still a joy to watch!",1 +23360,"Oh, man! This thing scared the heck out of me when I first watched it... and I was SIXTEEN!!!<br /><br />That creepy animated Barbie is scary as hell! I want to stop talking about her now.",0 +8757,"Of course, he did have to INVENT EVERYTHING about cinematography, film directing, etc. before he could make classics like ""The Gardner,"" so I suppose he may be forgiven this initial excursion into mere sociological documentary. Today we call them ""home movies,"" and they are just as boring now as this one is",1 +24532,"Former brat pack actor and all round pretty boy Rob Lowe stars in a film set in a high security American prison . I had a gut feeling his character was going to be popular for all the wrong reasons like Tobias in the first series of OZ , but PROXIMITY isn`t that kind of film , it`s more like a "" Man on the run "" film like THE FUGITIVE . It also makes a nod to the themes of punishment and justice with James Coburn putting in a cameo as the spokesman for a justice for victims pressure group but any intelligent discussion on how society should treat criminals is completely ignored as the film degenerates into tired old cliches of shoot outs and car chases",0 +22280,"A phenomenal achievement in awfulness. It's actually hilariously awful.<br /><br />First off...Nicholas Cage must now have made it to the finals in the Over-Emoting Category in his acting class. Wearing new hair plugs and with a face that has been lifted so many times his pinned back ears seem to be straining to touch in the back he oozes not only a sick smarmiess but creates a ""hero"" character that you have no vested interest in.<br /><br />I don't know what it is with Neil Labute and female characters. He makes females out to be totally deviant and evil...and pays them back by having Cage punch several of them directly in the face and call them all ""b****es"" a few times too. I've enjoyed LaBute's early films and a few of his plays...but it's a strange fascination he has.<br /><br />I'd give this film a 2 out of 10 solely based on Ellen Burstyn's performance. By the time she finally makes her appearance (bravely soldiering through her scenes with her wig line clearly visible on her forehead) it seems like all hope may be lost. She deserves an Oscar right here and now for saying her lines with a straight face and when she appears wearing a white mumu and blue, white, and gold face paint booming about The Wicker Man you know that working with Scorcese and Friedkin really prepped her for this role dang well.<br /><br />This movie is so wrong-headed and cuckoo that is has to be seen to be believed.<br /><br />Highlights include: Nicholas Cage running away from a swarm of bees and then falling down a hill.<br /><br />Nicholas Cage stealing a bicycle and looking like Ms. Gulch from The Wizard of Oz riding around on it.<br /><br />Nicholas Cage running around the island kicking down doors looking for the missing girl.<br /><br />Leelee Sobieski PLUMMETING from a once-promising acting career in a ""brawl"" with Cage.<br /><br />Ellen Burstyn dancing around in a said while mumu.<br /><br />Nicholas Cage screaming ""Who burned it? Who burned it? Who burned it?Who burned it?Who burned it?Who burned it?"" for no reason.<br /><br />Nicholas Cage in a bear costume (I'm not kidding) running through the woods, taking off the costume (but leaving the bear feet on) and then doing some karate moves to some villains.<br /><br />And you haven't lived until you have seen the final 15 minutes of the movie and its dreadful epilogue that looked like it was shot yesterday in your cousin's basement.<br /><br />Needless to say, if you can make it through this film without laughing out loud then you deserve a medal. There was actually a point in the movie where I stopped snickering to wonder if maybe this wasn't an elaborate send-up of ""hysteria"" films...only to be reminded when Cage would scream/shout/whisper his dialogue that he really was taking himself quite seriously.<br /><br />I think this one is destined to be a cult film all over again...just because it's so dreadful.",0 +24440,"When I look for new cars, I expect not to be shown boats. When I drink fountain Coke, I should expect that the drink contains Coke. When I watch a movie that embellishes itself with the name of en excellent scientist, I expect that it is in some way relevant to that person or their work. This could have been people discussing my grannys' diary. The material covered is relevant only in that they vaguely tirade science. I fell asleep the first time I tried to watch it, & the second time I stopped watching it.<br /><br />I love science & documentaries. I would rather watch them over the latest blockbuster. However this falls far short of providing anything worth your time Avoid at all costs.",0 +8993,"""Dressed to Kill"" is surely one of the best horror/thriller movies ever made.It's taut,stylish and extremely suspenseful mixture of sex and violence.The acting is pretty good,the orchestral score by Pino Donaggio is unforgettable and there's plenty of surprises to keep thriller fans intrigued.""Dressed to Kill"" is a murder mystery that involves a sexually frustrated housewife(Angie Dickinson),her teenage son(Keith Gordon),her psychoanalyst(Michael Caine),and a high price call girl(Nancy Allen).The murderer in the film is a transsexual named Bobbi who is also one of Caine's patients.The film is full of breathtaking moments:the infamous elevator murder scene is extremely stylish and pretty gory as well.Highly recommended.",1 +10321,As Most Off You Might off Seen Star Wars: Return Off The Jedi You May Knows Its A Good Movie But As You Might Have Seen On Video They M|might have a party At The end And They Just Probably End The Movie with the party with no a spirits or anything But on the original one (Live TV) When they are Partying But before i say more when Ben obi-wan dies in the Imperial Ship Or Death Star They Saw him Disappear And Yoda Dies From Either Old Age Or Internal Illness But because Luke killed Darth Vader (Real Name: Anakin Skywalker) When They All Are Partying At The end when Luke Or Someone Stops the Spirits Off Ben And Yoda Stands Starring At Him And Smiling While Another Spirit Appears Is its Darth Vader but not as A Sith As The Old Usual Selve off Him And Started Smiling with Ben And Yoda I reckon That made the movie ending a little bit interesting But the Producers or anyone should off made a spirit off Padme And Mace Windu And Other Jedis that got killed with Younglings Under There Arms in the back ground,1 +15797,"I've read a few books about Bonnie and Clyde, and this is definitely MORE accurate than the Beatty/Dunaway version, in that its costumes and locales echo actual photographs taken of the gang. Particularly well done is the death of Buck Barrow, and the capture of his wife Blanche. This actress looks looks exactly like the photographs taken that day of Blanche grieving over her dying husband. However, this movie is still Hollywood, and our anti-heroes stay pretty to the end, even after being shot full of holes (in life, Bonnie was badly burned in an auto accident the year before their famous ambush, and did not look like a perky cheerleader at the time of her death). The script is tedious, and the acting is poor, particularly the leads. Very disappointing. Stick with Beatty and Dunaway. Their's may not be ""the true story,"" but it's a great film.",0 +3265,"This is one of Joan Crawford's best Talkies. It was the first Gable-Crawford pairing, and made it evident to MGM and to audiences that they were a sizzling team, leading the studio to make seven more films with them as co-stars.<br /><br />The film convincingly depicts the downward slide of a brother and sister who, after their father loses everything in the stock market crash, must fend for themselves and work for a living. Life is hard in the Depression, and soon even their attempts at finding legitimate work prove futile, and they resort to underworld activity. <br /><br />Joan Crawford is excellent as the socialite-turned-moll. She's smart, complex, and believable. She even tempers the theatrical stiffness of the other actors' early Talkie acting style. Clark Gable is a diamond-in-the rough, masculine and gruff as the no-nonsense gangster who becomes involved with Crawford's character. The same year he would play a similar and even more successful role opposite Norma Shearer in ""A Free Soul"", securing his position as top male sex symbol at MGM.<br /><br />If you like Crawford in this type of role, don't miss ""Paid"", which she did a year earlier, which is also among her best early Talkie performances.<br /><br />",1 +18242,"This movie is not as good as all think. the actors are lowlevel and the story is very comic-like. I respect fantasy but Lord of the Rings is fantasy...Conan..is fantasy...THIS IS JUST NORMAL HK-LOWPRICE-ENTERTAINMENT...Why did they include this Splatter-tongue, it makes everything worse. The only good thing is the cinematography and the cutter's Job.",0 +6561,"A clever, undeniably entertaining romp starring Peter Ustinov as a career embezzler with his sights set on a US conglomerate in London. He's abetted by foxy (and deceptively sharp) Maggie Smith and threatened with exposure by jealous company man Bob Newhart. This is a heist film with a lot of brains. Ustinov is exceptional as is Smith and Newhart is quite funny. The real surprise is Karl Malden, as the pill popping ""executive vice-president."" Malden has seldom been so loose. Cesar Romero and Robert Morley pop up in some funny cameos. The excellent music score is by Laurie Johnson. Eric Till's direction is brisk and the script by Ustinov and Ira Wallach is first-rate & very smart. A swinging good time!",1 +16276,"Well, the big money machine has done it again! Disney very shrewdly takes advantage of morons like myself who feel we must own every video (good or bad) stamped with the Disney moniker. Why is it that I continue to look forward to these ""sequels"" which make Don Bluth on a bad day look like Leonardo DaVinci? Cinderella 2 consists of three storylines (already a poor choice!) Doesn't one of the most endearing Disney creations at least deserve a linear story? Of these three, only the last comes anywhere near the quality of animation and storytelling that I would expect. The music is atrocious and modern (meaning in 2 years it will already be dated) and adds nothing to the story. Why does everything have to be updated? You know, the original cartoon is still popular because of its timelessness, so why not be respectful and true to the original with songs that reflect the same style? Gee, I can't wait for a sequel to Sleeping Beauty. Instead of music based on the themes of Tchaikovsky, we'll get music inspired by Britney Spears!!! So Disney, if you're listening, remember we're not all indiscriminate children out here. How about throwing a bone or two to the fans who've been around long enough to know the difference between craft and crap?",0 +15832,"*Possible Spoiler*<br /><br />'Return to Cabin by the Lake' is a useless movie. The acting was not good and the plot wasn't even remotely interesting.<br /><br />'Cabin by the Lake' is a good TV movie. The sequel was not. Judd Nelson was very good in the first film and put a whole lot more into his character than in this. It seemed as if HE wasn't even interested in doing the sequel. His acting was good but it could have been better. I really don't want to comment on the rest of the cast because in my opinion, they're not even worth mentioning. But I'll do it. The character of Alison isn't even hardly shown in the first part of the film. All of a sudden she's the center of attention next to Stanley Caldwell. The role didn't make sense and it should have been thought out a little better. Dahlia Salem was absolutely terrible. Her acting was way below decent and the casting people should have looked for somebody else, anybody else. The director, Mike, was a confusing character. He seemed to have a purpose for being there but it didn't seem like his death was necessary. The acting for this role was good, nothing great but better than Salem's.<br /><br />The plot was real lousy if you think about it. Stanley, who is presumed dead, makes his way onto the set of 'Cabin by the Lake', the movie based on his script. He stumbles upon the director and in a short time, the director is dead and Stanley is running the show. Yeah, out of nowhere the crew is just going to let this stranger come into the picture and finish the film not knowing anything about him. There's some killings, not a whole lot, and the one's that are shown are ridiculous. One of the actresses on the set gets electrocuted while filming a scene. Another character gets chewed up by a motorboat. And one gets tangled up in a plant before drowning. These writers must have been hard up for excitement.<br /><br />I just have to say that I was not impressed with the filming of the movie. The way that it kept changing from looking low budget back to normal started to become irritating very fast. Also, the new cabin by the lake was poorly created. We aren't shown it but only in a few scenes, and the whole thing with the chain in the basement was useless. It worked in the first film only because we were shown the room a lot more, but it didn't work in this one.<br /><br />There were too many characters in this sequel. All of them except for a few had no reason to be there. The acting of what little is showed was really bad and...they just didn't have a purpose in this movie.<br /><br />All in all, 'Return to Cabin by the Lake' is a sequel picking up from where the first left off. 'Cabin by the Lake' I can take but this was just not impressive. Judd Nelson should have avoided this one and so should you. It's nothing like the first and it went entirely too slow. Nothing happened in the first hour and it continued to drag on for the second. Not to mention that the writing was horrible. Put this on only if you need some help getting to sleep.<br /><br />So, we see that Stanley defies death and is still alive and well. By the way he talks, it sounds like there could be a possible third installment to a movie good just by itself. Quit throwing in sequels and we may be alright!<br /><br />(Did the film makers not realize that they showed us how they filmed the lake scenes from the first one? They were all done in a tank. Never, never reveal the secrets of filming.)<br /><br />",0 +9489,"When you typically watch a short film your always afraid that the person creating the film tries to throw too much into it. That's not the case with this one. A great story about a young girl who's had enough and other worldly forces trying to help make things right.<br /><br />Eric Etebari does a wonderful job of representing the spirit of twisted justice and helps to convey the complexities of the blurred line of right and wrong.<br /><br />Both the young girl and the father give great performances in this wonderful short film, but Eric's performance is definitely the show stealer in this story.<br /><br />I definitely recommend this film for it's complexity, performance, and great over all story.",1 +20889,"this seemed an odd combination of Withnail and I with A Room with a View.. sometimes it worked, other times it did not. tragedy that they changed the name for the US release though.. Keep the Apidistra Flying is much better than the nothing title A Merry War. acting was okay, script was okay.. overall it was a mediocre film..",0 +6692,"This, I think, is one of the best pictures ever made. It's so pure and beautiful. It really touched me. I'm glad David Lynch proved that a film doesn't necessarily need SFX, a twisting, complicated plot or flashy images. Way to go,Dave. I'd like to see Cronenberg do that!",1 +19052,"This is a bad B movie masquerading as a mockumentary. The porn documentary filmmaker in the movie has almost as much screen time and dialog as any other character. That completely destroyed any ""documentary feel"" that they may have wanted to create.<br /><br />The fact that the film is not actually a mockumentary is the least of it's problems. The film is not funny. The film is not sexy. The film doesn't have anything insightful to say about the porn business. It's not even particularly salacious. While there's simulated sex, the amount of nudity is mild for an R rated film.<br /><br />Someday, someone will make a good mockumentary about the porn industry. This is not it.",0 +21957,"There are some really terrific ideas in this violent movie that, if executed clearly, could have elevated it from Spaghetti-western blandness into something special. Unfortunately, A TOWN CALLED HELL is one of the worst edited movies imaginable! Scenes start and end abruptly, characters leave for long stretches, the performances (and accents) of the actors are pretty inconsistent, etc.<br /><br />Robert Shaw is a Mexican(!) revolutionary who, after taking part in wiping out a village, stays on to become a priest(!)...ten years later the village is being run by ""mayor"" Telly Salavas. Stella Stevens arrives looking for revenge on the man who killed her husband. Colonel Martin Landau arrives looking for Shaw. They all yell at each other A LOT and they all shoot each other A LOT. Fernando Rey is in it too (as a blind man). The performances aren't bad, but they are mightily uneven. Savalas has an accent sometimes as does Landau (who is really grating here). Shaw and Rey prove that they are incapable of really embarrassing themselves and Stevens looks pretty foxy (if a bit out of place amongst the sweaty filth).",0 +6390,"This group of English pros are a pleasure to watch. The supporting cast could form a series of their own. It's a seen before love tiangle between the head of surgery, his wife, and a new pretty boy surgery resident. Only the superior acting skills of Francesca Annis, Michael Kitchen, and the sexy Robson Greene lift this from the trash category to a very enjoyable ""romp"". The only quibble is that it's hard to accept that the smoldering Francesca Annis would fall in love and actually marry Michael Kitchen, who like me, is hardly an international, or even a British sex symbol. You can readily understand why Robson Green would light her fire, with apologies to the ""Doors"". The guy who almost steals the show with a great ""laid back"" performance is Owen's father David Bradley. Watch him in ""The Way We Live Now"", in a completely different performance, to get an idea of his range. Daniela Nardini as Kitchen's secretary, sometime sex toy, is hard to forget as the spurned mistress who makes Kitchen sorry he ever looked at her great body. Conor Mullen, and Julian Rhind-Tutt, as Green's sidekick surgery buddies as I've said could have their own series. They are that good. The whole thing is a great deal of fun, and I heartily recommend it, and thank you imdbman for letting the paying customers have their say in this fascinating venue.",1 +20833,"I really did like this show, once upon a time. That is, until I realized all the faults in it. It's so unrealistic. I know it's fiction, but it isn't even the slightest bit believable. Here's why. **Spoilers ahead folks...** Are we really supposed to believe that a kid like Yugi would be descended from a Pharaoh of ancient Egypt? C'mon! He's the biggest nerd on the face of the Earth. And what's up with the Pharaoh (a.k.a. Atem and/or Yami's) hair? Last I checked, Pharaohs were shaved (except for a small bit of hair atop the head) and wore fancy hats.<br /><br />And, are we supposed to be convinced that an evil wealthy boy genius, named Seto Kaiba, can legally run a successful business while still having time to go to a shoddy little school like 'Domino High'? Puh-leeze! First off, he'd have to legally be an adult to run a company. And that would make him not really all too much of a boy genius, since he'd be the only adult in his class. And second off, why would he attend a school like 'Domino High', when his business is clearly successful enough for him to attend a fancy snobbish academy? Plus, the side plots with his little brother are so sappy and lame. Every time you turn around, that kid's been kidnapped by goons for the baddie. *yawn* Nothing new, nothing new.<br /><br />Joey is the poor kid, who lives with a good-for-nothing father. It says that Joey earns all the money to attend his school, because his father's an alcoholic, but you never once see Joey do anything that resembles work. He doesn't even mention work. And his sister Serenity is a complete moron. Why would she choose a snob like Duke (who dressed her brother in a dog costume and publicly humiliated him on television) over a nice guy like Tristan? Is she really that clueless? Various characters throughout the show, get possessed by demonic forces, get their souls stolen by demonic forces, and fall prey to mental illness. (Oh, that's child-safe, NOT.) Tea is the typical girl-next-door type, whose only purpose is to be Yugi/Yami's girlfriend. And while she has some cool points to her, she just doesn't have enough time to shine as a main character.<br /><br />The animation is simply awful. All the characters look sickly and anorexic. The perspectives are terrible (especially when they do close-ups of somebody's hand) and the colors look good, but not stellar.<br /><br />But the worst plot hole to the series was the fact that Yami says that his Millennium Puzzle can send souls back to their bodies. If this was so, how come he didn't save Yugi's Grandpa in the first place, when Pegasus stole his soul, and save himself the trouble of getting it back?<br /><br />All it really is, is a commercial for itself. The only plus side to it is ""Yu-Gi-Oh: The Abridged Series"" by LittleKuriboh.<br /><br />Please. Do something more worthwhile. Like, watch the Abridged version.<br /><br />1/10",0 +346,"Jim Carrey is back to much the same role that he played in The Mask, a timid guy who is trying to get ahead in the world but who seems to be plagued with bad luck. Even when he tries to help a homeless guy from being harassed by a bunch of hoodlums (and of course they have to be Mexican, obviously), his good will towards his fellow man backfires. In that case, it wasn't too hard to predict that he was about to have a handful of angry hoodlums, but I like that the movie suggests that things like that shouldn't be ignored. I'm reminded of the episode of Michael Moore's brilliant The Awful Truth, when they had a man lay down on the sidewalk and pretend to be dead and see who would actually stop and make sure he was okay. The results were not very promising, so it's nice to see someone in the movies setting a good example.<br /><br />Jim Carrey plays the part of Bruce Nolan, the nice guy mentioned above whose entire life seems to be falling apart. Or even better, it seems to be breaking up by the blows of bad luck like an asteroid entering the atmosphere (a little metaphor that comes up when Bruce miraculously finds himself a gigantic news story later in the film). Bruce is nearly 40 years old and all he has to show for it is a position as a news reporter of the sort that reports on such exciting news as the local bakery that's seeking to bake the world's biggest cookie. He's desperate to obtain the job of head anchor at the TV station, but he loses his cool on live TV when he hears that the job went to his rival colleague. You have to love how they time the revelation of this news to him seconds before his first live report. Needless to say, he loses his temper on live TV in one of the funniest scenes of the entire film.<br /><br />Morgan Freeman delivers a fantastic performance as the Man himself, displaying a God whose infinite wisdom is somewhat reflected through Freeman's massive talent as an actor. He is the kind of God who takes his job very seriously, but in such a way as to advise his followers (as well as the viewers of this movie) that there are times when you need to slow down and do some manual labor in life. I love his line that some of the happiest people in the world come home smelling to high heaven at the end of the day. There are a lot of people in the world (maybe more than our share in America) who are so absorbed by their money and their possessions and their jobs and everything that they completely lost touch with the natural side of themselves as humans.<br /><br />One of the biggest strengths is that the movie is able to provide great advice to people in general about improving their lives, and this message is clear and acceptable regardless of the viewer's religion. I, for example, tend to reject organized religion in all forms and I see God and Satan to be metaphors for different aspects of nature and human psychology rather than actual figures who ever lived or continue to live. But despite the fact that I don't believe that God exists as an entity overseeing the universe or as a janitor dressed all in white who mops the floors of his downtown office in his spare time, I was able to appreciate the messages that were delivered in this movie.<br /><br />Jim Carrey's movies display this fantastic evolution that ties them all together and makes the newer ones look even better just because you can see how far he's come. If you compare Bruce Almighty with movies like Ace Ventura (both of which I loved, by the way) or a lot of what he did before he got into film, it's amazing how far he's come. He has moved from cheesy TV comedy to cheesy comedic films to comedies that are truly intelligent and meaningful like this film as well as others like The Truman Show, Man on the Moon, and The Majestic (easily one of his greatest films ever). Jim Carrey has unmistakably moved from the cheesy comedy of his past to become one of the most important comic actors working today.<br /><br />Jennifer Aniston also once again provides an excellent addition to the movie (as she did in the side-splitting Office Space) as Bruce's girlfriend, who becomes increasingly exasperated by Bruce's growing stress about his life as well as his negligence to ask her to marry him. There is definitely some low-brow comedy in the film that doesn't really fit with the importance of the film's meaning or the quality of the delivery, such as the dog reading the newspaper on the toilet and the whole monkey scene, but it was definitely pretty nice to see Ace Ventura's friend Spike make a cameo appearance. As Stephen King very well knows, it's always nice to see familiar characters. It's almost like seeing family again.<br /><br />Bruce is endowed with the powers of God for a given period of time so that he can understand life a bit better, and he says a lot about himself when he uses the powers only for his own purposes rather than to help all of the people who pray to him. The thing I love about this is that, like I said before, religion is absent from my life, but I was able to watch this and learn a lot about myself as well by thinking about what kinds of things I would have done had I been endowed with such powers. The movie allows us to learn vicariously this way, which empowers the message even more.<br /><br />The scenes that involve the news station are easily the funniest in the entire film, such as the scene when Bruce loses his temper about the anchor position, the Jimmy Hoffa scene (who was conveniently buried with an original birth certificate and a complete set of dental records), the scene where Bruce's rival colleague is made to go nuts on camera, and my favorites, the ones at the beginning and the end involving the local bakery's cooking. The movie has plenty of time for Carrey to deliver some excellent jokes, such as when he says to God (who reveals that he's the janitor, the proprietor, the electrician, etc) that his Christmas parties must be real bashes, and to be careful about drinking, because on of him might need a ride home! I also loved the end when he says that behind every great man is a woman rolling her eyes. A little too true, and as Gallagher would add, behind every great man is also an amazed mother-in-law.<br /><br />Bruce Almighty is one of the more memorable comedies to have come out for quite a while, and is probably the only directly religious that I can remember seeing that I am anxious to buy on DVD to add to my personal collection. It is a comedy written and performed in good taste, but with enough relatively low-brow humor to keep the kids entertained. This is a meaningful comedy for the whole family, which is becoming rarer and rarer these days. In a world that is about to be flogged with yet another American Pie film AND another Scary Movie (which are only scary because of their sheer barbarous idiocy), it's nice to see that there are still people making comedies worth watching. Don't miss this one.",1 +8203,"Easily the greatest low budget horror film of all time. I first saw this movie when I was around nine years of age, and I have to say that it scared the hell out of me. Now that I'm all growed up, however, I see this movie for what it really is... a work of genius. Everyone, or at least everyone with any taste, has dreamed of seeing a snowman going around killing people, even if they won't admit it. I have always found something genuinely frightening about snowmen, so naturally, for a horror junkie such as myself, thismovie was a dream come true. Some people say that this movie is silly, or otherwise void of any intelligence... it's a movie about a serial killer snowman, what the hell did you expect? Anyone who gave this film a low score is obviously too uptight to sit back and have a good laugh at stupid one-liners and cheap gore. I love this movie for what it is, a comedy, and until the movie industry wises up and makes a serious horror flick about a killer snowman (which seems impossible, unfortunately) I will forever hold this great piece of indie horror close to my heart.",1 +19102,"This is exactly the type of film that frustrates me the most. Great cast, great director, great story potential, then they ruin it all with a screenplay that goes nowhere...and says nothing while going there! There is no depth here whatsoever. No depth of characters, no depth of plot, no depth of surprise, suspense, or common sense. We know what's happening, we are told how they plan to fix the problem, they fix the problem, throw a surprise at us near the end that fails to generate any suspense, then they end the film abruptly. Wasted opportunity.<br /><br />On the plus side, Glenn Ford leads a cast of UK (and one French) actors who are all fantastic, doing an incredibly impressive job with the one-dimensional writing they were given. One of the absolute favorites is Herbert Walton as ""Old Charlie"", who provides some wonderful bits of humor and warmth to a dark and serious film. I also thought the film had a great look to it...all shadows and fog...very film noir in feel.<br /><br />Even though the actors do the best they can and the directing is enjoyable, it still just isn't enough for me to recommend spending the time to view the film. There are far better Glenn Ford movies out there: The Big Heat, Gilda, Affair in Trinidad, etc.",0 +9853,"Intriguing. Exciting. Dramatic. Explosive. Complex. Epic. Words that only touch the tip of the iceberg in terms of the grand story that is LOST being told.<br /><br />From the acting down to the rare visual effects, LOST is the essential show on television for fans of science-fiction, fantasy, action, adventure, and lots and lots of mystery.<br /><br />Each cast member is so well chosen, and so good in their roles, that you either love them, or hate them, or downright wish them dead.<br /><br />The visual effects, when used (which is rare) are actually quite well done considering the usual production of shows. Be it the ""smoke monster"", to the polar bears, LOST is believable in terms of eye-candy.<br /><br />As far as story goes, nothing can compare to the vast complexity this show has made viewers like me endure. Beginning to End, continuity is virtually perfect, characters are developed, and the ever-evolving story slowly gives the answers to its questions so many crave.<br /><br />Overall, there is practically no flaw in LOST. It does for dramatic/sci-fi television what Arrested Development did for comedy: it has set the bar.<br /><br />I highly recommend LOST to those that are patient, intellectual, and love every moment of the ride, no matter how long it takes to reach the end.<br /><br />See this show.",1 +11973,"This is the best mob film ever made. It deserved more then what it got at the Oscars. Nominated for things like its score, art direction, supporting role (Newman), this film could have easily been nominated for Best Picture, Director (Mendes), Actor (Hanks), Supporting Actor (Newman and Law) and won!! Hanks gives one of his best performances, and the kid who played Michel Jr. was so good that I'm surprised i don't see him in more movies today. Critics themselves didn't give this film enough credit. But besides the incredible performances, another real star of this film is the incredible music. This was by far the best score of the year. It was nominated but didn't win. This is a great film that should be seen by everyone. My Grade-A+",1 +250,"I got a good laugh reading all the idiotic comments for this film,<br /><br />as it's obvious that those people who criticized the movie never seen it, or were stupid enough to pay to see it.<br /><br />The best reason to watch was on the Elvira show a few years back. Elvira delivered the movie with as many laughs as one can.<br /><br />It's an ok monster flick, compared to the hundreds of horrendous American flicks made. Way better!!!!",1 +718,"I can't understand what it is that fans of the genre didn't like about this film. It was truly a lot of fun. The special effects were wonderful. I generally agree with reviews and with IMDB voters, but not this time. I waited until it came to home video which I felt was another reason that I wouldn't enjoy the film. I believe special effects films need to be seen on the big screen, but again this was not the case. To me the film begs comparison to two films that were released around the same time. Blair Witch and The Mummy. Both films that I thought were terrible. Blair was probably the most overrated horror film of all time. The Mummy made gobs of money and it was pure dreck. People liked it for it's special effects. Films like the Mummy and The Haunting are not rich in character development, they are more like funhouse rides. Well with that analogy the Mummy was a B ticket to the Haunting's E-ticket.",1 +24465,"*** May contain spoilers. *** <br /><br />If LIVING ON TOKYO TIME were some bold experiment where real-life wanna-be actors were given film parts on the condition that they would be required to take a combination of powerful prescription anti-anxiety, anti-depression, and anti-psychotic medications (this is the classic psych ward combo that renders patients into drooling zombies) all during filming, then this movie would hold far more interest. Or, if the film production was another type of experiment where all of the actors were sleep deprived before and during filming, then TOKYO TIME could be more easily explained.<br /><br />As it is, this film is filled with lifeless, low-energy actors. In the scene where the new husband was sitting on the stairs talking with his sister, it appeared that he was having trouble keeping his eyes open. In almost every scene he speaks his lines sitting down with every part of his body motionless. From beginning to end, his facial expression is best described as ""near sleep.""<br /><br />Fret not about the actors speaking over each other's lines because these actors can barely finish droning out any lines of dialog. Everyone speaks with a depressing, monotone voice. No laughing. No yelling. No vigor. No one has energy enough to crack a smile. The result: complete and total boredom.<br /><br />And it does not help matters that the direction is simple and amateurish.<br /><br />Avoid this lifeless film at all costs. Better to watch GREENCARD which has a similar plot and has charm and energy. Or, for an unconventional Japanese romance story, check out THE LONG VACATION which has an ample amount of everything LIVING ON TOKYO TIME does not.",0 +4097,"This was a gem. Amazing acting from the leads Liam Cunningham, Orla Brady and all the supporting cast. The movie raises a subject not only pertinent to Ireland and Irish history but to many communities around the world and many marriage units within those communities. With intensity and sincerity the movie shows how the religious convictions and traditions drove a wedge on a loving and passionate family. The title ""Love divided"" couldn't capture it any better. Even though it was a true story and happening in Ireland of the 50th seeing how the life of the whole village erodes and ""pogroms"" are starting reminded me of Russian history. The intolerance and prejudice are still too powerful in the world and unfortunately it's deeply hidden inside the human nature. Just like in the movie the Liam Cunningham's character says ""the hatred had always been there under the surface"". It was interesting to watch the moral choices people were making in this story. Also the character of a catholic priest and what happened to him in the end of the story was quite meaningful. The story however gives hope that love of two people can conquer everything and love makes us better, stronger. Liam Cunningham's character goes through the whole transformation in the course of the story becoming a man he always wanted to be. Again acting is a top notch. Story is fast-paced. Irish countryside is as beautiful as ever. Highly recommended.",1 +22646,"The deceptive cover, title and very small hidden print of Power of Prayer tricked me into renting this movie.<br /><br />It started out really well and pulled me in. I REALLY liked it. Between 1/3 and 3/4's of it, the film started throwing in things that were not set up and made no sense. My first thought was, ""This is not written by someone who knows how to tell a story."" I ended up re-watching parts of the movie, thinking I had missed something.<br /><br />By the time I reached the last 1/5 of the movie, it was all BORING, ANNOYING, RELIGION THUMPING DIALOG that made no sense, said nothing, and was annoying to listen to; I turned off the sound and did a fast forward to the end.<br /><br />Don't waste your time with this flick.<br /><br />Beware of DVDs labeled Whitlow Films and Level Path Productions.<br /><br />And I'm a practicing Catholic.",0 +18638,"I can't understand why so many peoples praised this show. Twin peaks is one of the most boring titles I have ever seen in my life.<br /><br />Now I have seen all season 1 episodes, and seeing season 2 episode 1. Simply I can't take this show anymore.<br /><br />1) Where is the proper induction in criminal investigation?<br /><br />In season 1, there was a scene that agent Cooper throws stones to a bottle. Can you guess why he did that? He just want to identify murderer by doing this 'joke' while mentioning supernatural ability given by Tibet dream. Wow!!!<br /><br />2) There are too many unnecessary scenes in this show.<br /><br />For example, season 2 started with a 'funny' scene that a dumb old man serves agent Cooper with a cup of milk while Cooper are laying down on the floor.( He got the gun shoots in his belly already. ) This old man is doing nothing but saying some dumb comments. That's all.<br /><br />This scene is really boring and even long ( 3 min 30 sec.... It's like Hell. )<br /><br />I would read some comic books rather than see this show anymore.",0 +23824,"John Wayne & Albert Dekker compete for oil rights on Indian territory, and for the attention of Martha Scott in this Republic Pictures film shot out of Utah, USA.<br /><br />An interesting Western of sorts due to its characters and its more modern setting, with Wayne & Dekker playing the old and new factions of the West. It's based on a story by Thomson Burtis who co-writes the script along with Eleanore Griffin and Ethel Hill. Albert Rogell directs in the workmanlike way that befits his career. A pretty mundane story is in truth saved by its final third, where thankfully the action picks up and we are treated to something resembling a pulse. The light hearted approach to the romantic strand doesn't sit quite right, and a glorious fist fight between the two protagonists is ruined by Rogell being unable to disguise the stunt men doing the work. But hey, stunt men deserve their moment of glory always. Solid support comes from George 'Gabby' Hayes and Wayne as usual has much screen charisma, particularly when rattling off his pistol. But in spite of its better than usual Republic budget, it remains a film of interest only to 1940s Wayne enthusiasts. 4/10",0 +9355,"HOLES is not your average Disney stuff- it's very, very fun, even for adults who usually cringe at the cutesy, focus-group designed ""family entertainment"" that Uncle Walt's studio passes off as live-action. Perhaps the secret of this film's success is in its faithfulness to the original book, which is a little bit darker than your average kid stuff. The action begins when Stanley Yelnats is sent to a boys' prison camp, where all the inmates are forced to dig holes under the desert sun as a form of rehibilitation. But as the story progresses, Stanley's tale becomes interwoven with that of a legendary treasure, and this adventure becomes ten times more fun than any Disney movie about an all-boy prison camp has any right to be. Jon Voight is especially nasty and colorful, and Sigourney Weaver is beautiful, as always.",1 +10229,i really liked the film.at ending i was in tears.this film is incredible.go watch the movie. you will enjoy it.i could have given it ranking more than 10.i liked the teasing between chance and sassy.i like the leadership of shadow.overall this movie was perfect.<br /><br />its sequel is good but not good as this movie.i think there should be a third sequel to it.not only this film attracts children but also adults.my whole family enjoyed this film.Chance was full of humor.sassy is an intelligent cat.<br /><br />again i say THIS MOVIE IS A MUST WATCH.the more u see this movie the more you are attached with this movie.this movie is a classic.,1 +18183,"I thought this movie had absolutely no moral. I mean, how would you feel if your fiancé left you on your wedding day for your cousin??? I would be heartbroken!! It's classified as a comedy but I didn't find it funny at all. I thought it just mostly found cheap laughs and took them. I normally love Julie Stiles movies, but this is an exception. Jason Lee stars in another disgraceful show, which once again proves that class and decent morals are not relevant in todays society. It had a complete lack of taste and I despise movies like this. I understand that people will defend this movie and it's morals because it is 'Just a movie', but I still stand by my mark that this bad behaviour shouldn't be allowed on screen. I'm not trying to say that if you enjoyed this movie, you are a bad person, as everyone is entitled to their own opinion, and parts of this movie were enjoyable, I'm just saying that in real life, people acting like the characters in this film were doing is shameful.",0 +20045,"Ever since the cinema-loving universe made acquaintance with a guy named George A. Romero, the word ""zombie"" automatically gets associated with blood-soaked horror images and non-stop acting sequences. It's safe to say that his ""Night of the Living Dead"" formed the zombie movie as we know it now. Yet, in the earliest years of cinema, the premise of reanimated corpses was merely used in slow, nearly action-less psychological thrillers. Jacques Tourneur's ""I walked with a Zombie"" is a perfect example and so is ""White Zombie"", starring Bela Lugosi. This ""Revolt of the Zombies"" could have been another example but unfortunately it's a failure over the entire line and easily one of the most tedious movies I ever saw. Dreadful acting, a very poorly written screenplay and a complete lack of atmosphere and tension! The film only lasts 65 minutes and yet the first half hour is entirely wasted on stupid love-story intrigues and unexciting monologues. The setting in the legendary Cambodian city of Angkor surely could have resulted in a more compelling story but all we ever see are interior shots. The lead actress (Dorothy Stone, textbook blonde with curly hair and an ugly nose) irritated me enormously and I kept hoping a ravenous undead would suddenly appear out of nowhere to devour her. Unlucky again . If you manage to struggle yourself through 60 soporific minutes, you'll be rewarded with a fairly decent finale. Still, this is far too little to give this film a positive rating, let alone a recommendation. Avoid! This is the type of movie you should only see in case you already saw everything else.",0 +8029,"This is a true ""80's movie"": Back then they made maybe 100 times more movies than nowadays, and that makes many of them quite interesting... It was a cultural phenomenon, that don't exist anymore. Nowadays maybe the same kind of people that would have made cheap ""straight-to-video""-movies in the eighties, are doing cheap porn. Porn seems to sell. Anyway, this is above the medium trash-movie level: It has good&fascinating story, and it's quite well made I think. In one scene you can even see the microphone swinging on the upper edge of the picture. Of course there are also little cameos by Ozzy and Gene Simmons, but they don't very much contribute to the film ""success"", although they are good in their small roles. The monster,heavy-singer ""Sammi Curr"", looks really terrible, especially when he's singing. One of the scariest monsters I've seen in horror flicks. I may have nightmares of him next night. Not recommended for intellectual movie lovers.",1 +23261,"David Mamet is a very interesting and a very un-equal director. His first movie 'House of Games' was the one I liked best, and it set a series of films with characters whose perspective of life changes as they get into complicated situations, and so does the perspective of the viewer.<br /><br />So is 'Homicide' which from the title tries to set the mind of the viewer to the usual crime drama. The principal characters are two cops, one Jewish and one Irish who deal with a racially charged area. The murder of an old Jewish shop owner who proves to be an ancient veteran of the Israeli Independence war triggers the Jewish identity in the mind and heart of the Jewish detective.<br /><br />This is were the flaws of the film are the more obvious. The process of awakening is theatrical and hard to believe, the group of Jewish militants is operatic, and the way the detective eventually walks to the final violent confrontation is pathetic. The end of the film itself is Mamet-like smart, but disappoints from a human emotional perspective.<br /><br />Joe Mantegna and William Macy give strong performances, but the flaws of the story are too evident to be easily compensated.",0 +11753,"I have seen The Perfect Son about three times. I fail to see how this film is a gay film, I am not even gay, but I don't see it as a gay film. It is a film with a gay character, I can't see why every film with a gay character should be strictly a film about being gay. I find the film to be sympathetic to the study of death, the death of someone who is your kin. I think Theo turns his life around fairly quickly after rehab because he wants to and watching his brother dying in front of him makes him reassess his life. I found the dialog in the scene when Theo tells Ryan he is going to be a father to be very moving, Ryan states that he doesn't want to know about the things he is never going to see or share with anyone. Isn't that horrific and sad? I highly recommend the film.",1 +7536,"From the filmmakers who brought us The March of the Penguins, I guess that came with plenty of expectations for The Fox and the Child. From the harsh winters of the South Pole to the lush wilderness in France, the narrative now becomes part documentary and part fairy tale, which tells of the friendship between the two titular characters, Renard the fox and its friendship with the child who christened it, played by Bertille Noel-Beuneau.<br /><br />The story's frankly quite simple, and at times this movie would have looked like the many Japanese movies which children-miscellaneous animals striking a friendship after the development of trust, and how they go about hanging around each other, dealing with respective adversaries and the likes. Here, the child meets the elegant fox near her home up in the mountains, which provide for plenty of beautiful picture-postcard perfect shots that a cinematographer will have to go into overdrive to capture.<br /><br />But while we indulge in wistful scenery, the characters don't get to establish that level of trust from the onset, and we have to wait a few seasons to past, and 45 minutes into the film, before they find a leveler in food. The child persistently attempts at striking a bond with the objective of taming the creature for her own amusement, but the fox, well, as other notions of course. While I thought the narrative was pretty weak, unlike March of the Penguins which has that human narrative interpretation of what's happening on screen, what excelled here were the documentary elements of the movie, tracing the life and times of the fox as both a predator, and a prey.<br /><br />Between the two, more tension and drama was given to the latter, especially when dealing with traditional foes like wolves, and granted, those sequences were fairly intense especially when the child got embroiled in it. Otherwise, it was plain sailing and quite a bore as the two of them go about their playing with each other, in shots that you know have undergone some movie magic editing. There were surprisingly dark moments in the movie that weren't really quite suitable for children, as those in the same hall attested to it by bawling their eyes out suddenly, so parents, you might want to take note and not let your toddler disturb the rest of the movie goers.<br /><br />As a film, I would've preferred this to be a complete documentary ala The March of the Penguins, but I guess the way it was resented, probably had the objective of warning us not to meddle with nature, and that some things are just not meant to be, and should stay as such. Decent movie that leaned on the strength of the chemistry between Bertille Noel- Bruneau, and the multiple foxes that played Renard.",1 +12650,"I just watched this movie on Starz. Let me go through a few things i thought could have been improved; the acting, writing, directing, special effects, camera crew, sound, and lighting. It also seemed as though the writers had no idea anything that had to do with the movie. Apparently back in 2007, when the dollar was stronger you could buy a super advanced stealth bomber that could go completely invisible for $75 million. Now-a-days those things cost about $3 billion and they cant go invisible. Apparently you can fly from the US to the middle east in an hour. There was a completely random lesbian scene, which I didn't mind, but it seemed like a lame attempt to get more guys to see it. The camera would randomly zoom in on actors and skip to random scenes. Oh yeah, since its a Steven Segal movie, its predictable as hell. All in all I rank it right up there with Snakes on a Plane.",0 +1972,"Chuck Jones's 'Hare Conditioned' is a fast paced, often hilarious cartoon. Pitting Bugs Bunny against a strange, yellow-skinned apartment store manager who wants to have him stuffed, 'Hare Conditioned' takes full advantage of its multi-purpose setting. The chase takes Bugs and his pursuer through a variety of departments, leading to an inspired gag in which they quickly emerge from various departments wearing whatever clothes are associated with that part of the store. This great gag is trumped, however, by a truly inspired sequence involving elevators in which Bugs, disguised as an elevator boy, tricks the store manager into relentlessly getting on or off elevators at the wrong time. It's a brilliant climactic set piece which unfortunately gives way to a not very funny final gag. By that time, however, 'Hare Conditioned' has made its mark as one of the great chase films, bursting with wild energy. As Bugs was becoming more refined in some of the other cartoons from this period, 'Hare Conditioned' showed that he could still be just as appealing as a more anarchic character.",1 +4564,"I know this sounds odd coming from someone born almost 15 years after the show stopped airing, but I love this show. I don't know why, but I enjoy watching it. I love Adam the best. The only disappointing thing is that the only place I found to buy the seasons on DVD was in Germany, and that was only the first two seasons. That is disappointing, but that's OK. I'll keep looking online. If anyone has any tips on where to buy the second through 14th seasons, please email me at darkangel_1627@yahoo.com. I already own the first one. The only down side is that the DVDs being from Germany, they only play on my portable DVD player and my computer. Oh well. I still own it!",1 +17945,"I was expecting a very funny movie. Instead, I got a movie with a few funny jokes, and many that just didn't work. I didn't like the idea of bringing in Sherlock Holmes' and Moriarty's descendants. It was confusing. It would have been more funny if they just had someone new, instead of Moriarty resurrected. Some of the things were funny. Burt Kwouk was very funny, as always. McCloud on the horse was funny. The McGarrett from Hawaii 5-0 was not even McGarrett-like. Connie Booth obviously is very good with accents. She is from Indiana, but played English and a New Yorker pretty well. Unfortunately, she was not presented much into the script. I was expecting a more funny film. Instead, I got a rather confusing movie with a poor script. Rather ironic, since both Booth and Cleese were together on this one. Maybe they were about to break up in 77.",0 +4950,"I saw this in the theater and I instantly thought that it is good enough to own on video. I am a big nut for Sci-Fi action flicks though anyway.<br /><br />Without giving any of the story away, it is worth seeing if you like Sci-Fi without requiring much thought. The story is basic, and the plot is very good. Worth your time to see!<br /><br />Maybe they will make a sequel? :)<br /><br />8 out of 10",1 +13199,"Ouch! This one was a bit painful to sit through. It has a cute and amusing premise, but it all goes to hell from there. Matthew Modine is almost always pedestrian and annoying, and he does not disappoint in this one. Deborah Kara Unger and John Neville turned in surprisingly decent performances. Alan Bates and Jennifer Tilly, among others, played it way over the top. I know that's the way the parts were written, and it's hard to blame actors, when the script and director have them do such schlock. If you're going to have outrageous characters, that's OK, but you gotta have good material to make it work. It didn't here. Run away screaming from this movie if at all possible.",0 +9889,"An interesting TV movie based on true fact, betrayed by the description of one of the leading characters, that of a prisoner. Giovanni Ribisi plays his younger brother, who has the delicate mission of deciding if he will appeal to the courts for his brother's death penalty. But when he goes to visit him and enters Elias Koteas, the problem starts. It has nothing to do with Koteas' acting ability. He just looks like the version of a prisoner of proletarian roots according to ""G.Q."" magazine, with a language too sophisticated for someone who has spent most of his life behind bars. This realization came to me after meeting again an old friend, whom I had not seen for almost 15 years, which he spent in several Panamanian jails. The young man I used to know is gone, not only because he is older, but due to his exposure for a prolonged time to the penal system. There are jails and there are jails, one must say, but this one prisoner in ""Shot In the Heart"" is definitely out of this world.",1 +11214,"This is a thoroughly diabolical tale of just how bad things can go wrong. A simple robbery. Pick up some serious change. Get our finances together and everything will be hunky-dory. Butmom and pop's jewelry store? No problem. Insurance pays for it all. No guns. Nobody gets hurt. Easy money.<br /><br />Older, more successful (it would appear) brother Andy (Philip Seymour Hoffman) has a few minor problems. Heroin addiction, cocaine habituation. A wife (Marisa Tomei) that well, he can't seem to perform for. His flat belly days long gone. Younger, sweet, slightly dim-witted younger brother, Hank (Ethan Hawke) with a few dinero problems of his own. Behind in child support payments for his daughter, in debt to friends and relatives, not exactly wowing them in the work of work, etc.<br /><br />Sydney Lumet, in this performance at the age of 82 (!), directs and gets it 99.99 percent right, which is hard to do in a thriller. I have seen more thrillers than I can remember and most of the time the director gets the movie printed and lives with the plot holes, the improbabilities, the cheesy scenes, and the hurry-up ending. Here Lumet makes a thriller like it's a work of art. Every detail is perfect. The acting is superb. The plot has no holes. The story rings true and clear and represents a tale about human frailty that would honor the greatest filmmakers and even the Bard himself.<br /><br />Hoffman of course is excellent. When you don't have marquee, leading man presence, you have to get by on talent, workmanship and pure concentration. Ethan Hawke, who is no stranger to the sweet, little guy role, adds a layer of desperation and all too human incompetence to the part so that we don't know whether to pity him or trash him. Albert Finney plays the father of the wayward sons with a kind of steely intensity that belies his age. And Marisa Tomei, who has magical qualities of sexiness to go along with her unique creativity, manages to be both vulnerable and hard as nails as Andy's two timing wife. (But who could blame her?) It's almost a movie reviewer's sacrilege to give a commercial thriller five or ten stars, but if you study this film, as all aspiring film makers would be well advised to do, you will notice the kind of excessive (according to most Hollywood producers) attention to detail that makes for real art--the sort of thing that only great artists can do, and indeed cannot help but do. (By the way, I think there were twenty producers on this filmwell, maybe a dozen; check the credits.) All I can say in summation is, Way to go Sydney Lumet, author of a slew of excellent films, and to show such fidelity to your craft and your art at such an advanced agekudos. May we all do half so well.<br /><br />Okay, the 00.01 percent. It was unlikely that the father (Albert Finney) could have followed the cabs that Andy took around New York without somehow losing the tail. This is minor, and I wish all thrillers could have so small a blip. Also one wonders why Lumet decided not to tell us about the fate of Hank at the end. We can guess and guess. Perhaps his fate fell onto the cutting room floor. Perhaps Lumet was not satisfied with what was filmed and time ran out, and he just said, ""Leave it like that. It really doesn't matter."" And I think it doesn't. What happens to Hank is not going to be good. He isn't the kind of guy who manages to run off to Mexico and is able to start a new life. He is the kind of guy who gets a ""light"" sentence of 10 to 20 and serves it and comes out a kind of shrunken human being who knows he wasn't really a man when he should have been.<br /><br />See this for Sidney Lumet, one of Hollywood's best, director of The Pawnbroker (1964), The Group (1966), Serpico (1973), Dog Day Afternoon (1975), Network (1976), and many more.",1 +75,"This movie was excellent. A sad truth to how culture tends to clash with the sexes. This is just one big warm fuzzy type of movie. You have the master who is steeped in tradition and kind hearted in his own way, Doggie despite being a girl thing to win his affections and you top it off with one cute monkey with a thousand facial expressions. This equals on big happy movie in the end. This movie does a good job at showing how steeped in tradition one can be, so steeped that they are willing to die without sharing their secrets. You see sides to a culture never seen before which helps enhance the drama that unfolds near the end of the picture. The cinema-photography is excellent, in particular the opening parade sequence with all the sparkers. Bound to be in Oscar contention for best foreign film.",1 +1147,"Wracked with guilt after a lot of things felt apart on that ledge, an ace mountain rescue climber Gabriel Walker (Stallone) comes back for his girlfriend Jessie (Janine Turner), while over the cloudy skies where the weather looks a bit threatening, a spectacularly precarious mid-air hijacking goes wrong and $100 million taken from a Treasury Department plane get lost in the middle of nowhere followed by a crash landing <br /><br />Stranded off the snowy peaks, and needing mountain guides to win back the stolen cash, the high-trained hikers make an emergency call asking the help of a rescue unit <br /><br />Unfortunately, Gab and Hall (Michael Rooker) have to team up to arrive at the scene of the crash unaware that the distress call was a fake, and a bunch of merciless terrorists led by a psychotic (John Lithgow),are waiting for them only to find out a way off the stormy mountain with the dumped cases of money <br /><br />With breathtaking shots, vertiginous scenery, dizzying heights, perilous climbs, freezing temperatures, ""Cliffhanger"" is definitely Stallone's best action adventure movie ",1 +22394,"Alone in The Dark is one of my favorite role-playing-games of all time. I remember spending whole nights facing the PC screen, trying to escape that mansion and actually being startled at times when monsters came surprisingly charging in. Now, mind you - I am weary of ""computer-game-generated"" movies. I don't remember a single success story in this new Hollywood genre, although some are entertaining enough to be watchable. And yet, I am such a big fan of the game that I couldn't resist. My rationale was that if the movie had a plot that so much as resembled the game's, it would be OK. <br /><br />Man, those were 90 minutes (which seemed like 300) of my life that I'll never get back. If I had that chance, I would have gladly spent them rearranging my sock drawer instead. This isn't even in the ""so bad it's funny"" category. You would think even Christian Slater had a bit more sense than joining this stink bomb. Now, Tara Reid... I'm not complaining about her presence. However, if the purpose of putting this chick in a starring role is to have a sex scene, - which I totally understand and support (hey, I'm a guy!) - I've seen more of her body on press conferences.<br /><br />There is no plot to speak of. Won't waste your time pitching it to you. The credibility of the story sinks below 'I did not have sex with Ms. Lewinski'. The acting is but a few notches above 'Street Fighter', which, by the way, being one of the worst movies I've seen, I would recommend OVER this one.<br /><br />Kids, I recommend the Video Game. It has far better story, acting and much more thrills. As for the movie, here's a spoiler - it STINKS! Wait for the porno version.",0 +8022,"Skippy from Family Ties goes from clean-cut to metal kid in this fairly cheesy movie. The film seems like it was made in response to all those upset parents who claimed metal music was turning their kids evil or making them kill themselves - except in this one a dead satanic metal star is trying to come back from the grave (using Skippy to help out). And while the plot is corny and cliche, the corniness (for example, an evil green fog taking off a girl's clothes)and the soundtrack are what make the movie so hilarious (and great). And of course, there's nothing like Ozzy Osbourne playing a preacher who's asking what happened to the love song :). Definitely a movie for having a few friends over for a good laugh. And while you're at it, make it a double feature with Slumber Party Massacre 2 - there's an ""evil rocker"" (as stated on the video box)driller killer in black leather w/fringe. A must see for cheesy movie fans.",1 +24901,"I agree totally with another of the reviewers here who was pleased ""For The Birds"" won the Oscar in 2002 for ""Best Animated Short,"" not this sick material, which is pretentious at best and appealing to anyone, of course, who has no belief in heaven or hell.<br /><br />The animation was good, but so are a lot of animated shorts. And, by the way, I love dark humor but this just was unappealing from the start.<br /><br />As for the story here: a guy walking around and surrounded by nothing but grey (symbolism here) is told by a TV set (which appears every few hundred yards away) that he is in either heaven, hell, or purgatory. Each time he puts a gun to his head and shoots himself after hearing the news. I guess that would be funny in two of the three instances.",0 +34,"What's inexplicable? Firstly, the hatred towards this movie. It may not be the greatest movie of all time, but gimme a break, it got 11 oscars for a reason, it made EIGHTEEN HUNDRED MILLION DOLLARS for a reason. It's a damn good movie. Which brings to the other inexplicable aspect of it. I have no idea whatsoever why this movie left such an impression on me when I saw it in theaters. I've rewatched it on TV and video, and it had none of the impact it had when I saw it on the big screen (twice, or maybe three times, actually). But that might be it, the appeal of it. It's a Movie, yes, capital M there, it's an Epic, it's a spectacle in the order of Gone With the Wind or Ben Hur. Now, Ben Hur and Gone With the Wind seem kinda hokey to me, with the hammy acting and excessive melodrama. Not that Titanic has none of that. Well, the acting was actually very good. The melodrama was quite heavy-handed at times.<br /><br />But the reason Titanic works is that it's such an emotional ride. I usually enjoy movies that stimulate the mind, or give me a visual thrill. This movie isn't exactly dumb, but it's not cerebral at all. The visual thrills are simply means to an end, to fuel the emotions of the audience. I didn't cry when Bambi's mom died, I don't react to tearjerkers. But this is a tearjerker to the power of ten million, an emotional rollercoaster that, if it were a regular one, would make Buzz Aldrin scream like a little girl. And I'm sure that if you see it on video and have decided that you hate it, and have a ready supply of cynicism, then you can thoroughly dislike this movie. But if you let that disbelief suspend just a bit, if you give this epic melodrama the benefit of the doubt, you'll enjoy it completely. And look at the top ten grossing films of all time. Is a single one of them bad? Is a single one of them worth a score of 1 out of 10? No, not even The Phantom Menace. And this movie made 1.8 BILLION DOLLARS worldwide. It can't be bad. Not possible. 10/10.<br /><br />p.s. how can anyone even consider comparing this to spiderman? spiderman was a fun movie, but it was a total 9/11 kneejerk that caused it to gross as much as it did. it simply wasn't anything all that special. no one will remember it in 50 years. but i'm pretty sure Titanic will be remembered.",1 +4579,"In my opinion, this is an absolutely romantic Disney masterpiece. If you ask me, the stepmother (voice of Lucille La Verne) was truly diabolical. You'll have to see the movie if you want to know why. On the other hand, despite the fact that she did a lot of housekeeping, Cinderella (voice of Ilene Stanley) was a very beautiful lady. To me, the scenery was beautiful, the cast was well chosen, and the writing was strong. Before I wrap this up, I'd like to say that everyone involved in this film did very well. Now, in conclusion, I highly recommend this absolutely romantic Disney masterpiece to all of you who haven't seen it. You're in for a good time, so go to the video store, rent it or buy it, kick back with a friend, and watch it.",1 +2209,"Like most other reviewers I have first seen this movie (on TV, never on the big screen), when I was a teenager. My Dad has always regarded this film highly and recommended it to me then, and I must say he was not only right, but this movie has stayed with me forever in the more than 2 decades since I saw it first time. I have seen it two or three more times since then (just a few days ago I gave it another watch) and it has not lost anything of its impact with time. It still a great and well worth to be seen movie! Manr regard Peckinpah's RIDE THE HIGH COUNTRY as one of the first and best later western, which had a realistic look at life in the old west, but the hardly known LAST HUNT is definitely the better movie and was even half a dozen years earlier. Actually it was probably 3 decades ahead of its time, or maybe it still is ...<br /><br />Although thinking hard and having certainly seen 100s of western (I like this genre) I can not remember any western as bleak and depressive as this one. Two men bound together, partly by hate, partly by not seeming to have other choices, surrounded by beautiful Ms. Padget, a crippled old man and a young Inian, leading the life of buffalo-killers until fate reaches out for one of them.<br /><br />Nobody who has ever seen this movie will be able to forget its ending and the last frames of this gem. When the camera moves on and away from Mr. Taylor a white buffalo skin comes into sight (on a tree)and echos from the past, when all the hatred began, are present again. Mr. Taylor has got his buffalo, but in the end the buffalo got him. <br /><br />Aside from the top performances of everybody involved, the intelligent script and the great dialogue, it should also be mentioned, that THE LAST HUNT is superbly photograped, I have seldomely seen a western that well shot (aside from the ones directed by Anthony Mann, which are also all superbly photographed), that all the locations are cleverly chosen and that even the soundtrack fits the picture very well.<br /><br />And director BROOKS is really a superb storyteller. Master craftsmanship!He has made quite a couple of really great movies and was successful in nearly every imaginable genre, but even in an as prolific career as this one, THE LAST HUNT still shines as one of his best, if not his best.<br /><br />Definitely would deserve a higher rating, compared to the 7-something RIDE THE HIGH COUNTRY enjoys.",1 +20041,"This is not really a zombie film, if we're defining zombies as the dead walking around. Here the protagonist, Armand Louque (played by an unbelievably young Dean Jagger), gains control of a method to create zombies, though in fact, his 'method' is to mentally project his thoughts and control other living people's minds turning them into hypnotized slaves. This is an interesting concept for a movie, and was done much more effectively by Fritz Lang in his series of 'Dr. Mabuse' films, including 'Dr. Mabuse the Gambler' (1922) and 'The Testament of Dr. Mabuse' (1933). Here it is unfortunately subordinated to his quest to regain the love of his former fiancée, Claire Duvall (played by the Anne Heche look alike with a bad hairdo, Dorothy Stone) which is really the major theme.<br /><br />The movie has an intriguing beginning, as Louque is sent on a military archaeological expedition to Cambodia to end the cult of zombies that came from there. At some type of compound (where we get great 30s sets and clothes) he announces his engagement to Claire, and then barely five minutes later, she gives him back his ring declaring her love for his pal, Clifford Greyson (Robert Noland). It's unintentionally funny the way they talk to each other without making eye contact. This would have been a great movie for 'Mystery Science Theater 3000', if they hadn't already roasted it.<br /><br />It's never shown how Louque actually learns the 'zombification' secret, but he then uses it to kill his enemies, create a giant army of rifle carrying soldiers and body guards. We won't see such sheer force of will until John Agar in 'The Brain From Planet Arous' (1957).<br /><br />Finally Claire consents to marry him if he will let Greyson live and return to America. Louque agrees, but actually turns him into one of his hypnotized slaves. On their wedding night he realizes that Claire will only begin to love him if he gives up his 'powers.' To gain her love, he does so, causing the 'revolt' of the title, in which all his slaves awaken and attack his compound and kill him. Greyson embraces Claire, and we seem to be at the end of a parable: ""Whom the gods would destroy, they first make mad."" <br /><br />So really then, it's not that bad of a film, despite the low IMDb rating it currently has. On repeated viewings (?) one can see the artistry in the well formed script! Dean Jagger had yet to develop into a good actor, and is almost unrecognizable in his youngness -- is that really his own hair? We remember him more for his bald, old man roles in 'White Christmas' (1954), 'X The Unknown' (1956) and 'King Creole' (1958). The story borrows a lot of its basic themes from the Halperin brothers better, earlier film 'White Zombie' (1932) in which hapless Robert Frazier (as Charles Beaumont) uses 'zombification' to win the love of Madge Bellamy (as Madeline Parker).<br /><br />If you want real zombie movies (of which there are hundreds!) I'd start with 'White Zombie' (1932), 'King of the Zombies' (1941), 'I Walked with a Zombie' (1943), 'Night of the Living Dead' (1968), 'The Last Man on Earth' (1964) and its two remakes. In the modern era of classy films, there are 'Horror Express' (1972), 'The Serpent and the Rainbow' (1988), '28 Days Later' (2002) and its sequel, as well as many, many, others too numerous to mention.<br /><br />This one is not really a zombie film. Judging this movie on its own terms, it's more of a semi-Gothic romance. As such it ranks a little below some of Universal's bottom billed B horror movies of the late 30s and early 40s. So I'll give it a 5.",0 +8156,"Like Ishtar and King of Comedy, other great, misunderstood comedies, Envy has great performances by two actors playing essentially, losers (may be too harsh a word, I will call them suburban under-achievers).<br /><br />This film was a dark comedy gem, and I'm not sure what people expect. I relish seeing a major studio comedy that isn't filled with obvious humor, and I believe that the small moments in this movie make it worthwhile. The look on Stiller's face when he sees the dog doo disappear for the first time captures a moment, a moment that most people should be able to recognize in themselves. Yes, it was a fairly simple story, but it examined the root of envy in a really interesting way. There were a lot of great scenes (the J-Man's decrepit ""cabin by the lake"", Corky's unceremonious burial, Weitz's wife role, and Walken's J-Man -- all great stuff.<br /><br />I can't stand people that get on IMDb and mercilessly trash films when they have absolutely no idea what it takes to make one. I will take Envy over almost any of the top ten grossing comedies of the year (save Napoleon Dynamite.) It's wittier, wackier, and an offbeat, enjoyable gem.<br /><br />Remember this people; Most times, Popular doesn't equal Good.",1 +17789,"I watched this film recently on DVD and I have to say I wasn't impressed. I know it's taboo to knock independent films, but this one felt devoid of entertainment.<br /><br />The premise was interesting, but the execution of it fell short. I found myself thinking ""okay, they're just getting into it, the story will pick up soon"". Before I knew it, the film was over and the story never picked up. I can't say I found the acting all that impressive either. It was pretty bad. Not Star Wars prequel trilogy bad, but bad nonetheless.<br /><br />I'm not sure what the running time was, I'll assume two hours (because it's a safe estimate). Anyway, when the film was finished, I felt as though I deserved some kind of recognition for the will power I exerted in not stopping the film and walking away halfway through.<br /><br />Again, I was thoroughly unimpressed, and eventually bored out of my wits. I'm not one of those guys who requires fast-paced action and explosions in a film, so don't start in on me as that being a reason for not liking it.",0 +5114,"This film makes a strong comment about the Italian people of the time. The use of the mirrors to enhance the revelations of the characters is lovely and I can't not mention the beauty and magnificence of Sophia Loren and Mastroianni. I love them both. Their way of interacting is so beautiful and natural that you may question whether or not the camera is actually there. The husband, in his brief role, is also excellently portrayed as the fascist Italian who commands his wife and children but, in his own way, a loving father. The beginning scenes with Hitler at Piazza Venezia with all the Italians is incredible and really places the film historically. I loved the film and I also agree that it is funny it isn't more renowned.",1 +16069,"this movie is similar to Darkness Falls,and The Boogeyman(2005)but it's also much more graphic than both,and not as good as either.it's also slow and fairly predictable.it's also got shades of Deliverance and the Amityville Horror.plus,we get some new age flavour thrown in the mix and some of those scenes come off as a motivational/inspirational sermon.really,this movie is a hodgepodge of almost everything.even though it is gory,the makeup effects are not very realistic looking.in fact they look kinda cheap.aside from all that,there is some really awful clichéd dialogue.and i won't say when,but there is a point where a couple of the character's actions were not authentic or believable,given the circumstances.nobody in their right mind what would have acted this way.once you watch the movie,you'll know what i mean.there's also some gratuitous nudity for nudity's sake.it just wasn't necessary at all.the good news is that the acting was actually pretty good.better than this movie deserves.so,after carefully weighing the evidence,id say this movie was passable,but not good.my verdict for The Tooth fairy:4/10",0 +9300,"Most war films made in the US during WWII were great fun to watch but suffered from severe gaps in realism because they were being produced more for propaganda value to raise the spirits at home than anything else. I am not knocking these films as many of them are still very watchable. However, because they so often lack realism they are prevented from being truly great films. A perfect example was the John Garfield film Air Force--in which a B-17 nearly single-handedly takes out half the Japanese air force! However, Pride Of The Marines is a welcome departure--scoring high marks for portraying a true story in a reasonably accurate manner. When I first saw this film, I thought it was NOT a true story as it seemed way too improbable to be true. However, after researching further I found that it was in fact rather true to the amazing story of two men who did so much to earn the Medal of Honor. This is one case where real life seemed too incredible to be true!",1 +7363,"This is an interesting little flick made in 1967, with cool jazzy twangy soundtrack music and a plot that will make you laugh...OK, it's not really stupid but it's cheesy fun. I saw many similarities between this and 'Creature with the Blue Hand' (AKA The Bloody Dead) and they do have the same director! Scotland Yard's finest is investigating the murders of young ladies at a college. Seems that criminals are being let loose from a local prison to do the bidding of some evil person and then returned when their work is done. There's a nifty device hidden inside a bible that squirts prussic acid, and there's another device that is neither nifty nor clandestine, it looks like a large squirt gun and the victim must be pretty near soaked before they expire. Joachim Fuchsberger plays an Inspector and he mostly chews gum and looks off into the distance. There's a ""monk"", and how anyone identifies this thing as a ""monk"" is beyond me, it carries a whip and dresses in a red outfit with a red hood, more of a Klan member of a different color than a monk. There's all kinds of nifty devices like a fireplace hearth that goes up and down to admit the monk, and it steps right over the fire without setting his robe alight, a nifty trick right there. This is an odd combo of crime drama with goofy overtones, and while it's rather silly at times it is fun to watch. 7 out of 10, not bad....",1 +24843,"I usually enjoy films like this. It's shot documentary style, but the acting and writing are just awful. The acting is wooden and stiff and the writing is just so cliché, but not at all in a good way. As of typing this, I'm surprised it's at a 5.2/10 on IMDb. I'm certain that most of these votes must have come from relatives of people in the movie. I suppose if that's the case, you might manage a couple of laughs, as it's always funny seeing your relatives/friends make a movie. Well, in a way, I guess this gives hope to all up and coming writers, directors, actors, etc., 'cause if they can do it, you can do it. Although, maybe you shouldn't.",0 +5053,"A great film requiring an acquired taste. If you're into action, wham bam films and hate serious love stories then its not for you. Otherwise, if you like to sit in front of a good intelligent movie now and again I recommend this very highly. Easily the best film produced in Bollywood this century.<br /><br />The only other Indian film I would give 10/10 for is Dil Wale Dulhaniya Le Jayenge. Even then it comes second to this masterpiece.",1 +14264,"Bottom-of-the-Freddy barrel. This is the worst film in the series, beating ""Freddy's Revenge"" for that title. A cheap-looking (with mediocre special effects), incoherent mess, with Freddy turned into a punster. He has one or two cool lines, but that doesn't save this illogical and sloppy sequel.",0 +10579,"A family (mother-Patricia Clarkson, father-Jake Weber, son-Erik Per Sullivan) go out for a family get together in some remote house in the middle of winter. They accidentally hit a deer while driving there. This angers some of the locals--especially Otis (John Speredakos) and things slowly (VERY slowly) go wrong.<br /><br />I was expecting the worst when I started watching this. The bulk of the reviews for this, on this site, are extremely negative. Well...I disagree. First off it's NOT a horror film. The horror doesn't even begin until the closing 30 minutes. It plays more like a family drama with horror elements thrown in. On that level, it's pretty damn good.<br /><br />First--the bad stuff: The pace is WAY too slow; Jake Weber is a horrible actor; WAY too many false dream sequence scares; the wendigo barely figures into the film and the clear view we get of the wendigo at the end is laughable.<br /><br />The good stuff: Pretty good dramatic script; Clarkson is excellent as the mother; some great direction with eerie sound effects which are a little scary; a pretty explicit hot sex sequence between Clarkson and Weber (which actually is necessary for the integrity of the plot!); pretty good acting by Sullivan (only 10 at the time!) and Speredakos and a completely unexpected tragic ending.<br /><br />I think many people are annoyed with this film because it's being pushed as a horror film--which it isn't. So, if you can ignore that, I think you might like it. I'm giving it a 7.",1 +11921,mature intelligent and highly charged melodrama unbelivebly filmed in China in 1948. wei wei's stunning performance as the catylast in a love triangle is simply stunning if you have the oppurunity to see this magnificent film take it,1 +18948,"Bingo is the game, bullshit is the name. Rarely has the screen been smeared with such a blown-up hodgepodge of half-baked conspiracy theories, puritan prudery, and new-age gibberish. The bulk of the story is set at Viciente, a Cristian resort in the Peruvian jungle. Think Tolkien's Rivendell meets Star Trek's Planet Baku, inhabited by dimwitted followers of a not-so-mysterious, but surprisingly narrow-minded cult of love and peace. Thanks to gruesome acting and tacky production design (the rainbow-colored visualization of the mysterious all-healing ""energy"" is particularly hideous), ""The Celestine Prophecies"" looks and feels like a discarded 1980s ""Twilight Zone"" episode. Factual errors regarding church history and nomenclature abound. I can't believe Hector Elizondo agreed to be a part of this. Maybe it was made without his consent, Bowfinger style. May the Lord have mercy on the director, the screenwriter, the author of the novel, and the poor souls who see the movie or read the book.",0 +13010,"Raising Victor Vargas fails terribly in what it tries most to be: being real. Unfortunately, there is no reality to this film. The characters and situations feel completely artificial and fake.<br /><br />The reason? Bad directing. Peter Sollett uses all the wrong tools in his arsenal. It seems Mr. Sollett read somewhere that not lighting his film would give it an authentic feel. Wrong! It just gives it a badly-made feel. Similarly, shaking the camera does not give a documentary style to your film, it just gives the audience a headache and detracts from what's on screen instead of enhance it.<br /><br />Of course, what's on screen is so painfully fake, as if Mr. Sollett wrote his script with the only goal of trying to look ""hip"" to his Sundance buddies and show how ""edgy"" a filmmaker he is.<br /><br />Overall, the only lasting impression this film leaves you with is what a bad director Mr. Sollett is. Next time, how about taking a few writing and directing classes?",0 +8582,"It's only 2 episodes into a 5 part drama, but I can already state that this is one of the best things I've ever seen. That's on TV, silver screen or even in real life.<br /><br />As a writer, it's so good it's almost demoralising! As a viewer it's so entertaining that I'm annoyed the episodes are over a fortnight instead of Monday to Friday. It's clear that all these negatives are actually positives.<br /><br />I'm a modern guy who previously turned over from TV dramas. In comparison to movies, TV dramas always seemed to be dated, quite tame, and well, generally boring! ""Five Days"" has really brought TV drama into the 21st Century, so for me at least, it's mind changing. Go watch it.",1 +15801,"A meteor hit's Crater Lake (hence our title), awakening a Plesiosaur, who proceed's to snack on the hick population (in California, that hick capital of the world.) <br /><br />There's bad movies, and then there's ""The Crater Lake Monster"", which somehow managed to escape MST3K. Featuring grating acting, a decent stop-motion beast, and more, this is a dreadful piece of 1970's low budget exploitation/monster movie dreck.<br /><br />While the movie is guilty of many crimes, the biggest one is Arnie and Mitch, two obnoxious rednecks who serve as our comic relief. They bumble around, fight to stock ""banjo music"",ogle women, and act like pathetic excuses of humanity. The characters are so bad, they should count as a crime against humanity.",0 +9188,"I didn't know what to except so I think it was a lot better not having excepted much. Don't get my wrong its not a bad short film. Tess Nanavati is a relatively new directer and writer so I think she deserves a lot of kudos for making this film. You can tell that it has been an act of love for her. The acting (outside of Dominic) is a little cheesy and the quality of film is not great either but for a really low budget film its good. There was times when the story line gets convoluted and there are parts that drag on, though I don't feel it greatly detracts for one's ability to understand the film. If you love Dominic Monaghan as much as I do, I say go for it. The gag reel was fun, I won't spoil it but there is a particular scene that makes buying the DVD worth it just so you can watch it over and over. If you like the film then check out The Pink Mirror, a film also done by Jagged Edge. I know fans of Dominic will enjoy this little piece of heaven.",1 +3548,"This is an excellent film about the characters in a adult swimming class, their problems, relationships and interactions with each other. It should have managed a wider distribution as it's much better than similar films from major studios out at the same time.<br /><br />The swimming instructor is an almost-Olympian, reduced to teaching adults basic lessons, and often the target of horndogging from his female students. He attempts, more or less, to fend them off, with varying results.<br /><br />The students characters are mainstream U.S.A; teachers, policemen, college students and retired people, all of whom haven't learned to swim for some reason. The movie covers their relationships, including friends, relatives and romantic conquests as they go through the class. Several subplots provide amusing fodder, including a teacher going through a divorce, some high school students making a documentary, and a girl who is only in the class to meet guys.<br /><br />This is a good date movie, or just one to watch when you're in the mood for a romantic drama with overtones of reality.",1 +22421,"Snow White is in my opinion a bad movie on an artistic point of view. The plot is pretty much foreseeable, the characters are stereotypes, the editing too exaggerated. Anyway, the movie seems not to have a lot of artistic ambitions. <br /><br />Instead, I think this is a straight commercial thing. Including a character from the french part of Switzerland (the actor IS the leader of the band he is touring with in the movie - the band's called SENS UNIK) seems to aim to a larger audience. A straight German-swiss movie would not have sold in the french part - and vice versa. What really got on my nerves were the product placements all over the movie. Sometines scenes remembered of advertisement clips! <br /><br />I also think the topic of ""young people taking drugs without any other targets in their lives"" is a wide spread reality in Zurich. Therefore, it should be elaborated with more care. I hope Samir got enough money with Snow White, in order that his next movie is gonna show his true artistic skills.",0 +1743,"Years ago I did follow a soap on TV. So I was curious about this movie, and I was so rewarded for finding it. It's a marvelous spoof of soaps, with jealousies, the usual actors' insecurities, and all sorts of lovely excesses. But more than anything - an amazing cast and an incredible script. How did someone get all those top-notch actors to play in such a silly sort of movie? And how did this little movie get writers to write the perfect lines? I never hear anyone talk about this movie or even admit hearing of it, but it's marvelous and I highly recommend seeing it. Sometimes I'll throw it on while doing housecleaning, and end up sitting on the couch, watching, laughing and thoroughly enjoying the whole wonderful thing. Many congrats to all who made it.",1 +15737,"This movie is entertaining enough due to an excellent performance by Virginia Madsen and the fact that Lindsey Haun is lovely. However the reason the movie is so predictable is that we've seen it all before. I've haven't read the book A Mother's Gift but I hope for Britney and Lynne Spears sake it is completely different than this movie. Unless you consider ending a movie with what is essentially a music video an original idea, the entire movie brings to mind the word plagiarized.",0 +21091,"It wasn't good. The characters were underdeveloped and the only personality were from the memories I had of the previous movie which contrasted with the 'new' personalities (or lack thereof). I seriously thought the opening scene was a nightmare by Ariel because of how absurd it was. It was serious. It just reminded me of all the annoying characters on the Disney channel-everyone is hyperactive and the story jumps from action to embarrassing scenes without any really connection.<br /><br />The most disappointing part was the horrible songs-not catchy, not amazing. In the original Ariel had an amazing and powerful voice and all the song are catchy and fun. You remember them and want to sing them. But the songs in this movie weren't creative in the least; it's as if they're talking in a annoying sing-song voice-quite weakly, disappointing. I don't have that want-to-sing-them feeling you normally get from a Disney movie.<br /><br />It's as if not one wanted to do this movie, so they barely made an effort . . . this movie would needs a new story line, new catchy songs and more warmth and enthusiasm without the annoying ""look at me! look at me! I'm so annoying!"" mentality of this generation of Disney. :'(",0 +5090,"Admittedly, I know nothing about baseball, I'm not even a fan of the sport, but that didn't stop me enjoying the Farrelly brothers' latest film, Fever Pitch, a charmingly irreverent romantic comedy. The film is not really about baseball; rather, it's really about relationships, and the emotional disconnectedness that can often take place.<br /><br />Jimmy Fallen giving his best performance to date stars as Ben, a dorky, lightly nerdy schoolteacher. Ben is a kind of man-boy, who unfortunately has never really grown up, and he fosters an almost fanatical addiction to the Red Sox baseball team. Ben has devoted his life to the Sox, and does everything from making the pilgrimage to Florida for spring training to decorating every square inch of his apartment in team paraphernalia.<br /><br />One day, while taking his honors geometry class to on a field trip to her office, Ben meets the go-getting Lindsey (a wonderful Drew Barrymore). Lindsey is a corporate, career orientated kind of girl, but she has a kind of cuteness that Ben finds totally endearing. He's initially hesitant to ask her out, thinking that she's way out of his ""class,"" and, Lindsey doesn't immediately see a potential partner in Ben.<br /><br />Their first date gets off to a disastrous start when Lindsey is stricken with a severe case of food poisoning and her resonant retching provides the first clue that we are, in fact, watching a Farrelly brothers movie. Rather than accept Lindsey's - rather urgent - request to reschedule, Ben sticks around to play nurse, orderly, and janitor. So Ben scrubs the toilet and the dog's teeth, while his love interest is passed out with a bucket next to her bed.<br /><br />When Lindsey wakes up in the morning and finds him asleep on her couch, she begins the long, fitful process of dismantling the web of status anxiety and ambition she has come to think of as her standards. Soon they are falling in love, with Lindsey blithely accepting Ben's fanatical devotion to his sport.<br /><br />Having inherited choice season tickets from his beloved uncle, Ben has organized his life around the season he's never missed a game. But their relationship, which has progressed without a hitch throughout the winter, hits a snag at the start of the season.<br /><br />Lindsey wants Ben to do other things, like holiday with her parents and party with her friends, but Ben begins to have trouble modulating his interest to meet Lindsey halfway. Can Lindsey consent to his irrational devotion to the boys of summer in order to make their relationship work? Can she really accommodate Ben's infatuation with sports? Can a die-hard and nerdy Red Sox fan find true love after all? Of course, Lindsey and Ben come with a colorful assortment of opinion-wielding friends. Lindsey's strictest buddy, the skinny, rich and blond Robin (KaDee Strickland), insists that there must be something wrong with the guy if he's still single at 30. However, plump, curly-haired Sarah (Marissa Jaret Winokur) and Molly (Ione Skye) supply a more optimistic and positive view of Ben.<br /><br />Ben's eccentricity could be applied to virtually any obsessive sports fan, while Lindsay's frustrations could be representative of any upwardly mobile career driven woman. Fallon is terrific as Ben, exhibiting real big screen potential, overcoming the not-insignificant challenge of keeping Ben from being unsympathetic. Barrymore, meanwhile, is equally charming as the workaholic Lindsey, particularly as she struggles to accept Ben for who he is without losing sight of her own needs.<br /><br />Fever Pitch really works, and even though there are lots of inspired comedic moments, the movie is also addressing the serious problem of sports addiction and how difficult it can be for couples to negotiate this fragile territory.<br /><br />Much of the movie was filmed at Boston's Fenway Park, which adds a fine sense of authenticity to the proceedings, as well as the ambiance of the games, though fully appreciating what transpired with the team will probably be limited to baseball aficionados. Even so, Fever Pitch is blessed with such a finely wrought and intelligently funny script that even novice baseball fans will find much with which to connect. Mike Leonard September 05.",1 +13958,"This movie deserves credit for its original approach. It combines elements of theater, film, and epic storytelling. Unfortunately, it falls flat on all levels. The films biggest weakness is it's unwillingness to commit to anything; it has camp, moralistic, and epic elements without ever committing to any of them. As for the story itself, Chretien de Troyes is spinning in his grave at this horrible adaptation which turns the lovable, unbearably innocent Percival into a most ungallant and rude churl.<br /><br />Most likely two types of people will see this, francophiles or Arthuriophiles. Speaking as one of the latter, I found the movie unwatchable and an incredibly shabby, disrespectful treatment of a beautiful story.",0 +3706,"Faithful to the work of Pearl S. Buck whose years spent in China as a child of Missionary parents that provided her with deep insights into the Chinese culture and its philosophy, this film adaptation is brilliantly done, both in technically artistry and acting.<br /><br />Wang Lung is a humble farmer grateful for the basics of life: to survive off of his land and to be newly wed to Olan, a servant to a rich and powerful family in the village area. Despite Wang Lung and Olan's best efforts to farm the land, raise kids, and build savings and wealth, a famine threatens to wipe out everything they have worked for. Choosing not to sell their land, a traditional Asian belief, they instead journey to a major city to wait out the famine. While in the city, they are reduced to begging and being just one of hundreds of other unfortunate homeless families. Although not a looter, Olan gets caught up in a mob looting at a rich man's house. She's summarily rounded up for execution by the army, but is saved at the last minute. Her good fortune, however, is that she found valuable jewels at the looting site that affords her and her family the opportunity to return to their farm to start over again. The newly found wealth transforms Wang Lung. He becomes selfish, self-centered and takes credit for the find. He becomes a very rich farmer but that only makes matters worse as he increasingly becomes more unappreciative, arrogant and difficult to reason with. He loses touch with the basic things in life that money can't buy: loyalty, commitment, trust, fairness and honesty. As punishment, nature once again turns the table on Wang Lung by sending a plague of locust to destroy everything he has. Brought to his knees, Wang Lung enlists the aid of all friends, former friends, workers, and family. With all that help, he succeeds in saving the farm. From that experience, he once again returns to humbleness and an appreciation for the basics in life.",1 +9684,"David Aames is a rich good-looking guy who lives in New York City. When his 'sleeping partner' Julie Gianni gets very jealous after David falls for Spanish beauty Sofia, she gets David into her car and tells him that he's the only guy she loves and wants to be with, but seeing as he's in love with Sofia, she decides to commit suicide with David in the car with her, by driving off a bridge. David survives the crash, but is left with a disfigured face. He is then charged with the murder of Julie. The thing is, David doesn't know what's real and what's not as he keeps having these strange dreams (Most of which are actually nightmares.) and flashbacks, some of which just don't make sense to him. Everything will soon come back to him though as he's begins to find out the truth.<br /><br />Well, there's an all star cast here, including Tom Cruise, Penélope Cruz, Cameron Diaz, Kurt Russell, Jason Lee and Noah Taylor who all give good performances in the movie. In the movie they all put off different things about there characters, like happiness, sadness, angry, etc. really well. There's also a cameo in the movie from the brilliant, Steven Spielberg.<br /><br />Vanilla Sky is a well made, different, interesting and original movie which will leave you talking about it a lot after it's finished. It's not just a thriller, but it's a real psychological thriller. The trailer for the movie is really good, but the movie is so different from what it might be made out to be. It's been directed very well and there were a couple of really great scenes here too. All in all, an enjoyable movie which should be really be paid attention too. They are sure making a lot of ""Are they dead, if not who is dead"" movies recently.",1 +2388,"It all started with True Heart Bear & Noble Heart Horse get the club to safety. Noble Heart Horse meet Dawn & John & took them to see True Heart Bear. Later, The care meter went down more & True Heart Bear & Noble Heart Horse check to see if it Dark Heart but they can't go unless the club at care for so they ask Dawn & John to care for the club. After True Heart Bear & Noble Heart Horse Come back, They send Dawn & John back to camp. Than the club & cousin bears have grown up to get ready to fight Dark Heart. At the end, Dark Heart kidnap all the care bear & the kids (Dawn & John) have to tell Christy that Dark Heart is evil. Than they work to together to save the Care Bears. Later, True Heart Bear & Noble Heart Horse found out it Dark Heart shadow & return to care land to find that their gone. The Kids (Dawn, John, & Christy) come but they was not powerful to stop Dark Heart. True Heart Bear & Noble Heart Horse come to help Dawn, John, & Christy to free the other care bears but Christy got in the way & was hit by Dark Heart magic. Than Dark Heart saw Christy got hit & stop fighting the care bear in order to help her but he can't because Dark Heart (himself) don't have the power of caring to save Christy. The care bears & the kids help Dark Heart save Christy. Now Dark Heart starting to care & became a real boy to fall in love with Christy. Dark Heart is now a real boy & help out Christy to work out in camp.<br /><br />This is a great move ever & the best Care Bears Movie I ever seeing.<br /><br />I like all the care bears movies & I can't wait to see ""Care Bears: Big Wish Movie (2005)"".<br /><br />Who like this movie?",1 +13197,"This so-called ""documentary"" tries to tell that USA faked the moon-landing. Year right.<br /><br />All those who have actually studied the case knows different.<br /><br />First of all: there is definitely proof. When the astronauts was on the moon, they brought back MANY pounds of rock from the moon - for geological studies. These where spread around the world to hundreds of labs, who tested them. And they all concluded that they came from the same planet, not earth: because the inner isotopes of the basic elements are different from those found on earth, but similar to those calculated to be on the moon. I.E. the conspiracy theorists never studies anything: they only take the thing that fit into their theory and ignores the rest.<br /><br />Another wrongful claim from them is that their was wind in the hangar where they shot the moon landing, I.E. the flag moves. There is a logical explanation: the astronaut moved it with his hand, so it moved. And what proves this: well, if the conspiracy theorists even studied the footage, they would see that the flag NEVER moves after the astronaut have let it be, I.E. the conspiracy theorists are bad-scientists, they cant study a subject properly, or only studies it until they have what they came for, so that they can make a lie from that, and make a profit (I.E. this so-called ""documentary"").<br /><br />A claim says that it cant possible have been filmed on the moon because all the shadows come from different places, because there are different light-sources, the artificial lighting from the studio. Once again the conspiracy theorists are wrong (as usual), the same would happen in an earth desert at night, with no light-sources. But i doubt that any Conspiracy theorists have ever been outside their grandmothers basement for more than how many days a Star Treck-convention is held over.<br /><br />The Conspiracy theorists are in denial, BIG TIME. They only see what they want to see. So they make up all these lies to seem important - that is a fact.",0 +24628,"This film is justly famous as one of the most horrible examples of propaganda ever produced. The insistent equation of Jews with disease is simply<br /><br />pathological, and even worse it almost becomes believable for brief seconds<br /><br />through its sheer repetition. The fact that something this crude works, even<br /><br />briefly, is an object lesson in itself. You have to have a strong stomach and a firm grip on yourself to sit through this, and I wouldn't recommend trying unless you have a good reason.",0 +3953,"I checked this out as an impulse when browsing through the movie store and couldn't have been any more pleasantly surprised! My mom and I watched this film together, and we thoroughly enjoyed it. It isn't the typical ""chick-flick"" with a sappy love story and tears all the way through, but it definitely touches a nerve in the twist at the end. It's an ending where, although unexpected and tragic, the movie's overall effect is not harmed by it. I think Reese Witherspoon was a great actress even in this film, her debut, and this is definitely worth watching! I didn't recognize many of the supporting actors, but they all play their important supporting roles well. ""The Man in the Moon"" is such an believable story about a young teenager falling in love for the first time. Most women can definitely relate to everything-from Witherspoon's words, her subtle glances, and her not so subtle emotions (raging like the typical teenage girl). While she's playing a character confused about love, she does not come across as silly and immature, which was much appreciated considering many movies today.",1 +14524,"I thought Harvey Keitel, a young, fresh from the Sex Pistols John Lydon, then as a bonus, the music by Ennio Morricone. I expected an old-school, edgy, Italian cop thriller that was made in America. Istead, I got a mishmash story that never made sense and a movie that left me saying: WTF!!! Too many unanswered questions, and not enough action. The result: a potential cult classic got flushed down the toilet. Keitel and Lydon work well together, so maybe Quentin Tarantino can reunite these guys with better script. Oh, and the Morricone score: OK, but not memorable.<br /><br />Overall, not a waste of time, but not a ""must see"", unless you are a hardcore Keitel fan.",0 +5742,"While rehearing Carmen of Bizet, the middle-aged choreographer Antonio (Antonio Gades) brings the sexy Carmen (Laura del Sol) to perform the lead role. Antonio falls in love for Carmen, who is an independent and seductive woman incapable to accept a possessive love. When Carmen has an affair with another dancer, Antonio is consumed by his jealousy like D. José in the original opera, entwining fiction with reality.<br /><br />""Carmen"" is another great movie of Carlos Saura's trilogy dedicated to the Flamenco dance. The dramatic love story is developed with the lives of the artists entwined with the characters they are rehearsing, and many times is not absolutely clear whether what is happening is reality (with the dancers) or fiction (of the play). Paco de Lucia is another attraction of this original version of the famous Bizet's opera, which is based on the novel of Prosper Mérimée. My vote is seven.<br /><br />Title (Brazil): ""Carmen""",1 +2516,"""Tintin and I"" first of all struck me as a masterpiece documentary. The photography and the editing are truly breath-taking (almost anti-Dogma).<br /><br />We follow the life of Tintin drawer Hergé through an open-hearted interview from 1971. The Tintin series was drawn on the background of the great ideological fights of the twentieth century. In the midst of these Hergé has his own demons to fight with, and much of his drawing activity seems like an attempt to tame these and to escape into a world of perfection.<br /><br />Even though there are spectacular photographic panoramas of drawings from Tintin albums and also some reconstructions and reading of passages from the albums, the story of Hergé is told entirely through interviews and archive material, and never through reconstructions.<br /><br />Hergé lived the turbulent life of a true, suffering artist. But the fantastic world that came of his imagination will continue to amaze readers again and again.",1 +9774,"Short, but long enough, Cat Soup is a very wild trip to watch. One day, I was just searching though my On-demand list through the anime section and came across it, and decided to watch it. I spent the whole time basically sitting with my jaw agape. The whole time I was either vacant of thought, or had a fleeting one which screamed ""TURN IT OFF!!!"". But I didn't. And actually, I'm glad I did.<br /><br />The animation is stunning. Very artistic, odd and dark. I personally loved it for the amazing animation, but the seemingly vacant story behind it is equally compelling for myself.<br /><br />A young boy--well, cat--goes in search of his sister's soul. In the first part she's lying sick in bed, and is soon paid by a visit from a sort of grim reaper. Her soul is split in half. One is regained by the cat boy while the other half is lost.<br /><br />Then the rest of the film is slightly lost to me, honestly. I expect they go back, and their world is... perhaps slowly falling apart? Maybe her absence of soul is the answer behind this, for the rest of the film contains various stages of which the world's in. First there's a giant flood, and next it dries up into a bleak desert, and then everything freezes (thanks to either what is God or fate, as you will see). Then I believe they find the sister's soul in the form of an orange flower. After that, the whole world disappears. Haha, totally didn't get that, but it sends shivers down my spine each time.<br /><br />Despite it's seemingly random scenes, I'm sure there's a deeper message behind it if you watch it enough and do some research. Personally, I LOVE trippy stuff like this, and would love to spend time doing that just to understand it. But to some people it's probably not their cup of tea. It comes off as highly disturbing, so if you like your straight forward anime, this is not a film for you. If you have an open mind however, I highly recommend this movie.",1 +4068,"This movie strikes me as one of the most successful attempts ever at coming up with plausible answers for some of the nagging questions that have cropped up in recent scholarship concerning the ""Passion"" (suffering and death of Christ) accounts in the New Testament. (What motivated Judas if money was not the issue? What could bring the Sanhedrin to meet on a high holy day? Why did Pilate waffle?) It is a movie for the serious, thinking Christian: fans of ""The Passion of the Christ"" will no doubt be disappointed by the lack of gory spectacle and arch characterization. As for myself, I find the portrait painted here--of the willingness of ordinary people to so blithely sacrifice common decency when their own self-interest is at stake--far more realistic and deeply unsettling. (The disinterested, ""just doing my job"" look on the face of the man who drives the first nail in Christ's wrist is as chilling as any moment in film.) The film makes no claim to ""authenticity"", but the settings and costuming invariably feel more ""right"" than many more highly acclaimed efforts. It is a slow film but, if you accept its self-imposed limits (it is, after all, ""The Death""--not the Life--""of Christ""), ultimately a very rewarding one.",1 +15582,"Words fail me. This film was extremely difficult to watch and in hindsight I really wish I hadn't done it. Although I attempted to sit through it until the end credits I have to admit I couldn't last for more than hour, so my opinion could be unfair. However, this film would require the most impressive final third in the history of film-making in order for it to be given a review which is anything but vicious.<br /><br />Please do not watch any part of this film.",0 +18379,"Like wearing a hair shirt. Positively, absolutely, without a shadow of a doubt one of the worst movies ever. Pure torture. Zero stars out of ten. One long, tedious, labored, pretentious, self-conscious, theatrical, and leadenly artsy scene after another. Intended to be dreamlike and impressionistic, the soul bared, it is, instead, morose mush. <br /><br />Half-naked, father and son grope and whisper to each other like lovers. ""Homo-erotic"" is the point, loud and clear. OK, so what? <br /><br />Repeated more than once by the son is the line, supposedly lifted from ""Lives of the Saints,"" ""A father's love crucifies. A loving son lets himself be crucified."" The parallel to god and his son, Christ, is heavy-handed, irrelevant, and bombastic, like everything else here. <br /><br />Some reference points to the theme of Russian filiality: ""Mother and Son"" (1997); ""The Return"" (Andrei Zvyagvatsev, 2003); ""Little Odessa"" (James Gray,1994); Turgenev, ""Fathers and Sons""; and, of course, Dostoyevsky, ""The Brothers Karamazov.""<br /><br />Credits in English indicate intended international distribution, meaning that the excuse cannot be used that you have to be Russian to understand this mess. <br /><br />This is nowhere near as accomplished or compelling as Sokurov's last, ""Russian Ark"" (2003).<br /><br />As in his ""Mother and Son,"" an equally powerful soporific, some scenes are filmed from distorting mirrors, though not as interestingly. The film is almost monochromatic, shot from start to finish through beige filters, making it as visually as it is dramatically numbing. A soft-focus haze only adds to the drugged feeling.<br /><br />An annoying soundtrack drones on, never shuts up, like a tape loop. An old radio constantly plays in the background. Russian Romantic melancholy swells endlessly as ""themes based on Tchaikovsky."" The presence of a ""sound designer"" (Sergei Moshkov) signifies, of course, that all those irritating little sounds, radio static, noises, distortion, and such, are ""designed."" <br /><br />It's hard to believe someone (Sergei Potepolov) actually wrote this thing. It all seems as arbitrary as traffic, as if improvised by bored actors, popping out of nothingness into nothingness.<br /><br />Modern art has finally succeeded in signifying the thing without being the thing, so that what we behold is the idea of the idea, empty as a shell, but not even a shell, merely the idea of a shell. Could one ask for a better definition of decadence?",0 +23754,"This movie was o.k. but it could have been much better. There are some spooky moments but there aren't enough of them to make me ever want to see this movie again. There are some scenes you could fast forward through & not miss anything. The biggest flaw is that it is so predictable, & that is the reason why I rated it so low. It's watchable but don't expect anything great.",0 +12281,"""Batman: The Mystery of the Batwoman"" is about as entertaining as animated Batman movies get.<br /><br />While still true to the feeling of the comic books, the animation is done with a lighter spirit than in the animated series. Bruce Wayne looks much like he has before, but now he appears somewhat less imposing. The Dick Grayson Robin has been replaced by the less edgy, more youthful Tim Drake Robin.<br /><br />Kevin Conroy, as usual, invokes the voice of Batman better than most live action actors.<br /><br />Kelly Ripa did a much more decent voice-acting job than I was expecting.<br /><br />As in the live action Batman films, the movie lives or dies based on the quality of the villains. My all-time favorite, the Penguin, is here. His design is sleeker than it has appeared before, hearkening more to the Burgess Meredith portrayal of the '60's than the Danny DeVito portrayal of ""Batman Returns."" David Ogden Stiers is the perfect choice for the Penguin's voice. The Penguin is finally portrayed as a cunning sophisticate, just as he most commonly appears in the comics. Hector Elizondo's voice creates a Bane who's much more memorable than the forgettable version in ""Batman & Robin."" And finally, Batman has a descent mystery to solve, putting the ""Detective"" back in ""Detective Comics"" (that is what ""DC"" stands for, after all.) The revolution to the mystery is a delightfully sneaky twist.<br /><br />The score adds to the mysterious ambiance of the movie. It sounds like a mix between the score from ""Poirot"" and the score from ""Mission: Impossible."" All in all, it's more entertaining than your average cartoon.",1 +17957,"""La Furia del Hombre Lobo"" forms a completely stand-alone storyline which doesn't seem to fit in at all with the previous Waldemar Daninsky movies. Some have commented that this movie is supposed to take place before the events of ""Werewolf Shadow"", although it was released afterwards ... they may be right, I'm not sure. Anyway, in this movie Waldemar Daninsky is bitten by a yeti-like creature in Tibet (great dialogue here -- ""It was a yeti. But that's impossible. I'm a scientist and these things don't exist. It was a hallucination. That's all."") and although marked with the sign of the pentagram, he is able to prevent the change into a werewolf until he discovers that his wife has been cheating on him. Changing into the beast one night, he kills both her and her lover before running out into a storm and being electrocuted. It's not long before he's resurrected by a dominatrix university professor who is conducting some kind of unfathomable experiments with mind control. He is taken to the underground cellar of a castle where the subjects of these experiments live like chained animals.<br /><br />First of all -- Jacinto Molina, Paul Naschy, whatever you want to call him, he's a fine actor and cared passionately about his work. No matter how flawed these movies are, you can always rely on him for a decent performance. The rest of the cast seem good enough, but it's hard to tell when they have a half-assed voice-over dubbed over all their lines. And that was really the main problem for me ... many of the voice-over artists they used were just awful, awful, awful. Whenever I chuckled during the movie it was at the inept way that they delivered their lines (they seem to constantly refer to the hero as ""Waldeman""). But unfortunately it's almost impossible to find subtitled copies of Naschy movies, although they're sometimes available in the original language without subtitles.<br /><br />The directing of Jose Maria Zabalza seems sort of hit-and-miss ... there are some great visual ideas in some scenes, while others are badly constructed and poorly edited, particularly in the final scenes when it really counts. The reason for this, was that Zabalza was apparently drunk most of the time while on set. He allowed his fourteen year old nephew to rewrite Molina's dialogue, used extras without his permission, and spliced several shots from Molina's earlier movies. All of this pretty much ruined any chance this movie had of being one of Molina's best works, and it's no surprise that the two of them never worked together again.<br /><br />But it's not all bad news, as there are some good ideas here. Some aspects of the storyline make an interesting psychological drama with the werewolf as a metaphor for jealousy and rage. The 'werewolf as a yeti' idea is one that returned in Molina's later work. Some pretty horrific and surreal stuff goes on down in the cellar, and there's also a very memorable sequence about half way through the film where Daninsky runs from house to house through a village, slaughtering or molesting innocents as he goes -- one scene is particularly intense, but it's actually lifted straight from Molina's first movie, ""La Marca del Hombre-lobo"" along with a few other shots. I actually found the movie on the whole to be very entertaining, although there are some problems with the Front Row Entertainment version, such as pretty obvious cuts (although some of it may simply be due to the director's lack of continuity). Gods knows what omissions there are -- I'll probably try to get my hands on the uncut version at some stage in the future.<br /><br />This is a overall a decent piece of vintage Naschy which experienced fans might enjoy, but it could have been much better and so probably wouldn't make a great introduction.",0 +7515,"I watched part one two days ago and today I saw part two. Of course the two parts are worlds apart so I am a little shaken by all that I just saw. I felt consumed by the knowledge of the inevitability of Che's death; for me, it clouded the entire movie. I suppose that is exactly what Soderbergh wanted us to feel, the slowly evolving inevitability of his death. Part Two was so downbeat compared to, again an inevitability but in Cuba it was positive and in Bolivia it was so negative. The politics of the movement in Bolivia were only alluded to but rarely confronted didactically. For me the memorable scenes were all at the end of the film: the confrontation with the jailer and the milder talk with the Bolivian official where that official questions Che about the failure of the peasants to support his revolution. I had not considered the national differences playing as much role as they did in the conflict, Argentine versus Bolivian. I thought Soderbergh dealt admirably with the inevitable problems of supply in a revolutionary struggle; how do you get food without antagonizing the peasants who do not have enough themselves. I was struck by how hard it would be to try something as Che tried. I guess it is all in the timing; is there sufficient anger against the government to begin the movement; in Bolivia there wasn't. Che realized the terrible corundum of revolutionists in his letter to Fidel read at the beginning of the film: If not now, when, 50 years from now. A very thought provoking and well done film; make every effort to see it.",1 +3222,"An excellent series, masterfully acted and directed, but unloved (I am told) by Mr Deighton and withdrawn by him after a single presentation. It is now only viewable in private collections, and via the British Film Institute at special request. Very unfortunate, as Ian Holm's nuanced portrayal of the weary-but-determined Bernard Samson is superb; one of his very best performances. The supporting cast, including the young Amanda Donohoe and Hugh Fraser, are superb. With Mel Martin playing the conflicted and traitorous wife, and Michael Degen as the mercurial Werner, the story positively simmers with the tragic and fateful personal consequences of the great game.",1 +18817,"I gave this movie a rating of 1 (Awful). The only reason that it should even get a 1 instead of a big -0- is Ben Kingsley, who always shines not matter what terrible material is thrown his way.<br /><br />Mira Sorvino is so out of her element here that as a viewer one simply can't get over the fact that she is even in such a piece.<br /><br />Stupid, stupid story and horrible production. Do NOT waste your video rental $.",0 +18036,"Weak,stale, tired, cliched; wants to be Basic Instinct, but misses opportunity after opportunity for fresh perspectives, new insights. Insipid, trite, grotesque, and without the possibly-redeeming value of brevity; oh, wait...it was only 90 minutes long...it must have just *seemed* a lot longer! I'd rather clean bus station toilets with my toothbrush than have to sit through this again. I'm expressing an opinion here: I guess this means I didn't like it.",0 +14499,"It was great to see some of my favorite stars of 30 years ago including John Ritter, Ben Gazarra and Audrey Hepburn. They looked quite wonderful. But that was it. They were not given any characters or good lines to work with. I neither understood or cared what the characters were doing.<br /><br />Some of the smaller female roles were fine, Patty Henson and Colleen Camp were quite competent and confident in their small sidekick parts. They showed some talent and it is sad they didn't go on to star in more and better films. Sadly, I didn't think Dorothy Stratten got a chance to act in this her only important film role.<br /><br />The film appears to have some fans, and I was very open-minded when I started watching it. I am a big Peter Bogdanovich fan and I enjoyed his last movie, ""Cat's Meow"" and all his early ones from ""Targets"" to ""Nickleodeon"". So, it really surprised me that I was barely able to keep awake watching this one.<br /><br />It is ironic that this movie is about a detective agency where the detectives and clients get romantically involved with each other. Five years later, Bogdanovich's ex-girlfriend, Cybil Shepherd had a hit television series called ""Moonlighting"" stealing the story idea from Bogdanovich. Of course, there was a great difference in that the series relied on tons of witty dialogue, while this tries to make do with slapstick and a few screwball lines.<br /><br />Bottom line: It ain't no ""Paper Moon"" and only a very pale version of ""What's Up, Doc"".",0 +15548,"Yes, definitely better than my viewing of Death Tunnel. Actually some of the deaths were pretty original and the gore was decent. It was kind of like Wrong Turn meets the Hills Have Eyes.<br /><br />BUT: 1.) When the ""kids"" (high school or college?) are discussing horror movies in the kitchen, everything Shae says is almost an exact quote from Scream (1996). The thing about the big-breasted girls etc.<br /><br />2.) Was Steve NOT a bootleg Randy from Scream? 3.) Besides the fact that it took place in October, what the hell did the movie have to do with Samhain? Pretty unnecessary if you ask me. I find it humorous when I see those horror movies from the 80's that explain away loose ends by pointing the fingers at the druids or a pentagram.<br /><br />4.) Wow they made a Sam Raimi reference!!! 5.) Why was Gary and his sister in the movie? They're characters had nothing to do with anything. And hes so psychic that he couldn't even see his OWN death? 6.) When Gary was being killed in the bathroom (at that point, the deaths became simply Troma-licious) how could she hear the screams when she was downstairs but not hear them when she was standing outside the door? 7.) Gary's sister commented on Haggis- thats primarily a Scottish dish, not Irish.<br /><br />8.) So the lesson is if you ARE like Shae and don't have any fun or crack a smile through the whole film, you'll be the one to live? 9.) The mutants were pretty cool, but they looked like walking dishes of Chili con carne.<br /><br />10.) When they brought in Gary's sister, did they forget that Steve HAD been strapped there and wonder where he went? 11.) Was there not more than one killer? Shae beat that one, but never encountered any more of them.<br /><br />12.) What was with the flashbacks to those other people? Half of them Shae didn't know if they were dead or alive, so what was with that? 13.) Why didn't they kill Gary and his sister before? 14.) Why did no one ever call the police? And apparently everybody KNEW those people lived in the woods, why did they never organize some kind of raid? 15.)As far as I know, they were not zombies OR vampires- so how could she ""turn into"" one at the end? I'm with everyone else on the giant ""huh?"" at the end.<br /><br />Way better than death tunnel, but still quite sloppy. I still don't understand why they even placed it IN Ireland, considering Samhain had close to nothing to do with the plot.",0 +15725,"It just seems bizarre that someone read this script, and thought, ""This is funny! I mean, it's so hilarious it just has to be made!"" Who was this person? Is he or she the person really responsible for this? Are they the one's who owe me for my time, more so than the director/writer?<br /><br />This film stinks in most every way possible. There's no one shred of good dialogue, and not one likable character. And the story...<br /><br />I prefer the 2nd worst movie ever, Hulk Hogan's ""No Hold's Barred"" to this by quite a considerable degree. It seems almost Shakespearen in comparison.<br /><br />The ending is padded out with several minutes of outtakes, and it's still under 80 minutes. The outtakes include cast members laughing at the 'hilarious' mistakes they've made, and things that went wrong on the set of this 'comedy.' Glad to see someone laughing in someway, with some connection to this 'film.'<br /><br />Nothing in this film is funny. Nothing. It just goes on, and on. It's truly that lame. I love films that are so bad they're good. This is so bad it's...something, but I don't know what, and hopefully will never find out.<br /><br />Amanda Peet doesn't suck outright, and is in fact the only half good thing about this wannabe film. But, that really means little.<br /><br />Avoid at all costs.",0 +21731,"About five minutes in, and I saw where this was heading. Bunch of high school kids get annoyed by the school's administration and thoughts of rebellion start fomenting. I said to my girlfriend: if it gets below a 5 on IMDb, I'll go and read a book. It got 5.0, so she persuaded me to go on watching. What are the good things? Well, it is a good thing this film does not have a story, because you would surely be distracted from it by the editing. It's like the student's drawing that was torn up by one of the teachers, all the footage for this film was cut up in a freak accident involving a meat-grinder, and left half the stock destroyed, with the other half spliced into two-second bits. Even in a ten-second scene of the local TV news, there are about six cuts and three different angles. And then there are the montages. These are all set to electronic music, which forewarns you of yet another montage, so that like Pavlov's dog you start cringing every time you hear it, which is about every three minutes. Oh, I was supposed to say what's good about this film. Well, the film was shot very well, with a nice color palette, that nicely matched the emotional content - such as there was - of the scenes. Okay, now with the film's major flaw, and it wasn't the story, or lack thereof. The director made that fatal mistake of leading you astray about people and situations, not by clever storytelling, but by being highly selective about what to show about the main characters. That's just cheating. I guess he did it in order to make the central character more likable. But it just became plain annoying. If the story is full of holes, it's no good trying to patch it up by misdirecting the viewer. And often there wasn't even any point to it. And then the ending. Basically, the main villain of the peace turns out be an okay guy, if a coward. Plus it turns what seemed to be the whole point of the movie, that you should stand up for a just cause on its head, by the already mentioned misdirection, and makes it into a point about the nature of revolutions, that was already made, and much better, by animal farm. It also committed what I call the Bill Cosby sin: no matter how things may seem at first, in the end adults are always right, and children always wrong. And let's face it: unless you're me, that's just not true.",0 +24595,"Boy, this was one lousy movie! While I haven't seen all of the Burton/Taylor collaborations, I can say with confidence that this is the worst. This rich but ill woman (Taylor, of course) owns this beautiful island in the Meditteranean, ruling over a put-upon staff when she's suddenly visited by this traveling poet, who mouths platitudes. In fact, the whole film is just a talk fest, with much of the talk making no sense. Even in 1968, no one could make heads or tails of this pretentious nonsense, and the passage of time makes that even more clear. If it weren't for the beautiful cinematography and scenery, it would deserve a negative rating. The only thing this film is good for is its unintentional laughs at the expense of the stars.",0 +14228,"Oh, those Italians! Assuming that movies about aristocrats with weird fetishes, castles drowned in gothic atmosphere, and back-stabbing relatives trying to get their hands on an inheritance are inherently interesting to all! If you've seen one film of this type, you've basically seen them all (the MST3K favorite ""Screaming Skull"" fits the mold, too)...and ""The Night Evelyn Came Out of the Grave"" is formulaic, by-the-numbers, and dull as hell. Even the luscious Erika Blanc is put to waste here.<br /><br />zero/10<br /><br />",0 +5787,"Visually stunning and full of Eastern Philosophy, this amazing martial arts fantasy is brought to you by master director Tsui Hark, the man behind some of the best films Hong Kong cinema has produced. The special effects are beautiful and imaginative. The plot is a bit on the cerebral side, but is a refreshing change from films that treat their audience as if they were morons. If thinking is not your forte, however, this may not be your movie. Maybe you should go see the latest from the Hollywood studio's no brain club, but if you are looking for something more, he's where you will find it.",1 +6503,"There is one detail, which is not very common for Jackie Chan movies, but which is present here. It has some very tough and serious atmosphere about it while the funny elements are present too. Jackie is menacing and psychotic here. He is not a hero who is attacked and only then fights back (in a usual laid-back pattern), but he is the one who can go and start the tumult. His manner of hitting that evil guy in the glasses is amazing. Every time it goes ""crack!"". I also especially enjoy the scene when Jackie goes to the pub and thrashes the villains who had fronted on his girlfriend. It's one of the best blitzkriegs put on screen. Besides, the whole scene is shot with the background of some action character painted on the wall (it also looks like a poster of ""rabochiy"" from our Soviet era) and some lines in Russian on the left (I noticed that quite accidentally). That looks terrific (and nostalgic for Russian people). I also like when the windows are being smashed in the movies. Here there's a lot of this stuff. It's quite amazing watching the characters falling/jumping/running/driving through all manner of panes.<br /><br />All three movies are great. I had been preparing myself to see the down-slide of the quality but I saw a perfect trilogy with sense and incredible stunts (and not only Jackie Chan's character appears in all three movies - that's also excellent and keeps continuity up).<br /><br />I would like to describe each movie just in a few words: No.1 - great (in all aspects - it is one gripping story from the very beginning to the very end) and funny (many scenes are ridiculous); No.2 - raging (Jackie is really *beep* off here) and painful (Jackie gets tortured); No.3 - unbelievable (the woman that fights alongside with Jackie is incredible) and bombastic (should I mention a lot of guns and explosions?).<br /><br />As to the rest - much has been mentioned by the others.<br /><br />It's a trilogy that can be watched over and over again (at least by me). Its place is in top 10 among action/comedy jewels. Finally it's been released in Russia on DVD (the 2nd film has the best options - the Chinese/Russian soundtracks and English/Russian subtitles).<br /><br />Solid 10 out of 10. Thank you for attention.",1 +4973,"I don't remember this film getting a cinema release over here. I only saw it when it came onto cable. The film deals with the dehumanisation of children into killing machines. Specifically one person, the way he gets replaced and dumped (literally) into an off-world community where he finds himself unable to cope with coming to terms with who he really is and what he feels.<br /><br />Seems to me that a lot of people expected this to be Rambo in space, and would have been happy if it was.<br /><br />I'm certainly happy it was'nt - Kurt does a fine job of portraying an emotional cripple. The scene where he's sitting outside the compound shows this, albeit the decision for two slow-mo replays detracts from the moment.<br /><br />This is not a classic SF movie in the way that Bladerunner, Alien, Silent running, Logan's run or THX1138 were, however it is unfortunately the nearest I've seen to it in a long time.<br /><br />He changes in the movie to a believable degree, he does'nt crack Arnie one liners, he does'nt become Snake Plissken and there is no definative happy ending.<br /><br />That's why this film did'nt do well. It did'nt follow formula, and among a 18-25 year old target American audience, that's unforgivable as it was was'nt what they expected to see.<br /><br />Fear and discipline.<br /><br />Always.",1 +15505,"I have rarely been subjected to such outright nonsense in a film that is supposed to be based on a historical figure. A horrible joke of a film, I cringed throughout. Terrible, trite, distorted and riddled with outright lies and half truths.<br /><br />The famous Hitler biographer Ian Kershaw was to originally be a consultant for this film. However, he found the script to be so historically inaccurate and ridiculous that he refused, and also demanded they stop using his name as a source (it embarrassed him to think people would think he was involved).<br /><br />One scene shows Hitler beating his dog. There is not one source for this. Hitler loved animals above people. He brought in the strictest animal welfare laws in Europe, banned vivisection and animal experimentation. He was also a vegetarian.<br /><br />The film turns his gaining of the Iron Cross into a farce, involving bribery. Utter lies. He was awarded it for repeated acts of bravery over a long period of time.<br /><br />There are no historical documents showing that Hitler ever had a sexual relationship with his niece. Not one.<br /><br />Apart from these, Hitler is portrayed as a rabid simpleton in this garbage flick.<br /><br />If he was even half as ignorant, demented and thick as he is in this nonsense film as in real life you would not even know he had ever existed. Never mind become the leader of Germany.<br /><br />Honestly, this film was utterly terrible.<br /><br />Go watch Downfall and give this a very wide berth.",0 +14930,"While I can't deny that his movies are often entertaining, I have always personally felt that Martin Scorsese is just a little overrated in his abilities. His use of flashy stylistics in a good number of his movies seems to scream ""Look at me, aren't I an imaginative director?"". His best film that I have seen is the one with the least added flourishes, the superlative ""Raging Bull"".<br /><br />For this remake it appears it was business as usual, though. The dull film stock to convey a 1950's setting was so bland as to be a distraction in itself. The melodramatic close-ups combined with the sub-par imitation of the classic ""Psycho"" score are more likely to provoke smirks of derision than a sense of atmospheric terror. The score for ""Psycho"" was brilliantly unnerving, this 'homage' just sounds shrill and annoying. Even the cast, who can be decent at times, deliver histrionic performances that just scream 'caricature'; the notable exception to this being an intelligent turn by Lewis as the impressionable teenage daughter of the Bowden family.<br /><br />The worst acting offender here is surprisingly De Niro. Sure, he looks suitably menacing but as soon as he opens his mouth that aura just drains away. Now I'm no expert on American accents, me originally coming from near Manchester in England an' all, but surely he could've come up with a more convincing Southern drawl than that? Being the gifted physical actor he is, he almost overcomes this fatal flaw, but not quite. It was disconcerting for me, as a De Niro fan, to be wishing he was off screen, rather than rapt at his performance.<br /><br />(POSSIBLE SPOILERS.)<br /><br />The over-the-top style of the whole movie extends to the ridiculously overblown finale. When will Scorsese learn that underplaying the situation can sometimes build tension just as effectively as giving the viewer a visual and sonic bombardment? I also thought that he was too respected a reputation to resort to the 'killer-not-dead-yet' cheap trick that less talented individuals might employ.<br /><br />All in all, a thoroughly ridiculous 'thriller'. Scorsese and De Niro have done MUCH better work together.",0 +20547,"OK..this movie could have been soooo good! All generations have been exposed to Thunderbirds and have come to love it and this film had some of the features one would look for in a good thunderbirds movie. The craft themselves and Tracey Island were realistically transferred to the big screen, whilst still keeping to the designs we fell in love with. Sophia Miles was, simply, fantastic, as Lady P and Bill Paxton, whilst not exactly who I envisaged Jeff Tracey being, was solid enough...but then the adults were taken out of the equation and we were asked to believe 8 year olds could fly 200 tonne machines.<br /><br />It's not so much the fact that the movie was centred around the children that made me feel like Jonathon Frakes was slapping me with a wet fish and laughing at my hard earned money spent on the film, it was the fact that Alan Tracey was so obnoxious in the film and that he seemed to be as able to fly the machines as well as his brothers...who were at least 19/20. Seriously, these are some pretty damn simple machines to use if this is the case.<br /><br />The film didn't seem to know whether it wanted to be serious or farcical. It tried to pay homage whilst satirising and it just generally fell flat on its face. 3/10 (2 for the machines, 1 for Lady P)",0 +16488,"This film is a calculated attempt to cash in the success of Sex in the City and Four Weddings and a Funeral. In fact, if they'd called it Sex at a Funeral, they might have done better at the box office.<br /><br />But the film falls between two stools and can't get up. The characters spout improbably bright dialog, but never act in any way remotely recognizable as human. One arbitrary, senseless action follows another to advance what passes for a plot, and one soon tires of the falsity of the whole enterprise.<br /><br />Andie MacDowell gets points for acting her little heart out, but the performing honors are stolen by Imelda Staunton, as of all things, a police detective (don't they have a height requirement over there?). Ms. Staunton seems unable to make a false move. Would that we could say the same about the writer-director.<br /><br />If Notting Hill annoyed you as being bogus, stay away from this one. Phonus bolognus on the half-shell.",0 +18760,"Satan's Little Helper is one of the better B Horror movies I have seen. When I say better I mean the story. The film hatches a new plot, something that's not so cliché in the Horror genre - something fresh. But there are also some ridiculous questions that come along with it. Questions you will be asking yourself throughout the movie.<br /><br />The film first caught my attention while I was cruising the Horror section in HMV. I was tired of all the so called ""terrifiying"" Hollywood blockbusters and wanted something different. The cover art for Satan's Little Helper immediately caught my attention. As you can see, the image draws you in - it's chilling! I knew it was a straight to DVD release - but I took a chance. I mean, I just seen ""Boogey Man"" the night before - so It couldn't get any worse! After I watched the movie, I was semi-satisfied. I loved the plot of the movie. It was really creepy how the killer was pretending to be the little boys friend, so he could kill. In some sick deranged way, he actually thought he and the little boy would become partners - a duo of terror. It was a great idea to set the film on Halloween night. This way, no one would think anything of a masked man beside a little kid. They would simply think he was his guardian. But, this is also where the ""plot holes"" begin to surface.<br /><br />If your son came home with a ""friend"" he met trick or treating - that's fine. You wouldn't think anything of it - if he was 9!, or round about the same age as him. If however, he appeared with a strange man in a mask, you would be startled and protective of your child. You would ask the man to remove his mask and identify himself. You would ask why he is with your son. He doesn't know him. You would tell him to please leave. He isn't a family friend. He's a stranger. Now, we're supposed to teach our child not to talk to strangers. In this case, the mum is completely fine with it. Huh? They never seem to think it's a tad odd that the ""man"" doesn't speak - at all. Gruanted they think it's the daughters boyfriend, but after 10 minutes of not talking you would pull the mask off and ask him why he's not saying a word.<br /><br />The film goes down hill from there. The thing that got me the most was, all the mum said was ""Do you want some cider?"". I can't count how many times she says this in the movie. It's like, oh you're dying - we have cider though, it's all good!! The movie started promising, and failed to deliver. It was more of a horror/comedy, and even as that it fails to deliver. I guess you could call it a ""Dud"",""Flop"" etc..<br /><br />The best thing about the movie is the cover art. Though, something tells me that's not worth the 12 dollars!",0 +5883,"I am so glad that i got a chance to see this rare little gem of a movie. I saw it at an independent film festival, so don't expect it to come to your town anytime soon. During the film, i noticed about 10 people get up and walk out. Too bad for them (down here in the south, folks don't like having to read subtitles). The movie starts out slow, but is so rich in dialogue that i never felt bored. When the action finally arrives, i found myself glued to the screen as if i were riding a roller coaster.<br /><br />I also got a big kick of the Chapter Titles appearing before the chapters, especially the ones that introduce the characters as they appear on screen. It reminded me of Zelda (Ocarina of Time) when you face level bosses.<br /><br />If this is the future of ""video game/comic book"" movies, then i welcome it.",1 +17477,"I saw this movie about 5 years ago, and the memory of it still haunts me to this day. I was fully aware at how awful it was supposed to be going into it, so I have only myself to blame. But like most, I didn't believe all the negativity. Being a Sandler fan, it just seemed inconceivable one of his movies could really be that bad. I figured it was just Sandler haters. I couldn't have been more wrong.<br /><br />What we have here is a comedy that does not contain even 1 second of anything funny. That is actually quite an accomplish. You'd think in a 90 minute comedy, they might have accidentally stumbled upon something even remotely amusing. But no, it's just horrible. It's not ""so bad it's good"", its just bad. You cannot laugh at how bad it is, you can only cry. You wait patiently for a joke that will at least make you chuckle, but they never come.<br /><br />Have you seen the movie The Ring? Where the people watch a video tape and die 7 days later? If this movie was on the video tape, people would die instantly, by their own hand, and there would be smile on their face as they realize their agony has ended, and that would be the first smile since they pressed play.<br /><br />You might be inclined to watch it just to see how bad it is, unable to curb your curiosity. Don't. Please don't. Trust me, I'm doing you a favor. There are 2 types of people in the world, those that think Going Overboard is the worst movie ever made, and those that have not yet seen it.",0 +21838,"I'm sorry but I didn't like this doc very much. I can think of a million ways it could have been better. The people who made it obviously don't have much imagination. The interviews aren't very interesting and no real insight is offered. The footage isn't assembled in a very informative way, either. It's too bad because this is a movie that really deserves spellbinding special features. One thing I'll say is that Isabella Rosselini gets more beautiful the older she gets. All considered, this only gets a '4.'",0 +6173,"The mere fact that I still think of the movie a decade later is what really speaks volumes about the film. To me this substantiates Grand Canyon as a film that will touch you in one way or another. I truly believe that before the movie Crash there was Grand Canyon. The major difference between the two films in my opinion is the timing of their release. I'm not going to argue which one is better, but I will contend to the idea that they share the same message. I'd love to hear from those that have an opinion on this subject. I will start a commentary which you can find at http://www.myspace.com/62229249. You may also find me there to post any other topics about movies that we may share, because i have a true love for film.",1 +3274,"Laughs, adventure, a good time, a killer soundtrack, oscar-worthy acting, and special effects/ animitronics like none other, what else could you want in a movie? If you see this will be on the telly, WATCH IT, otherwise, run out now to RENT IT!!!",1 +22479,"Before writing this review, I went back and reread the reviews of others. This movie was a particular disappointment to me, since it features two of my favorite dancers, Gene Kelly and George Chakiris, boasts a score by the often wonderous Michel LeGrand (""Wuthering Heights,"" ""Ice Station Zebra,"" ""The Thomas Crowne Affair""). The dancing was stilted, unmotivated and unoriginal, the songs forgettable, the story a joke. Even the costuming was not particularly flattering. Only the photography correctly captured the proper mood and spirit. I'm glad other people enjoyed ""The Young Girls of Rochefort,"" though I most certainly did not.",0 +21513,"oh my god, i give this film three stars out of ten for the following reasons. the final sequence is once again quite effectively handled and it was absolutely hilarious. that is what it gets those three points for. other than that, it was atrocious. it wasnt meant to be this funny, that much is obvious, but the dubbing, the acting of the dubbed voices, the dialogue they said, where often hilarious. the actions performed, and/or not performed also lead to much hilarity and/or throwing things at the screen. such as when the whole town is being slaughtered and one small group of people stand on a balcony looking on as if they were watching a cooking glass, or the ""attempted"" escapes from the church in which they hole up.<br /><br />evil mayor: i think something is going on outside so you should go upstairs and look out the window.<br /><br />hero: ok.<br /><br />evil mayor: now is my chance to make some idiot go outside and flail around with fire being totally ineffective and getting hacked up.<br /><br />insert sequence in which this occurs.<br /><br />evil mayor: damn, wait, i will get this small child and she will walk outside and cry pappa seemingly obvlious to the fact that those rotten corpses are not just spooky strangers but are actually zombies with no flesh or skin or anything and she will lead them away and i will flee! insert sequence in which this occurs.<br /><br />hero (upstairs): he is trying to escape again, fool, and he has left the door open, he is silly, this is a nice view.<br /><br />woman: where is my daughter?<br /><br />hero (downstairs now): i dont know, i cannot see her anyway and she was not outside because i could not see her despite her being out there and me having a view of the entire neighbourhood and she is standing right outside, where on earth could she be?<br /><br />needless to say, anybody would be throwing things at the screen after 10 minutes of this. so, watch the first film with a couple of friends, having a few drinks, and make sure by the time you get to watching this one, you are absolutely blindly drunk and can just giggle at the stupidity of it all. and there wasnt even any decent gore, such a shame.",0 +4273,"Ulysses as a film should in no way be compared with the novel, for they are two entirely different entities. However, that being said, the film still manages to maintain many of the elements that made the book work, but since it is a visual medium, it is more difficult to pull of stream-of-consciousness. I think this is the best film they could have made with the material... and this is from someone that routinely rants about films not being like their literary counterparts. I recommend the book, but the movie is still entertaining.",1 +2767,"This movie was very good. If you are one who likes to watch horror movies, I recommend it. The acting was very good although I thought that the actress playing Julie could have had more emotion behind her lines. Allan was very good and I thought the cinematography was amazing. I was on the edge of my seat the entire time while my friends were freaking out and screaming. It was a complete success in my opinion and should have made it to the big screen. I give it two thumbs up! I definitely would say that if you haven't already seen it then go rent it. If you have seen it and didn't like it go and watch it again because there are parts that were completely unreal. I also liked how a lot of the movie was filmed around and on my school's campus.",1 +2587,"Before viewing, please make sure you have seen Night of the Living Dead... This might well be THE best 7 minute parody I have ever seen! Absurd, crappy 'special effects' (the rope, the rope!!!), and maneating slices of bread... what more do you need???<br /><br />(Do not watch this movie while eating bread... you might get scared!)",1 +10948,"I know a lot of people don't like this movie, but I just think it is adorable. There's not much I can say, but the movie is a feel-good movie I guess. The songs are beautiful, the costumes are beautiful, the voices are beautiful, and there are a lot of funny lines in the movie, especially as Briggitta learns about the do's and don't's of society. If you like musicals, I'd say you'd like this one!",1 +14887,"Set in Providence, Rhode Island, Feeding the Masses tries to be a satiric look at the role of the media in government. At best, it could be applied to how the US try to control media during the Iraq War, but it ends up feeling hollow. There's never any really tension in the story and the acting never very good. Worst, the direction of the movie is atrocious, focus more on odd camera angles that fail to convey anything beyond ""Isn't this an odd way to hold the camera."" Special effects are pretty bad...at one point video of an explosion is green screened over the city, and it's laughable at best.<br /><br />The film does have a couple bright spots...namely the advertisements for post-zombie services (including a reclamation service and a party bus). But it's far too little to make the film worthwhile.<br /><br />For a better zombie film, try Hide and Creep. It has the same weak production value, but there's much more wit, humor and talent behind it.",0 +12831,"I have to admit that I stuck this one out thinking something would have to happen, besides the dead body in the first scenes... and her disposal of him. I was wrong. It was a cinema verite of Betty hits the Beach encased for the first part by Mordant Morven. I really don't care what young lassies from Scotland do these days, who thy screw, what drugs they take. Visually, the stroll through the Cabo de Gata in Andalucia was pleasant and surely the high point for me. The nadir was the chop shop for her dead boyfriend. As the movie came to a close I had two thoughts... 1. That's all there is? 2. Now I see why her boyfriend killed himself. Rename it. ""Bare Bitch Boredom, or What I did on my trip to Spain."" I'm such a sucker for sticking these things out.",0 +1483,"Jake's Closet has the emotional power of Kramer vs. Kramer combined with the imagination of Pan's Labyrinth. Even the beginning special effect seems to give a nod to Pan's Labyrinth. But this is a story that takes place in modern times, not in a war sixty years ago and in that way it has even more resonance today. Jake's Closet is about a boy, an only child, practically alone on summer vacation, dealing with his family falling apart. It's a horror movie like The Others and The Sixth Sense, a horror movie for the thinking person. If you're looking for a slasher movie, this won't be your cup of tea but if you're looking for a story that is both touching and suspenseful with good acting, this is the movie for you. At the screening I saw, I swear there was one moment where the entire audience screamed. I highly recommend catching this film.",1 +21841,"This is some of the worst acting I have ever seen. I love Almereyda's Nadja, but this is just absolute dreck. Aside from a few moments of interesting cinematography and music this film is just nonstop bad acting and dumb material. Jared Harris is particularly bad, but no one in this is remotely good. The plot is a joke, but not the haha kind. I don't even know if you can forgive movies that are this bad. Please erase the last hour and a half of my life. How did this director make Nadja and Another Girl Another Planet?",0 +52,"To all the miserable people who have done everything from complain about the dialogue, the budget, the this and the that....who wants to hear it? IF you missed the point of this beyond-beautiful movie, that's your loss. The rest of us who deeply love this movie do not care what you think. I am a thirthysomething guy who has seen thousands of movies in my life, and this one stands in its own entity, in my book. It was not supposed to be a documentary, or a completely factual account of what happened that night. It is the most amazing love story ever attempted. I know that it is the cynical 90's and the millennium has everyone in a tizzy, but come on. Someone on this comments board complained that it made too much money! How lame is that? It made bundles of money in every civilized country on the planet, and is the top grossing film in the planet. I will gladly side with the majority this time around. Okay, cynics, time to crawl back under your rock, I am done.",1 +15387,"I got this DVD well over 2 years ago and only decided to watch it yesterday. I don't know why it took me so long as I do like the Inspector Gadget show and even the new Gadget and the Gadgetinis. While it may have a bright color pallet and all the technical sophistication of a modern animated movie, there are some old things missing that bog this Gadget right down the toilet.<br /><br />First of all the classic Inspector Gadget theme song and music is completely absent. The composer tries to compromise by doing a score that sounds similar but it's still just no good enough. The Gadget-mobile is now a talking car, not a car that can turn into a van. Plus it looks a lot cuter and rounder instead of being plain cool. Penny no longer has her computer book and she and Brain hardly make an appearance at all.<br /><br />The plot is non-existent. There's something about a transformation formula and Doctor Claw using for some never revealed evil but that's all I got. What the deal was with the short/giant Italian guy I will never know. It had nothing to do with anything.<br /><br />And if the title is anything to go by, his last case is wrapped up in no way whatsoever. And he stays on the force so why it's called 'last case' is a mystery also.<br /><br />I wasn't impressed at all. This is an affront to a great animated show that is strangely absent on DVD, but don't let that prompt you into buying whatever Inspector Gadget DVDs you can. I sold this mere seconds after finally watching it. No kid will like or appreciate this and no fan of the old show with tolerate it.",0 +15778,"In film, I feel as though it should be more than just art. I think it should be more than that, a way to tell a story on screen. This short from David Lynch tells a story but not much of one. I felt that it was funny but too bizarre to be a comedy. It is good film-making but there really isn't anything else to it. As I've said before, I am a huge David Lynch fan but I get frustrated by some of his work because I don't see a need for it at all. This is definitely my least favorite thing he has done so far but I know he's still got a ton of talent and I am excited to see what he has in store for us in the future. If you like Lynch, check this out but don't be surprised when you don't like it very much.",0 +10596,"Good sequel to Murder in a Small Town. In this one Cash and his police Lt. buddy unravel a sticky plot involving a Nazi criminal, a philanthropic witch, and a family of screw-ups and their wierdo helpers. As in the original, the viewer is treated to a nice little mystery with distinctive sights and sounds of pre-war America. Go see it.",1 +3047,"I thought that Mukhsin has been wonderfully written. Its not just about entertainment. There's tonnes of subtle messages that i think Yasmin was trying to bring across. And yes, it might be confusing to some of you(especially if you didn't watch Sepet and/or Gubra for 76 times).<br /><br />I bet u noticed how they use characters from the two movies before right? Its really ironic how the characters relate. Like the bossy neighbour is that prostitute from Gubra. And the chick at the snooker pad turns out to be the religious and wife of the pious man in the future. <br /><br />And i absolutely love the voice-overs. Its crude yet awakeningly fresh. Like, when they took a shot of the Rumah Tumpangan Gamin signboard, then there was suddenly Mukhsin's voice saying 'Bismillahhirrahmannirrahim..' (the scene when he climbed the tree).<br /><br />It captured Malaysian's attitude(and in some mild way, sniggering at how pathetic it is) portrayed in the character. For example, even the kids can be really sharp tongued(complete with the shrill annoying voice) and simply bad mouth ppl all movie long. And how you can be such a busybody and talk about ppl, when ur own life isn't sorted out. <br /><br />All i can say is, this movie totally reached my expectation if not exceeded it. <br /><br />It kept me glued to the screen, i couldn't even take my eyes off it. Not even to make out in the cinema. Ha ha.",1 +5533,"If you want to watch a movie and feel good about watching it, then Tigerland is the film for you. I love this movie from top to bottom. This movie's picture-perfect scenes look so real; it's almost like a documentary of something that happened in real life but with drama. Boy, I tell you... REAL drama they actually real ""fought"" in one of the scenes (get the DVD listen to the commentary its not obvious). I see this film as a bunch of desperate young men trying to escape an ill-fated destiny, after watching Saving Private Ryan I have an a appreciation of what an ""ill-fated destiny"" is and know exactly how the men in the film feel. I see this movie as a crossbreed between ""Stand By Me"" and ""Saving Private Ryan."" What do men do when they are with a situation that's ""hard pressed"" in real life? Some men go crazy, some men cry, some men through fists, others do drugs, some randomly sleep with hookers ruthlessly trying to eradicate the meaning of love from their life, some try drink the pain away, some jump off buildings or bridges, some feel guilty and others feel so much agony it makes them so sick they collapse - physically. This movie has all those desperate emotions rolled into one ball. But don't get me wrong its not depressing movie, its realistic, its a very very humorous movie, the cocky and funny Bozz (Collin's Character) lights it all up, and on top of that there are about 5 female actresses in the movie; I'll let you figure out what their in there for! With dialogue, war/action sequences, picture perfect scenes along with appropriate music; this movie has it all, like I said: from top to bottom. I don't why Tigerland is heavily under-credited. The best thing about owning the movie is that on the cover it says in big bold writing ""The best film of the year,"" and it absolutely falls nothing short of that. Keep the rare gems coming Hollywood, 10/10.",1 +23479,"I am a huge Charlton Heston fan. He is without a doubt one of the greatest actors of all time, but what was he thinking when he made this movie. Normally if he made a bad movie I could blame it on the screenwriter or director, but in this case it's all him. The suckiness of this movie is all his fault. It proves that not even Heston can make a Shakespeare story interesting. I wasted 2 and a half hours of my life on this snooze fest and I'll never get that time back. This is by far THE WORST Heston movie that I've ever seen. If you are a Shakespeare fan maybe you'll find this movie entertaining, but if you're not don't waste your time, you'll regret it in the long run.",0 +7569,"The opening sequence alone is worth the cost of admission, as Cheech and Chong drag that big ol garbage can across the parking lot, filled with gas. ""Don't Spill it Man !"", hilarious stuff. And then, as 'the plot' ensues, you're in for one heck of a ride. I watched this film recently and it holds up, being just as funny upon each viewing. check it out.",1 +20983,"I really wanted to like this movie, but it was just imposable. The acting was ultra hammy, the plot was annoying, and the pace was SLOW, sooo slowwwwww. The whole time sitting in the theater i wanted the movie to end. Twenty minuets into a films and I'm praying for an ending. Sure some of the visuals were nice, but c'mon guys, I mean really! And for a movie about a guy tuning magical instruments there really wasn't much music to speak of. The music there was was annoying, and boring. There were sound loud shrill sounds at times too, those were also annoying. Mainly this film managed to bore me, and creep me out at the same time.<br /><br />I'm glad its over. I need to go see ""Tideland"" and wash this bad taste out of my mouth.",0 +18629,"I saw this film at the Rotterdam Festival, as did presumably all the other voters. The Director was present and seemed to have worked very hard and be very committed to the project, which I think explains the above average reception and mark it got. It's most similar to a feature length episode of Aussie kids favourite ""Round the Twist"" but it takes itself too seriously to have even that redeeming feature. The movie in itself is maybe worth seeing if you're trying to do a cinematic world tour visiting all UN member states, as I can't think of another Fijian movie but overall it was generic, poorly acted (albeit by an amateur cast) and prey to the subaltern mentality. The moral of the story seemed to be that native islanders will try and screw each other over, but as long as there is an essentially decent white governor to step in, all problems can be solved (by leaving the island).",0 +1456,"Ossessione, adapted loosely (or if it is as loose or close to the version I saw of James M. Cain's The Postman Always Rings Twice with Jack Nicholson and Jessica Lange I can't be certain) by first time director Luchino Visconti, is no less outstanding with usage of mis-en-scene, music (both diegetic and non-diegetic), and the acting. I didn't know what to expect Visconti to do in his approach to the material, after seeing La Terra Trema and seeing how sometimes his political motivations snuck in a little bit. But this is a totally character and emotional based drama, bordering on melodrama (however, without the conventions that bog down lesser ones), and with the style in the finest path of the budding film-noir movement, Visconti creates a debut that's as involving as any other neo-realist film. Neo-realism, by the way, could rightfully be claimed as this being a forefather (along with De Sica's The Children Are Watching Us), which that would take shape after the war. Although love and romance is more in play here than in some of the more famous neo-realist efforts, it's dealt with in a bare-bones storytelling fashion, and it's laced with other familiar themes in neo-realism (the lower-class, death, desperation).<br /><br />Aside from the story, which is simply as it is described on this site, the artistry with which Visconti captures the images, and then layers them with objects (a shawl over Gino Costa's profile when in guilt), shadows and darkness that tend to overcome many of the later scenes in the film (usually over Gian and Giovanna), and the feel of the Italian streets in many of the exterior scenes. Domenico Scala and Aldo Tonti (who would lens some of Rossellini and Fellini's films) help in envisioning the look of Ossessione, which is usually moving in on a character, then pausing to read as much emotion on their faces, their voices and mannerisms lovely and ugly, sad and dark and romantic. I think I've just scratched the surface on how effective it was that the film itself was moving me along, even as I was in fear of the futures of the two leads. The two leads (Massimo Girotti and Clara Calamai) portray all the compelling, truthful, and near-operatic emotions, and the key supporting actors are also without their attributes. <br /><br />It's a brilliant, crushing adaptation, and it points as a striking signpost of what was to come for Visconti in his career.",1 +17552,"When I heard that the Dukes of Hazzard was going to be remade with current actors and a solid script, I was like, ""alright, I'll give it a chance, it's not going to be better than the first, but we'll see what happens."" Well, I saw what happened. I saw a great late 70's/80's show that was a classic, basically humiliated by Hollywood. It's so sad to see that Hollywood scriptwriters cannot come up with something original these days. They are seeming to take a great show that had a great target audience, and try to ""REMAKE"" the classic show. HEADS UP Hollywood... IT AIN'T WORKIN!!!! Anyway, more about the show. I think they could have casted a better actor than Sean William Scott (Stiffler from American Pie) to play Bo. I'm sure that John Schneider is definitely disappointed with how his character was portrayed and taken advantage of. Also, Get for real, Johnny Knoxville, as Luke Duke. How low can you go?? A crappy jackass actor to play lovable Luke. This sickens me. Also, I'll give Jessica Simpson is a beautiful woman, but her acting sucks. Catherine Bach who played the original Daisy, was smart, sexy, strong, opinionated and a good IL' southern girl. She was every little girls role model growing up! (I owned the doll and the Jeep - thank you very much!!!) Anyway, Jessica Simpson played a smart ass, 2-bit slut as Daisy Duke. Daisy never was blonde. Why did they have to cast her. Jessica Alba would have played a great Daisy Duke. She can speak with a great southern accent, and she is gorgeous, and would have done a wonderful job. Anyway, I'd like to say that this movie blew something fierce. I feel like I got ripped off by paying $8.50 for tickets, and they should refund my money. If you like the Dukes of Hazzard (the original series) don't see this movie. It'll just upset you. CMT (country music television) plays the reruns of the Dukes all the time later at night. So set your TIVO's and go with the real thing, not the imitation on the big screen in Hollywood.",0 +14726,"Six different couples. Six different love stories. Six different love angles. Eighty numbers of audience in the movie theater. Looking at the eighty different parts of the silver screen.<br /><br />I am sitting in somewhere between them looking at the center of the screen to find out what's going on in the movie. All stories have got no link with each other, but somewhere down the line Nikhil Advani trying to show some relation between them. I tried to find out a few lines I could write as review but at the end of 3 hours 15 minutes found nothing to write. The movie is a poor copy of Hollywood blockbuster LOVE ACTUALLY.<br /><br />My suggestion. Don't watch the movie if you really want to watch a nice movie.",0 +8679,"Quite simply the best reality show ever made. The first two seasons (the only ones that matter) are on Hulu. I challenge anyone to watch the first three episodes of season 1 and not like it. I guarantee you will finish watching the season. Then I guarantee that you will watch season 2. <br /><br />Other quick reasons to watch it: 1. Anderson Cooper is hilarious 2. The locations in Europe are awesome 3. The games are mentally challenging 4. It's very interactive 5. In one episode a player responds to another player's desperate, ""I'm trying as hard as I can!"" with an equally desperate, ""Not necessarily."" <br /><br />Can you figure out...Who Is The Mole?",1 +15879,"Allow me to start this review by saying this: I love vampire movies. They can suck (har har pun intended), and I'll still love them because vampires are just cool in movies. Van Helsing, considered by many to be a steaming pile of crap, was enjoyable to me because of the fact that there were vampires. You may ask: ""What does that have to do with this movie?"" The answer is that I intend to inform you of how horrible this movie truly is, that even a sucker (harharhar) for vampire movies like me can despise a movie like this so much.<br /><br />The movie stars Van Helsing, a college professor guy who isn't at all convincing. He's a terrible actor, like everyone else in this movie, and he wrote it, to add salt to the wound. I honestly to not mean to offend him, and I'm sure everyone had fun making this movie, but watching it was actually painful. I'm not sure why I watched the whole thing; perhaps it was a morbid fascination, like watching an impending train crash: it's horrible, but you can't manage to force yourself to look away. Its main fault is that it's just so ****ing boring, and its plot is so damn ridiculous, even for a science fiction horror movie.<br /><br />But, I digress. By the way, Van Helsing has sex with his mom. Of course, he doesn't know it's her at the time; he just thinks it's one of his students (which is still illegal and all, but not as disgusting and creepy).<br /><br />If I were Van Helsing, I would at least pull an Oedipus myself when I found out I had done something so gross. It would've made for one entertaining thing if he just made some comment on it, but no. The point isn't even brought up at all, by any of the characters. It's as if the writer didn't even think of it. I would've at least had another character laugh at him and say ""Ha ha, you had sex with your mom,"" which would be mildly humorous (although blatantly immature). I'm probably running out of room, so a few more words to dissuade you from ever seeing this film: there's a vampire ninja fight with an old man. It would be funny, but the filmmakers expect us to take it seriously. It's not even worth watching the movie to see how bad it is. Stay far, far away from it if you value your time at all.<br /><br />I will say one thing positive about the movie: the guy who plays Van Helsing is pretty slick with that knife of his. There's like, a minute long segment where he swings around his knife and actually does some pretty nifty tricks. It would be boring in any other movie, but here, sadly, it was the highlight.",0 +11346,"The John Van Druten Broadway hit is brought to the screen with a maximum of star power in this romantic fantasy about a modern-day witch who beguiles a successful Manhattan publisher. James Stewart may get top billing, but it is Kim Novak who steals the show as one of the most alluring witches ever to cast a spell on the movie screen. The lead pairing is, in fact, one of the movie's few weaknesses: the gray-haired Stewart seems a bit old for the role, and while it is easy to see why he falls hard for Novak, it's a little harder to understand what she finds attractive about him, as they seem mismatched in temperment and outlook. (It is one of the story's amusing conceits that witches and warlocks are portrayed as Greenwich Village beatniks and bohemians.) Curiously, the Stewart-Novak pairing would generate a lot more heat in ""Vertigo"", released the same year as this film, but then ""Vertigo"" had a compelling suspense story, and the benefit of Alfred Hitchcock's direction.<br /><br />The film's comic moments are mostly provided by the stellar supporting cast, including a young Jack Lemmon (as Kim's warlock brother), Elsa Lanchester (their ditzy aunt), and Ernie Kovacs (!) as a befuddled writer. Hermione Gingold even shows up in a hilarious cameo as a sort of Grand Witch. There's lots to like in this movie--wit, romance, and a great cast--that is, if you can possibly take your eyes off the enchanting Miss Novak. I have seen the movie a half a dozen times, and I never can.",1 +22976,"""You're not going to shoot those little creatures. In the first place, they haven't done you any harm. In the second place, they may be radioactive."" Ah, the joys of no-budget 50s sci-fi Yet despite the odd gem like that, Superman and the Mole-Men is pretty uninspiring going even with a lean 58-minute running time. It's beyond cheap (the one shot of Superman flying is an incredibly inept few frames of animation) and pretty dull with it, though it has a surprisingly altruistic message the mute Mole-Men, diminutive actors with enlarged skulls and fur coats who look more like Mr Mxyzptlk without the hat than subterranean critters, released from their underground world by oil drilling are not malicious, merely misunderstood, and George Reeves' Man of Steel tries to prevent the local small-town mob led by Jeff Corey from killing them. An interesting counterpoint to the paranoia of the day, perhaps, but with little more than good intentions to recommend it.",0 +24610,"Maaan, where do i start with this god awful movie. Bad bad bad story telling. I do not know what the director was thinking when he made this movie. Namaste London was quite an enjoyable movie to be honest..even the soundtrack was good. But in this one..oh my good..for a movie which is supposed to be a musical one..the songs are soooo bad. AR Rahman should have been the music director. <br /><br />Given two great actors a much better job should have been done by the director. Even though the first half sucks, the last 30 mins of the movie are OK. Performances from Salman and Ajay save the movie from being a total disaster.<br /><br />Watch it if you have nothing better to do. The last good movie from Bollywood i watched ( and i do watch a load of them) is Dev D and Wake Up Sid.",0 +5478,"Paris Je T ' aime is a movie that explores the different kinds and aspects of love and all the emotions that it provokes. This movie reunites some of the best directors from around the world such as Gus Van Sant, Joel and Ethan Coen , Walter Salles a...(read more)nd Alfonso Cuaron to tell short stories about love located in Paris, each one with their particular way of directing. In this film we also have one of the best cast ever seen in a movie including such great actors like Willem Dafoe, Steve Buscemi, Natalie Portman, Elijah Wood, Gerard Depardieu and many more each one with great performances. In conclusion, this movie is a compilation of stories of happiness, separation, unexpected encounters and love.",1 +12630,"Wow. I went to the video store tonight because I was in the mood for a bad B Horror movie and I found this Gem. I looked at the cover and I thought it looked like just the movie for my mood. I brought it home and put it on.<br /><br />This movie was not the B Horror movie that I had in mind. This was MUCH worse. I wanted a bad movie but what I got, I didn't know that crap like this existed amongst man. This movie seemed like a 5 year old wrote and directed it and that is being nice about it.<br /><br />I am an aspiring director and this movie made me so mad that someone out there is actually paying this guy to direct movies. He needs to work at a garbage dump shoveling crap where he belongs.<br /><br />If you are thinking about renting this or buying it. I will tell you the same thing that I would tell someone getting ready to commit suicide. ""DON'T DO IT, IT'S NOT WORTH IT!"" I really have nothing nice to say about this movie. DON'T DO IT!",0 +4679,"Parker and Stone transplant their pacy expletive-ridden humour from their animated masterpiece to a feature length live action film with generally good results. Much of the film is Trey and Matt running amok with their new toy box. The plot is simplicity itself: two average guys invent a new sport, a blend of driveway basketball with baseball scoring which becomes a national craze. Along the way they encounter numerous sporting movie cliches and send them up, along with any other bit of popular culture that comes into their sights. It runs like a stretched South Park episode, with the usual machine-gun dialogue, toilet humour and homilies from the heart.<br /><br />If this film has a weakness it is the association with the team that gave us ""Airplane"" and the ""Naked Gun"" series. This influence is clearly seen with the heavy use of lame sight gags and the presence of a glossy and rather two-dimensional Yasmine Bleeth in the role usually given to Priscilla Presley. Robert Vaughn does a little better playing the corporate b**tard that has been his party piece ever since ""Bullitt"" and Ernest Borgnine overacts as only he can, but one must admit he's perfect for the role of the lunatic team owner.<br /><br />For those who haven't noticed yet, Parker and Stone seem to be more comfortable as rock star wannabes than comics. This manifests in the prominence given to the soundtrack in just about everything they create. As usual, they give a good selection here including the obligatory track by their own ultra-non-PC vehicle DVDA.<br /><br />A special mention must go to Dian Bachar, who deserves some sort of award for enduring the difficult job of playing Stan to Parker and Stone's rampaging pair of Cartmans.<br /><br />In summary, this is an entertaining comedy which is held back from its full potential by too much reliance on the ""Naked Gun/Airplane"" formula. Parker and Stone could do something truly brilliant (or absolutely awful) if given full control over a future film. America, either lock these guys up or put them in charge.",1 +18393,"Ah, the spirit of '68. The streets of Paris were running wild with rebellion, the hippies were high on the spirit of love. How was Britain marking this age of radicalism and revolution? Erm, by the looks of it, dear Old Blighty was focusing on making films about boys in boarding schools. If... contains the evil establishment. It contains the uprising of the oppressed. What it lacks in contrast to the Parisien passion and the hippy headtripping is any sense of excitement, except in its all-out ammo-and-artillery fire ending.<br /><br />Lindsay Anderson's If... stars the ever-marvellous Malcolm McDowell as one of three private school pupils who decorate their dorm with photos of Lenin and other left-wing radicals. It's clearly an anti-establishment movie in its depiction of the evil upper-class oiks who rule the roost and the antiquated autocratic practices of the pish-posh public school standard. What makes If... unusual though is that for all its radical sympathies, it doesn't explicitly give us any sense of great tension between human decency and the despotic school system, instead it just kind of floats: lacking in plot and lacking in personality.<br /><br />Surrealist bits fade in and out occasionally and the film slips from black-and-white to colour again (is it due to the low budget or is it an arty expression?), but there is little of interest to speak of. All we get is the poignant denouement where the young rebels reach for their rifles and shoot down the shady overlords of the establishment. Hooray! A revolution! At last something that demands a second thought unlike the rest of this dull exercise in boarding school daydreaming.<br /><br />If... could have been a powerful political statement, but as it is it drifts and only gathers any sense of direct interest at the end. Instead of being a testament to the dissident zeitgeist of the late-Sixties, it only succeeds in being a dazed document of upper-class British education. Anarchy? Apathy more like, the only man many viewers will want to stick it to after watching If... will be Lindsay Anderson.",0 +15168,"I am at a distinct disadvantage here. I have not seen the first two movies in this series, although I have seen a lot of Larry Cohen films. Fans of the series seem to think this is a good film. Judging it on it's own, it was pretty boring.<br /><br />You never get a real good look at the maniac cop's (Robert Z'Dar) face, but what I did see was pretty grim. The death scenes seem to be staged to eat up the most film, not to give any thrills. Maybe if I saw the NC-17 Director's Cut, I may be more impressed.<br /><br />The ending with the car chase with Z'Dar, Caitlin Dulany, and Robert Davi was pretty intense. best part of the movie.",0 +194,"Though structured totally different from the book by Tim Krabbé who wrote the original 'The Vanishing' (Spoorloos) it does have the same overall feel, except for that Koolhoven's style is less business-like and more lyric. The beginning is great, the middle is fine, but the sting is in the end. A surprise emotional ending. As you could read in several magazines there is some sex in the film, but it is done all very beautifully. Never explicit, but with lots of warmth and sometimes even humour. It is a shame American films can't be as open an honoust as this one. Where Dutch films tend to go just over the edge when it comes to this subject, 'De Grot' stays always within the boundaries of good taste. 'De Grot' tells an amazing story stretched over more than 30 years. When you'll leave the cinema you'll be moved. What can we ask more of a film? Anyway, this film even gives more....",1 +22754,"This service comedy, for which Peter Marshall (Joanne Dru's brother and later perennial host of The Hollywood Squares) and Tommy Noonan were hyped as 'the new Lewis and Martin' is just shy of dreadful: a few random sight gags are inserted, everyone talks fast and nothing works quite right -- there's one scene in which Noonan is throwing grenades at officers and politicians in anger; they're about five feet apart, Noonan is throwing them in between, and the total reaction is that everyone flinches.<br /><br />In the midst of an awfulness relieved only by the fetching Julie Newmar, there are a few moments of brightness: Marshall and Noonan engage in occasional bouts of double talk and argufying, and their timing is nigh unto perfect -- clearly they were a well honed comedy pair.<br /><br />It isn't enough to save this turkey, alas.",0 +19184,"I watched this movie as I liked the plot, a group of strangers are held captive trying to figure out how they're connected.<br /><br />The setting and the premise were obviously influenced by the first (and best) Saw movie & although there wasn't much action the story moved at a relatively good pace.<br /><br />There was comedy relief ion the form of the two bickering 'Alpha males' and it was a welcome surprise (for me anyway)to see Melissa Joan Hart hasn't given up on acting yet.<br /><br />A few things let it down for me personally; 1. The paedophile was way over characterised making him get turned on by everything from children to dead bodies.<br /><br />2. MJH's line about her cop ex 'getting her into this' when in reality, he was the least deserving person to be there, he hadn't KNOWINGLY contributed to the events leading up to their capture.<br /><br />3. The ending..... what sort of movie just ends in the middle of something going on? There was no resolution, no cliff hanger, no obvious end... it just ends.<br /><br />And for that alone I dropped two stars off my rating. The first 2 points I would let slide but not the end!",0 +10465,"first, i'd like to say that, while i know my share about star wars, i am not a fanatic. i do not know how many chromosomes a Wamp Rat has or the extended family of TK427. what i know is this: Star wars, all the movies(less so with episode 2 though), captured something magical. it's hard to say what, what button Lucas has found and boldly pressed, but it works. Star Wars is more than a movie. it's an idea.<br /><br />How, may you ask? i shall explain. star wars touches on the most universal of stereotypes, good vs evil. it does this so obviously, so profoundly, that literally any person from any environment can understand. Episode VI does the very well, concluding the epic struggle between a son and his used and manipulated father, yet also, with the addition of the prequels, reveals even more to the hinted back story. suddenly, it's Darth Vader at the front, and viewers realize that it's the story about Anakin, not just Luke. but even before 1-3, there was amazing depth to it all. it felt real, as if capsule fell from the sky into Lucas's lap, detailing a historical account of a galaxy far, far away.<br /><br />Star Wars is definitely something far above the norm, and i must admit, whenever i see them, particularly this one, i feel very small. i feel as though i've been thrust into a world where good and evil are so clearly defined. i get a tingling feeling when i see them, a feeling that something, somehow, has touched me more than any physical thing could ever hope.",1 +5514,"With this movie, it's all about style, atmosphere, and acting. True, I didn't believe all of the plot developments, but it didn't matter- the terrific acting, the unexpected plot twists, and the wonderful atmosphere sucked me right in, and carried me along for the ride, and I had a great time. Kenneth Branagh is not only a great actor but a master of accents, and he proves it once again with a flawless Georgia accent. He's surrounded by so much talent in supporting roles (Robert Downey, Jr., Embeth Davidtz from Schindler's List and Fallen, Tom Berenger, Daryl Hannah, and Robert Duvall) that I was simply blown away. I recently bought a copy of this movie, and I never tire of watching it. Simply one of the best thrillers of the year. If you've ignored this movie (and chances are you have), then I suggest you check it out.",1 +8639,"I always enjoyed watching this when it came on television during prime-time every year in the 60's. It's a typical Hollywood history epic, dramatized, stylized and full of inaccuracies but so what, it's an entertaining movie and a good looking film. Cecil B. DeMille at the end of his life is the executive producer of this remake of his 1938 film. His son-in-law actor Anthony Quinn who had the supporting role of Beluche in the '38 film is the director in his directorial debut and swan song as he had never directed a film before and never would again. DeMille assembled a crew who had recently worked on his 10 Commandments to help Quinn pull it off including longtime DeMille associate producer/actor Henry Wilcoxon overseeing the project. Also from the 10 Commandments are screenwriter Jesse Lasky, cinematographer Loyalk Griggs, assistant director Francisco Day, 2nd unit director Arthur Rosson, art directors Walter Tyler and Hal Pereira, set directors Sam Comer and Ray Moyer, costume designers Edith Head, John Jensen and Ralph Lester who as a costume design team received The Buccaneer's only Oscar nomination. A great cast here from team DeMille headed up by Yul Brynner as pirate Jean Lafitte and Charleton Heston as future President General Andrew Jackson. Also in the cast are Charles Boyer, E.G. Marshall, Lorne Greene, Claire Bloom and Inger Stevens. At just over two hours it drags in some spots but makes up for it with some excellent battle scenes. I would give it a 7.5 out of 10.",1 +9886,"Entertaining Jim Belushi vehicle, a modern cockeyed version of It's A Wonderful Life. Michael Caine plays a sort-of angel who lets Belush see what life would have been like if he had ""made it big"". Jim is at his best with a good story and supporting cast; seems like real chemistry between him and Hamilton. Not an Oscar contender but good warm-hearted fun.",1 +18818,"""The Triumph of Love"" doesn't triumph over anything. It is a plodding, ponderous, 4 hours of torture. Actually it's a little less than 2 hours long, it just seemed much longer. It pains me to even think about the amateurish performances of such fine actors as Ben Kingsley and Fiona Shaw. The supporting players are not quite as awful. Maybe they were trying to be so over the top, so as to be clownish, but, if so, I didn't see it that way. Mira Sorvino doesn't make an impression one way or the other. She(he)'s just there. My guess is, the play of the same name, written by Marivaux some 270 or so years ago, is much better. It couldn't be any worse. Clare Peploe, the writer and director of this movie, was inspired by a recent production of the play. I don't know what she was thinking when she created this bomb. <br /><br />Maybe it all got lost in the translation.",0 +13061,"If you liked ""Blair with"" you'll like this one. It has the same lousy camera-work and soundtrack, and it has the same non-existent plot and suspenseful moments.<br /><br />It also has Tom Savini, so if you like Romero's ""Dawn of the dead"" or Tarantino and Rodriguez' ""From Dusk Till Dawn"" you're in for a treat. He is an icon and a very good actor as well.<br /><br />No, seriously. This movie is definitely the lousiest movie I've seen in a long time, and I've seen quite a few movies -- bad ones as well. I can tell you that I find most horror movies entertaining in some respect, but this was just a pure waste of time.<br /><br />The only reason why I gave this movie 2 instead of 1, was the naked chicks and the hot action with all the sharp-looking plastic teeth... No, I'm just kidding. I must have missed before I hit ""submit"" on the vote form.<br /><br />Stay away, even though it has sexy girls with teeth on the cover!",0 +14214,"Although I use this site quite frequently to see how other people rated what I think are challenging or just plain enjoyable films, after watching this ""movie"" on Film Four last night I felt compelled to write something down, even if it just helps cleanse me once again.<br /><br />The film was possibly the shallowest experience I've ever had - the main characters played by Danny Dyer (23? You sure?) and Gillian Anderson (who will always be Scully as Leonard Nimoy will always be Spock) had no real substance about them - I'm not sure if the first half-hour of the film didn't make the final cut but surely in a revenge movie you would like some empathy with the victims... here I couldn't care less. In fact, the only character I did seem to care about was the dog, with the stag coming a close second. And both animals out-acted Dire (sic) and Scully, who were quite frankly terrible. I guess though you're only as good as the script you are given, and I'd like to warmly thank the writers, the producers, the director and all of the cast for wasting 90 minutes of my life and some perfectly good electricity.",0 +9313,"A heartwarming film. The usual superb acting by John Thaw, who passed over recently. A man who was always so unassuming. He was one of Englands top 10 actors certainly of my time.<br /><br />He can be remembered for his famous role of Inspector Morse. As Jack Regan in the 1970's hit TV series 'the Sweeney and as a barrister in Kavanah QC. A must see for all the family and a great DVD for my collection. The filming will bring back a few memories for people who remember wartime Britain and certainly those who were evacuated out of London to escape the German bombings. The interaction between the two main characters.Tom and the boy William was really well acted and true to the book by Michelle Magorian.",1 +6490,"Jackie Chan's Police Story is a landmark film for both the Honk Kong action genre and the career of Jackie Chan.<br /><br />Directed/written by Chan, Police Story has a basic plot as did all the films of that era and genre, and like most of the the films of Police Storys' kind, the script is nothing to be raved about. But the plot of the film is Jackie Chan, who plays a nice guy cop, struggling to convict the local gang lord.<br /><br />The direction of the film is nothing special and by no means the best directing effort that Jackie Chan has given us, that responsibility falls to the underrated masterpiece ""Miracles"". However the job that Jackie does directing is sufficient and respectable. The standout out directing of the film comes with the fight scenes.<br /><br />The performances in this film also vary with Jackie giving a very solid typical Chan nice guy up against it role, but this is by no means his best acting role, that can been seen in the Sammo Hung directed film ""Heart of the Dragon"". The other actors in the film also give as good a solid performance as Jackie with Bridgete Lin playing her part of the unwilling witness reasonably well, but neither does she display full acting potential. The standout acting comes from Maggie Cheung as Jackies' suffering girlfriend and Bill Tung as the sympathetic and funny police chief. None of the performances in this film is of a low enough standard to affect the quality of the film. <br /><br />The action in the film is what really separates this film from others with stunning contemporary choreography to suit the urbanised, modern setting, the action is some some of the greatest fight scenes ever put on camera. To begin with there is a shootout in the slum where Koo (ganglord) is making a drug deal, whilst being no John Woo style sequence, this serves as a nice starter for the film. This is then followed by the famous car run down the side of the hill and through the heart of the slum wrecking everything in sight. This is a breathtaking sequence that has since been shamelessly copied by Bad Boys 2. In the middle of the film is yet another standout sequence as Jackie tries to transport Bridgete Lin from her house to his. This is really the first scene where we get to see the awesome fast paced hand to hand combat that has since become the norm for all modern set martial art films. This sequence is fantastically choreographed, timed and seamlessly edited together to maximise the brutality of the scene. However, as tradition dictates, the standout fight sequence is at the end of the film. This sequence displays some of Chans' best choreography, stunts and camera/editing work. This sequence is now famous for two things, the amount of people sent through high density glass, which has to be said a phenomenal amount of people, and the stunt at the end where Jackie leaps from a 5th storey balcony, grabs hold of a pole and slides down through a glass roof (this has to be seen to be believed). Whilst the two for-mentioned factors are both uniquely brilliant, i think that the most impressive part of this fight sequence is Chans' ability to incorporate anything into the fight sequence and the sheer originality of the choreography, that for me has never been bettered. I also believe that the action in Police Story is some of the best filmed and edited action of Chans career helping to set the action apart from others.<br /><br />Overall, Police Story, despite its unspectacular storyline and script and over running in the middle due to plot padding, is one of the best action films of all time displaying Chans best choreography, best filmed action and arguably his most spectacular stunt making this essential viewing for everyone. Afterall, we watch a Chan movie for the action!!",1 +23057,"Whattt was with the sound? It sounded like it was all dubbed.<br /><br />Otherwise, bad. Plot = bad. Accents = bad (even Dougray, and we live in Scotland), Acting = bad, Harp = bad, Sex scenes - bad/cringeworthy.<br /><br />Still, we watched it until the end in disbelief. How could such a good roll call of actors perform so badly? Will they ever get a decent job again? <br /><br />Bad, Bad, Bad. By the way, we gave it 3 because we at least were enticed to watch it to the end due to its bizarre plot, etc.<br /><br />And to the older reviewer - I totally agree, it was like a romantic farce from the 1940s. How did it get made in 2004?<br /><br />OK, OK, there were some OK bits. They had a nice house in Bristol. Dougray had a nice boat. Jennifer looked nice in a little outfit. But how come the sister got all the men?",0 +3740,"Has there ever been a movie more charming than this? One of the reasons everything works so well is that the group of actors really seem to interact and have an effect on each other's lives. The center of it is the ""romance"" of James Stewart and Margaret Sullavan, who work together and can't get along face to face but who completely connect with each other anonymously as pen pals. But there are also supporting characters and unlike a lot of romantic comedies (including ""You've Got Mail"", the recent update of ""Shop"") they're not just whipped up to support the two leads and their needs. Everyone gets to be an intricate part of Ernst Lubitsch's rich tapestry of charm. One of the most heartwarming scenes in movie history takes place when the near-tragic Frank Morgan casually and humbly searches for someone to have Christmas dinner with. A must see! **** out of ****",1 +18231,"When I found out there was a movie that had both my favorite actresses Meryl Streep and Wynona Ryder, I went through the roof!But I had a hard fall after watching this lame movie and I still have the bruise.First of all the character that Jeremy Irons (an actor I still admire even after this disappointment)plays was just awful. He treated his family like crap, especially his sister, played by Glenn Close. I could not get close or sympathize with any of the characters and I'm no prude, but the sex scenes were really unnecessary or they could have been toned down. Wynona and Antonio's characters could have been developed a lot more and their romance could have been much more passionate. And what was with Meryl's character and her ""mystical powers""? Why didn't they go into this more? This film had a lot of dead ends and the bottom line is that this is a really lousy movie and there was a lot of wasted talent here.",0 +10280,"I have seen Maslin Beach a couple of times - both on free to air TV in Brisbane. I won't go into whether it is good, bad or otherwise as others have well and truly covered this.<br /><br />I will say that it is so Australian. Only in Australia can we have a film about relationships among people spending the day as naked as the day they were born, and to view it on free commercial television.<br /><br />I have a friend from the US who is constantly amazed at what we put on our free TV compared to her home country. Sex and the CIty and Huff are just too examples.<br /><br />Despite our Government trying to turn us into the 51st US State, it is good to know at least some things remain truly Aussie",1 +20242,"This movie is a lot like the movie Hostel, except with *BAD* acting and not much suspense. The gore elements are there, but you don't really feel anything for the characters, making the violence not very effective. Some parts are just strange... like forcing a snake down someones throat. What's up with that? Is that supposed to be scary or gory? It's just kind of stupid. As for torture, there really isn't any (except for the guy getting blow-torched in the beginning, which they don't show anyway). The main bad guy keeps saying ""make them die slowly"", yet the butcher kills them all very fast. The deaths are all relatively quick. Yes, I did watch the ""unrated"" version. So, overall, not the worst gore movie I've seen, but not at all good either. You won't miss anything if you skip this one.",0 +3096,"The movie takes place in a little Swedish town where everybody knows each other. Here Mia visits her parent for the birthday of her father, a which occasionally always have some kind of tragedy, the question is just what will it be this year, and you will be surprised... It is an extremely well composed movie, with a story which has a perfect balance of humor and seriousness, which is rarely seen. You get happy, you get hurt, and basically everything in between. Finally you can't help falling in love with Mia(if you are a boy I guess(the main actress)) She is an extremely well chosen actress, as a lot of the other actors/actresses.<br /><br />Enjoy",1 +15256,"This sword-&-sorcery story of an appallingly brutal and callous ""hero"" vanquishing an evil king is worthless in almost every detail. The acting is horrible from the leads to the supporting roles. The leering, gloating glee with which the director shows the hero smearing blood around is absolutely disgusting; nor is it redeemed by any justice to his cause, since he is as bad as the people he's fighting. Z-movie editing is abundant, including a scene where a character ""dies"" from a sword thrust that very obviously missed completely!<br /><br />The movie is clearly banking on the charms of the female leads, Barbi Benton and Lana Clarkson, who are paraded around mostly naked throughout the movie. As a 20-something male, I will not pretend that female flesh on the screen doesn't attract me. But the treatment of their characters is so degrading and the sex scenes so casual and joyless, that I couldn't enjoy even this aspect of the movie.<br /><br />Most cheesy movies of this era are at least somewhat redeemed by a light-hearted, tongue-in-cheek feel (the sequel is better in this regard), but DEATHSTALKER seems to take itself completely seriously as heroic fantasy. No way! Avoid at all costs!<br /><br />Rating: 1/2 out of ****.",0 +230,"This film has renewed my interest in French cinema. The story is enchanting, the acting is flawless and Audrey Tautou is absolutely beautiful. I imagine that we will be seeing a lot more of her in the States after her upcoming role in Amelie.",1 +24151,"Stalker is right! Girl sees guy, girl wants guy, girl contrives mundane ways to keep bumping into him, girl won't leave him alone, girl pretends to be a patient, girl can't stop talking about him, girl pretends to love another guy (or two), he doesn't pay attention to her because she's annoying, girl STILL won't leave him alone. Played right, Drake's character could have been charming but she's completely, wholly, unrelenting in her pursuit of Cary Grant's character, her girlfriend-in-cahoots is dull, and sadly, Drake's attempt at playing, ""charmingly screwball"" comes off as, ""disturbingly demented."" Grant is himself, as usual, which is fine for Cary but it's as close to a phoned-in performance as I've ever seen from him. The direction is lackluster and the dialog is just plain dim.<br /><br />Screwball comedy is very difficult to do successfully and when it fails, like in this stubbed-out butt of an attempt, it just stinks. Worse still, Drake spends the entire film in need of a lot of Valium and a restraining order. She ruins any humor to be found in this drier than mummy dust relic.",0 +501,"""Before Sunrise"" is a wonderful love story and has to be among my Top 5 favorite movies ever. Dialog and acting are great. I love the characters and their ideas and thoughts. Of course, the romantic Vienna, introduced in the movie does not exist (you won't find a poet sitting by the river in the middle of the night) and it isn't possible to get to all the places in only one night, either (especially if you're a stranger and it's your first night in Vienna). But that's not the point. The relationship of the two characters is much more important and this part of the story is not at all unrealistic. Although, nothing ever really happens, the movie never gets boring. The ending is genuinely sad without being ""Titanic"" or something. Even if you don't like love stories you should watch this film! I'm a little skeptic about the sequel that is going to be released in summer. The first part is perfect as it is, in my opinion.",1 +22862,"I saw this movie a long time ago... luckily it was for free. I have to be one of the maybe twenty people who saw this movie in the theater. I don't remember a whole bunch of it, but I do remember I was incredibly bored, the plot made no sense and when I came out of the theater the only thing I could say was at least now I know what the worst movie I ever saw was. I just was incredibly bothered by one thing: if they can make the temperature as they approach the sun low enough for humans to survive, why can't they turn it down to a comfortable temperature instead of being all hot and sweaty? How stupid do they think we are?",0 +5683,"This unassuming, fairly routine series deserves credit in the TV history books for two reasons: it was the first to win an Emmy award for best syndicated series, and it was the very first show to come from the fabled studios of Republic Pictures, known for its low-budget but high-powered shoot-em-ups in the 30's and 40's.<br /><br />Republic was one of the first Hollywood studios to make a leap into the small screen, which was still in its infancy. But the studios' tenure as producer of TV pulp fiction would be brief. After this show, they would later dabble with the other format that they were known for, the adventure serial, with ""Commando Cody"", as well as other series, but like this one, they didn't last longer than 39 episodes. Also, Republic was in its last stages as a studio; it would finish out its tenure in Hollywood as rental stages for several Revue Studio series such as ""Soldiers of Fortune"", the original ""Dragnet"", and ""Kit Carson"", before finally shutting its doors in 1959.<br /><br />Anyway, ""Stories of the Century"" wasn't that bad of an oater, its calling card was tales based on authentic figures in Western history, mainly outlaws like Black Bart, Johnny Ringo, John Wesley Hardin, The Dalton Bros. and the like. The late Jim Davis, best known for his role as the Ewing patriarch in ""Dallas"", put in an amiable job in the lead role as Matt Clark, a fictional railroad detective who has to contend with said outlaws, played by veteran and soon-to-be veteran character actors.<br /><br />Two amazing facts here: The incidents would take place in different time lines, some in the 1880's, some at the turn of the century, but Clark never ages. And also, Matt has the good luck to saddle himself with two lovely female detectives as sidekicks, Frankie Adams, played by Mary Castle, and her replacement, Margaret ""Jonesy"" Jones, by Kristine Miller. The Lone Ranger could only wish for lady companionship. You can only spend such time with Tonto for so long.<br /><br />""Stories Of The Century"" is a Studio City TV production from Republic Pictures Corp. 39 episodes were made during 1954, all 39 of which are in public domain and on DVD.",1 +8883,"This is a great example of a rather simple Film Noir story that is handled exceptionally well--thanks to excellent direction by Otto Preminger as well as some lovely acting performances. Dana Andrews stars as a hot-headed detective who all too often uses his fists instead of his brains. Soon after the film begins, Andrews is being reprimanded for this and is warned that if this continues he'll be off the force. A bit later, while investigating a crime he's attacked by a suspect and Andrews is forced to fight to protect himself. This time he does NOT use excessive force but the assailant is killed. Andrews panics and assumes they won't believe him so he tries to cover up the death--though instead an innocent man is ultimately blamed for the crime.<br /><br />There's a lot more to the film than this--including a plot involving a slimy villain (Gary Merrill) and a love interest for Andrews (Gene Tierney). All in all, this is one of the better examples of the genre--with great gritty dialog, superb lighting and a simple yet very effective story. This is the way Noir was meant to be.",1 +5802,"This is an entertaining ""history"" of the FBI, but it should be viewed as fiction, because that's exactly what it is. What else could it be when J. Edgar Hoover personally approved and had a cameo role in the production. James Stewart is excellent, as usual, and the supporting cast, except for the talentless Vera Miles, is good. Murray Hamilton is especially good in a supporting role as Stewart's partner and best friend. The FBI accomplishments that the film highlights are undoubtedly all true. What is significant is what it leaves out.<br /><br />One of the most shameful parts of the film is the depiction of the killing of John Dillinger. It is portrayed pretty much as it happened, but no mention at all is made of Melvin Purvis, the Chicago Bureau Chief who headed the operation. Instead, the operation is depicted as if the fictional Chip Hardesty were running it. It has been said that Hoover was jealous of the publicity that Purvis received after Dillinger was killed; Purvis was subsequently transferred to a remote outpost, and shortly afterward left the FBI. This is no doubt why Purvis was never mentioned in the film. But this viewer, at least, paused to think that if Purvis was treated this way, what about all the agents who conducted all the other operations depicted in the film. Were they also completely ignored and replaced by the fictional Hardesty.<br /><br />The film is probably accurate in its portrayal of FBI activity up through the end of WWII. However, after that point, the film would have us believe that the only threat facing the US came from international communism, which is no doubt what Hoover believed. Never mind the Mafia. Never mind the lynchings that were still going on in the South. Never mind that blacks were being intimidated to keep them from voting in much of the South. I don't know if the FBI had started wiretapping Martin Luther King by the time this film was made, but if not, it wasn't very long afterward that it started.<br /><br />As I said at the outset, this is pretty good entertainment, but it should be viewed as the sanitized fictionalization that it is.",1 +3035,"The best film about marriage and family. This is a very interesting reflections to the couples that will be come to the dangerous and paradoxical fascinating world of marriage and family. This decision could be the better or the worst in our lives and the life of our kids. The real intrusion or help of 'friends' -or executioner if we leave-. The real role of families: they can help or they can destroy us. The mad priest who possibly is not much mad telling what could happen according the statistics and the reality. A couple who thinks in a 'special' marriage, live a painful story in their future own history.<br /><br />Who likes contract marriage? Nobody, after the priest tells their own history if they leave the future in another hands, if they don't know WHAT is the marriage. That the problems are true, that the life demand a real engage, guaranties, from each one. That the real victims of the divorce are kids, with real name Andrea in the film- or names. That the abortion is only an easy exit: sadness, regrets and unhappiness will be there after abortion. That the state and social security thinks every time less in a real problems of the families. The gossip of the 'friends', the infidelity because of weakness and desperation of Steffania because Tomasso lives his life as if he were alone.<br /><br />Maybe someone could think that this film is a pessimistic film, but not. Steffania and Tomasso, in the deep of their hearts, they like a beautiful marriage and family, if not, Why they like marriage? A truly and beautiful marriage depends only of the couple: of each one of their decisions, of each one actions in their lives. The family could be a place where each one feel loved because being his or her, only by existing. The screenplay is wonderful. The performances are great: Steffania and Tomasso, ¡the almost cynical priest! An excellent direction and script. The colors and the management of the cameras, superb.",1 +9401,This is one of my favorite movies of all time. It's great and the acting is brilliant. In the scene in which Michael Caine calls the police in tears and then stops the waterworks the second he finishes the call really displays Caine's brilliance. The twists are a lot of fun. The film is top-notch.,1 +23480,"I'm a big fan of Lucio Fulci; many of his Giallo and splatter flicks are amongst my favourites of all time, but this made for TV movie is extremely sub par and not what I've come to expect from the great Italian director. The film is neither interesting, like some of Fulci's more tame Giallo's, or gory like the majority of his cult classics; thus leaving it lacking in both major areas, and ultimately ensuring that the film isn't very good. The film works from a plot that has been used many times previously, but still it's an idea that always has the chance of springing an interesting story just because it focuses on the theme of the afterlife, which is the ultimate unknown. This film focuses on Giorgio Mainardi; a man that isn't exactly well liked and after he dies of an apparent stomach hemorrhage, there aren't many people that are sad to see him go. This means that his ghost is trapped somewhere between life and the afterlife, and so he decides to try and get to the bottom of his death, and his only ally in this endeavour is his daughter.<br /><br />The video that I saw this film on is proudly proclaimed that the film is ""in the style of HP Lovecraft"", and that's one of the most blatant attempts to sell a film I've ever seen. There is nothing even slightly reminiscent of the great horror writer in this tale, and the reason for that tagline would appear to be because of title similarity to the Stuart Gordon/Lovecraft film, 'From Beyond' - which is a lot better. The film does benefit from a distinctly Italian style, and the score is rather good. Unfortunately, however, Fulci has seen fit to positively roast every scene in it - and so the theme quickly becomes annoying. The plot plays out in a really boring way, and most of the scenes simply involve the ghost 'desperately' trying to find things out, or the daughter placing her suspicions over her family members. This movie was made for Italian TV, and so it's not surprising that it's all rather tame. There's a little bit of gore and a nightmare sequence with zombies; but this isn't the Fulci we all know and love. Overall, this film is extremely mediocre and not a good representation of Fulci's talents. Not worth bothering with, unless you're a Fulci completist.",0 +4991,"I saw this movie with my dad. I must have been pretty young, around 15. It was on Star Movies one afternoon.The movie started a bit vaguely, but you could tell those robbers were gathering up for a score. It really caught pace after the first half hour.<br /><br />All the actors are great, especially Blades and Lou Diamond. I Guess it's the ensemble, they just play so well together. I can watch this film anytime.I think it is the relative stupidity of the plot and the characters trying to deal with a very weird score. The jokes are not corny but they are subtle and extreme at the same time that make them so hilarious.<br /><br />A perfect comedy for a lazy afternoon.",1 +6522,"This movie rocks"" Jen sexy as ever and Polly wow were we really ever that young this movie can still touch the hearts of a lot of teens it needs to be put on DVD soon or it will become a classic. i Really enjoyed growing up to this movie i have always had a crush on Jen now i am too old but to this movie is made for all gens> you know i come from the early 80,s area were i Had to watch everyone els live the life i wanted but thru movies i can do that all over again i guess in short i am hoping and wishing that this movie not be lost in time but reborn to the youth so they may enjoy the heart warm filling you get learning about hormones and datting problems and how to get away with stuff that seems so major back then but don't mean nothan now so this movie is a dating tool.",1 +6888,"Knowing when to end a movie is just as important as casting, directing and acting. And it's nice to see when a director/script get it right. Clocking in at just 82 minutes, 10 ITEMS OR LESS doesn't stretch the story, trying to grasp at inane topics. It stays focused, being funny, sad, and well thought out.<br /><br />Morgan Freeman (LUCKY NUMBER SLEVIN) stars as ""Him"", an aging actor grasping at any roles presented to him. We're introduced to ""Him"" as he travels to a supermarket in an out-of-the-way section of town by The Kid (Jonah Hill, CLICK). Realizing he has a star in his car, The Kid pressures Him to talk about his absence in cinema over the past few years. Him isn't very forthcoming because, not only has he been out of it for while, he's also en route to a shooting location of an indie film he might act in (""I haven't decided if I'm going to accept the part.""). The Kid is a relative of the director involved in this indie venture and soon drops him in the middle of nowheresville. Stuck, Him decides to check out the local market. He immediately runs into the beautiful Scarlet (Paz Vega) who operates the 10 items or less register. Not just strikingly pretty but intelligent, Him begins using her as his prime research subject for his upcoming independent film role. He learns how she figures out numbers so quickly and why she knows the quirks of every member of this isolated community.<br /><br />But Him doesn't just use Scarlet, he helps her so he can see deeper into her life. They travel together to get her car back from a cheating husband, and he teaches her how to act to get a new job she's pining for, and how to dress for success even when confronted with Target as the epitome of local clothing. This is probably one of the funniest moments as we get a glimpse of Him, too, showing his complete lack of understanding of the chain-store retail world (""These shirts are only $12 bucks! How is this possible?!"") The ending, as stated at the beginning of this review, is abrupt but apropos. There's no way these two could ever remain friends even though they form a unique bond. They know when to say goodbye and what each garnered from the other. It's a quiet but riveting moment as Scarlet's clunker car sits idling outside Him's L.A. mansion.<br /><br />This is a great independent production and one that wastes little time getting going. And it won't waste your time either.",1 +20707,"Whew. What can be said about Gymkata that hasn't already? This is nothing but pure halarity from beginning to end. If you want a movie that will keep you on the floor laughing, this is the perfect movie to get. From Cabot's wild-style mullet/sweater combo to Parmistan (and it's four billion assorted ninjas), everything about this film reeks of crap.<br /><br />Directed by Robert Clouse, the infamous mind that brought you the mirror scene in Bruce Lee's Game of Death, he once again showcases his complete lack of directing talent. A few other faces you most likely won't recognize will appear for your enjoyment as well, from Buck Kartalian to Tadashi Yamashita, although you won't remember them or care about them after the movie is done.<br /><br />Supposedly based on a book called ""The Terrible Game,"" which, if I could find a single trace of it's existence anywhere I would be interested in reading it, to see where this thing went wrong. Instead, the book apparently is a figment of Gymkata's imagination. Probably something Clouse made up in order to sell his lame idea.<br /><br />Pick this one up and Yakmallah it for yourself. It is easily one of the best bad movies I have ever seen, and that is saying quite a bit.",0 +5927,"If you were born around the time this movie was finished, and had a liberal/open minded household that I had, I'm sure during the early 80's you'd be first introduced to walking in on your parents watching dirty movies or extreme dirty movies. You know, not 100% pornographic but rather an alchemical mixture of actual drama and pornography, or that you'd sneak into their collection and pop in the plastic rectangle representation of such a film in a big dookie machine called a VHS. You had to be very quiet and ninja like but still having minor heart failure when huge pop noises were made when pressing the tablet-like buttons out of fear of being discovered. Whatever the case, such films were sent into the back of your mind, waiting and waiting to be reunited with such visual ""art"". Needless to say, this movie fits into the aforementioned description to a ""T"". Many people will comment on the extreme sexual nature of the film but perhaps due to me being desensitized, I am more disturbed by the subtleties. Was the creator speaking to us on deeper levels of human carnality and or what could be considered a true abomination, interracial relations, bed frame masturbation, voyeurism, or could it be desperation for social status to the point of murder, pedophilia/homosexuality, or the repressed sexual nature of social elitist females in 18th century France? Who can say, but despite Mr. Borowcyzk's taste for vivid, raw sexuality being the ""norm"" for his works, I'd say that indeed this movie does speak to the viewer on a deeper level concerning bestial carnality. Once I have learned this, the story became much more interesting beyond the giddiness of shock value and there fore, it is well worth checking out.",1 +1114,"Director Vincenzo Natali's Cypher is a complex and imaginative thriller which, although requiring some suspension of belief and plenty of concentration, manages to be a thoroughly entertaining experience.<br /><br />Morgan Sullivan (Jeremy Northam), a stay-at-home husband with an overbearing wife, decides to add a bit of spice to his mundane existence by getting a job as an industrial spy at high-tech company Digi Corp. His job is to travel to conferences across the country (under the assumed identity of Jack Thursby) and secretly broadcast the speeches given back to his bosses, via a nifty little electronic pen-gizmo.<br /><br />In reality, however, the speeches are merely a cover for far more nefarious activities. Morgan, along with his fellow conference attendees, is being brainwashed. The drugged water they are drinking puts them into a temporary coma, during which they are told to forget their pasts and permanently adopt their new identities. Once they are totally convinced that they are someone else, they are told to apply for jobs with rival companies, where they are able to indulge in corporate espionage without suspicion.<br /><br />But Digi Corp's plans are scuppered by the intervention of shady operative-for-hire Rita Foster (Lucy Liu), who opens Morgan's eyes to what is really happening. She gives Morgan an antidote to the mind altering drugs so that he can resist the brainwashing techniques. She also warns him that if Digi Corp suspects that he does not fully believe he is Jack Thursby, then he will be 'eliminated'. Morgan plays along, and applies for a job at rival business Sunways.<br /><br />However, arriving at his new workplace, he is given a polygraph test and is immediately rumbled as a spy. Fortunately, the bosses at Sunways see this as an ideal opportunity to feed false data to Digi Corp and Morgan becomes a double agent.<br /><br />From hereon in, things get progressively more complicated; the plot twists and turns and poor old Morgan ends up not being able to trust anyone. In an exciting finale, all eventually becomes clear (but only if you've been following events very carefully).<br /><br />Director Natali handles proceedings confidently and certainly has a great ability to produce a classy looking film for a relatively low budget. He manages to get some great performances from his talented cast; Jeremy Northam,in particular, is fantastichis portrayal of the initially somewhat nervous Morgan is played to perfection.<br /><br />Cypher is another fascinating movie from a director who is willing to take chances and I eagerly look forward to his forthcoming projects, High Rise and Necropolis.",1 +17548,"In Hazzard County, Georgia, cousins Bo and Luke Duke (Scott, Knoxville) and their cousin Daisy Duke (Jessica Simpson) run moonshine made by their Uncle Jesse (Willie Nelson) while avoiding the local authority, Boss Hog (Burt Reynolds). Their problems with the Boss are only beginning as they learn he's been plotting to strip mine the town for valuable ores found below it.<br /><br />I have never seen the TV show and after watching the movie, I'm not going to start any time soon. I like stupid comedies but this one didn't offer many laughs. It was a pretty dull picture with the first hour being really hard to sit through. The second part was a little better but this film was still a missed opportunity. The film focused on Bo and Luke way too much. The characters in general weren't very interesting and the actors portraying them didn't do a very good job.<br /><br />The acting wasn't very good. I wasn't expecting it to be good in the first place but none of the leads were very funny. Seann William Scott and Johnny Knoxville both give below average performances. The latter was pretty good as Stifler but he tries way too hard here. The latter just seems to be looking for a paycheck and nothing else. Jessica Simpson isn't known for her acting nor is she really known for her singing. She's famous for having her own reality show and for saying really dumb things. She is pretty but she's a weak actor. It doesn't matter though because she doesn't really appear in the movie and the character she plays isn't complex or anything. Willie Nelson also has a minor role and he doesn't do anything special.<br /><br />The screenplay was written by John O'Brien and he made two films prior to the Dukes of Hazzard. The first one was Cradle to the Grave, which was okay. The second one was Starsky and Hutch which was pretty funny. He doesn't do a good job here though as the story is a mess. He also forgot to add jokes and a few other things that would have made this film work better. The movie is also pretty long for a comedy. Okay, 106 minutes isn't exactly long but it feels so much longer because there's very little humor in the first hour. I think comedies should be kept short or else they have to find a lot of material to cover the entire running time. The Dukes of Hazzard barely has enough funny gags to keep it going for thirty minutes let alone 106 minutes. The car sequences were average and they don't save an already troubled film. In the end, Dukes of Hazzard may appeal to a few people but most people will probably find it dull and it's better if you just skip it. Rating 4/10",0 +17475,"I've seen other Guinea Pig films, like Mermaid in a Manhole & He Never Dies, and while they're pretty sick, they at least have a bit of a sense of humor to them (however dark). Devil's Experiment though, is nothing more than filming a bunch of punks submitting a young girl to many methods of torture and violence and there's no plot and no redeeming values to it whatsoever. It isn't remotely scary, except for perhaps the mind-set, but it's definitely disgusting and I certainly would not call it entertainment. Now, I'm not the paragon of good taste in films and I like my trash and sleaze, but this was too much for me, really. I'm all for disturbing, in fact, I seek out things that are disturbing whenever possible, but this was a bit much. The young woman is kicked, beaten, submitted to continuous noise via headphones until she drools, and then pelted with raw meat and innards and left hanging in a hammock out in the woods somewhere. If you think that sounds great, go for it, but it certainly put me off viewing any more Guinea Pig stuff. 1 out of 10, absolutely nauseating.",0 +7304,"Having just watched this film again from a 1998 showing off VH-1, I just had to comment.<br /><br />The first time I saw this film on TV, it was about 1981, and I remember taping it off of my mother's betamax. It wound up taping in black and white for some reason, which gave it a period look that I grew to like.<br /><br />I remember very distinctively the film beginning with the song, ""My Bonnie"", as the camera panned over a scene of Liverpool. I also remember the opening scene where Paul gestures to some girls and says, ""Look, talent!"" So it was with great irritation that I popped in my 1998 taped version and ""remembered"" that the film opens with ""She Loves You"", instead of ""My Bonnie"". When you see how slowly the camera pans vs. the speed of the music, you can see that ""She Loves You"" just doesn't fit. Also, in this ""later"" version when Paul sees the girls, he says, ""Look, GIRLS!""..and somehow having remembered the earlier version, THAT word just didn't seem to fit, either. Why they felt they had to Americanize this film for American audiences is beyond me. Personally, if I'm going to watch a film about a British band, I want all of the British colloquialisms and such that would be a part of their speech, mannerisms, etc.<br /><br />Another irritation was how ""choppy"" the editing was for television. Just after Stu gets beaten, for example, the film cuts to a commercial break-LOTS of 'em. Yeah, I know it depends on the network, but it really ruins the effect of a film to have it sliced apart, as we all know. What some people might find as insignificant in terms of dialogue (and thereby okay to edit), may actually go the way of explaining a particular action or scene that follows.<br /><br />My point is, the ""best"" version of this film was probably the earlier version I taped from 1981, which just so happened to include the ""Shake, Rattle & Roll"" scene that my 1998 version didn't. I started to surmise that there had to have been two different versions made for television, and a look at the ""alternate versions"" link regarding this film proved me right. That the American version had some shorter/cut/different scenes and/or dialogue is a huge disappointment to me and something worth mentioning if one cares about such things. Imo, ones best bet is to try and get a hold of the European version of this film, if possible, and (probably even less possible), an unedited version. Sadly, I had to discard my old betamax European version because I didn't know how to convert it.<br /><br />All that aside, I found this film to be, perhaps, one of the best films regarding the story behind the ""birth of the Beatles"". Being well aware that artistic and creative license is often used in movies and TV when portraying events in history, I didn't let any discrepancies mar my enjoyment of the film. Sure, you see the Beatles perform songs at the Cavern that made me wonder, ""Did they even write that back then?? I don't think so"", but, nevertheless, I thought it was a great film and the performances, wonderful.<br /><br />The real stand-out for me, in fact, was the actor who played John, Stephen MacKenna. I just about fell in love with him. His look, mannerisms, personality and speaking voice seemed to be spot-on. He looked enough like a young John for me to do a double-take towards the end of the film when you see the Beatles performing on Ed Sullivan for the first time. I actually found myself questioning whether or not it was actual Beatle footage, until I saw the other actors in the scene.<br /><br />If you're looking for a dead accurate history of The Beatles' life and beginnings, you can't get any better than, ""The Beatles' Anthology"", as it was ""written"" by the boys', themselves. However, if you're looking for a fun snapshot of their pre-Beatlemania days leading up to their arrival in America and you leave your anal critical assessments at the door, you can't go wrong with the ""Birth of the Beatles""--a MUST for any ""real"" or casual Beatle fan.",1 +6726,"I have watched this movie on DVD a couple of times now,the first time, I watched the second half after the hour and then went back to the first hour. an engrossing entertaining film, thank god no kiera knightley in it, refreshing and it gives us all a genuine insight into the difficult life of Queen Victoria and the difficult choices she had to make. Nothing bad about the movie at all, no real bad language or anything of a sexual nature which would offend for family viewing. Might prompt the kids to research a little about the queen victoria herself and perhaps lesser known characters such as Conroy and Lord Melbourne",1 +15973,"I haven't seen ""Henry Fool"", but after watching ""Fay Grim"" I'm not sure I want to. Maybe Hartley aims to be the ""anti-thriller"" director---he sure succeeded with this yawner. Based on the official description---woman discovers that her dead husband's manuscript contains material that could pose a threat to national security---I expected a taut geopolitical drama. Instead I got flimsy structure, goofy dialog, flabby characterizations, a convoluted plot, and a ""tone"" that shifts so often it suggests that Hartley changed the script according to his mood at any given time. I can hang for a long time with a frustrating, hard-to-follow plot (e.g. ""Duplicity"") because I figure that the loose ends eventually will come together. Even when they don't, or they do but they leave lingering questions (e.g. ""Duplicity""), sharp writing and acting can hold one's interest. But half-way through ""Fay Grim"" I reached a deadly realization---I didn't know what was going on, and I didn't care. Too bad, because I really like Parker Posey, reduced here to working with an absurd part that asked her to morph from indifferent, estranged wife and indifferent, clueless mother to tough, shrewd international ""player"" capable of psychological mano a mano with terrorists. There's also bad casting. Jeff Goldblum can be very good, but he's not capable of overcoming miscasting as a CIA operative. He looks almost as uncomfortable in the role as I was watching him in it. His CIA sidekick is worse; he looks like a refugee from the quarterfinals of ""American Idol"" (are there really young CIA agents with big licks of hair rakishly draped over their foreheads?). Then there's the sticky question of the characters' ages. Goldblum was 54 when he made ""Fay Grim""; Thomas Jay Ryan, who plays ""Henry Fool"", was 44. Neither was made to look or seem older than their actual ages. Yet, a key point in the story is that they served as CIA agents in Nicaragua ""back in the '70s."" Goldblum's character would've been in his 20s then; Henry Fool would've been a teenager. Was Hartley being ""quirky"" or lazy? The problems are too numerous to list...",0 +15983,"I once promised never to walk out of any film ( a personal policy that made me suffer through the most different kinds of dreck, such as Rambo 3, Baise Moi, Deep Impact) - but Mr. Seidl almost succeeded. Hundstage was a truly awful experience. Anyone who sees this movie will think that Austrians are a miserable, pathetic bunch of retards. It shows a world where love and humanity don't exist, a world where people humiliate each other only for one reason - to distract from their own miserable existence. By choosing a documentary-like style with non-professional actors (most of them look like straight from the imagination of Austrian shock-cartoonist Deix) director Seidl wants to make us believe that this is real life in Austrian (European? Western?) suburbs. The viewer is confronted with depictions of sex orgies, violence against women and handicapped people, madness and degradation. But this isn't social criticism. This is just pure shock without any aesthetic value. Instead you get bad acting, bad cinematography, bad filmmaking. If anybody needs a film like this to realize that there are things wrong in our society then this person must have walked through life with closed eyes. This is pseudo-social criticism with a sledge hammer. And it looks down on people in a disgustingly condescending way. It shows ugly people - that is not the reason why I hate it. But it depicts average people in an ugly, misanthropic way. And this is why this film is truly despicable.",0 +1246,"As a guy who has seen all the seasons, I can say that JG constantly surprises me. I mean, after you saw him shifting from laughter to paranoia instantly throughout the seasons and after every little gesture of his made u believe he is a gangster, u thought to yourself: OK he is a good actor and he can get into a gangster's skin. But after seeing him opening his eyes and struggling for his life, I mean I could almost feel the pain he ""made"" us believe he was going through. I was so touched by his performance that I immediately thought at Robert De Niro, Marlon Brando and Al Pacino. These guys were definitely the best of their generations and even more. But nowadays they are either old or dead (Brando) and it's OK that they make less movies and their performances are ""lighter"" than they used to be. I can't wait to see Gandolfini in other movies where he delivers a totally different role. Can u recommend me some of his older movies where he gives a memorable performance?",1 +3488,"This is one of those movies that I've seen so many times that I can quote most of it. Some of the lines in this movie are just unbeatable. I particularly enjoy watching him stumble and fall while drunk, go out to the fancy restaurant drunk and the part with the moose.<br /><br />I don't know how many times I have seen this sequence but it's funny every time. From the moment Arthur gets to Susan's Dad's place to the bit with the moose, you pretty much laugh the whole time. I remember watching the out-takes regarding the bit with the moose. It went down just like I'd imagined it'd be like. They were all laughing so hard it was difficult for them to film it.<br /><br />The late Sir John Gielgud was a wonderful addition to this. His demeanor, his one-liners and the way he handled Arthur were all equally hilarious. It's always a funny moment when he whacks him over the head with his hat or tells him he's a spoiled little ____. I laugh every time I listen to the ""I'm going to have a bath"" and the lines that follow.",1 +15593,"From the blocky digitised footage to the acting that makes Keanu ""I'm so wooden I could be a Plank me"" Reeves look like an Oscar winner this film bites (pun not intended). The best thing about it is the box of eRATicate in the 2nd segment (which out of the three seemed to be the strongest piece in terms of storyline and 'twist'). Wish I'd spent the £3.99 it cost me on something else, like erm.... Natural Born Killers: Directors Cut. If you do buy this, you're really in for a disappointment, do yourself a favour and avoid it like the plague. If you're looking for something amateurish and with actors that are more wooden than a 2x4 then go ahead. However if you want some quality werewolf action look elsewhere, like Dog Soldiers, Wolfen, Romasanta:The werewolf Hunt.",0 +20061,"Within the first 17 minutes of director Bradford May's ""Darkman III: Die Darkman Die"", we have already been subjected to a silly recap and accompanying voice-over on the first two films, hilarious over-acting, about three minutes of footage simply ripped from the second film and re-edited slightly to seem like new footage, and a lengthy advertisement the scarred and tormented title character watches about Universal Theme Parks- Universal being the company that distributed this film. Yes, ""Darkman III: Die Darkman Die"" is quite the handful when it comes to cheap cash-ins on the success of a previous film.<br /><br />This time around, the disfigured anti-hero Peyton Westlake (aka, ""Darkman""; portrayed by ""Mummy"" actor Arnold Vosloo) locks horns with evil crime-lord and lousy husband Peter Rooker (played in a brilliantly over-the-top performance by Jeff Fahey), and over the course of the 87 minute film grows to develop an affection for Rooker's wife and daughter, once again learning to care for another person.<br /><br />Blah. Blah. Blah.<br /><br />This film is basically just a silly way for the studio to make some more money off of Sam Raimi's original film, which I consider to be a great action-suspense film.<br /><br />Oh yeah, and there are also a number of silly sub-plots, including a villainess who supposedly was one of the original doctors to save Darkman following his scarring, and her seducing our hero into thinking she is an ally before revealing her nefarious plot to help Rooker create more super-human powered thugs like Darkman. Apparently, she can't just do the same procedure on the thugs that she performed on Darkman. Why? I can't really explain it, because the movie certainly doesn't.<br /><br />There's also an assassination sub-plot involving a District Attourney who is threatening to bring down Rooker's organization, and some other very silly things going on.<br /><br />But it doesn't really add up. This film feels like two or three episodes of a television show edited together more than an actual film. The direction alternates between pretty good and downright sloppy (a scene where Darkman rides his train-like vehicle and dodges a rocket-launcher is just plain silly), and the editing is a mixed-bag. The film just moves too quickly for anyone to really care what's going on. And without spoiling it, the final 15 minutes of this movie, and indeed, the entire series is just kinda... I dunno... Another 15 minutes of mixed-bag footage.<br /><br />In fact, commenting on the editing, one of my favorite things in this film is watching for footage re-used from the previous films, and then looking for footage within this film that is repeated multiple times. Yes, it's that cheap. It's one thing to do a re-cap at the beginning of the film, and maybe repeat a shot or two, but in the sheer volume they do it (minutes of footage repeated from previous films), it's just sloppy and amateurish.<br /><br />Also, I have to say that Darkman's psychedelic montage freak-outs are a bit overdone in this film. They are so stylized and overdone that they do work, but only in light doses and in proper context, as Raimi did in the original film. Here, there are at least four or five, and they feel very abrupt and out-of-place.<br /><br />That being said, the film is not without some good points. A few action scenes are well-done. The cliché story of Darkman yearning for a real life works suitably for a direct-to-DVD feature. Some of the acting is nice, particularly from Rooker's wife, portrayed by the beautiful Roxann Dawson. Also, while no Danny Elfman, composer Randy Miller composes some nice music that builds off of Elfman's original themes.<br /><br />But overall, the film is too quick, cheap and silly to be taken seriously. Arnold Vosloo seems alternatively bored and exuberant from scene to scene, and Fahey, while a joy to watch as an over-the-top villain, just doesn't quite fit in with the series.<br /><br />Like ""Darkman II"", I would recommend this to fans of the original, who will surely get a laugh. Otherwise, you need not apply. A four out of ten.",0 +15818,"The final film for Ernst Lubitsch, completed by Otto Preminger after Lubitsch's untimely death during production, is a juggling act of sophistication and silliness, romance and music, fantasy and costume dramatics. In a 19th century castle in Southeastern Europe, a Countess falls for her sworn enemy, the leader of the Hungarian revolt; she's aided by her ancestor, whose painted image magically comes to life. Betty Grable, in a long blonde wig adorned with flowers, has never been more beautiful, and her songs are very pleasant. Unfortunately, this script (by Samson Raphaelson, taken from an operetta by Rudolf Schanzer and E. Welisch) is awash with different ideas that fail to mesh--or entertain. The results are good-looking, but unabsorbing. *1/2 from ****",0 +6128,"First saw this half a lifetime ago on a black-and-white TV in a small Samoan village and thought it was hilarious. Now, having seen it for the second time, so much later, I don't find it hilarious. I don't find ANYTHING hilarious anymore. But this is a witty and light-hearted comedy that moves along quickly without stumbling and I thoroughly enjoyed it.<br /><br />It's 1945 and Fred MacMurray is a 4F who's dying to get into one of the armed forces. He rubs a lamp in the scrapyard he's managing and a genie appears to grant him a few wishes. (Ho hum, right? But though the introduction is no more than okay, the fantasies are pretty lively.) MacMurray tells the genie that he wants to be in the army. Poof, and he is marching along with Washington's soldiers into a particularly warm and inviting USO where June Haver and Joan Leslie are wearing lots of lace doilies or whatever they are, and lavender wigs. Washington sends MacMurray to spy on the enemy -- red-coating, German-speaking Hessians, not Brits. The Hessians are jammed into a Bierstube and singing a very amusing drinking song extolling the virtues of the Vaterland, ""where the white wine is winier/ and the Rhine water's Rhinier/ and the bratwurst is mellower/ and the yellow hair is yellower/ and the Frauleins are jucier/ and the goose steps are goosier."" Something like that. The characterizations are fabulous, as good as Sig Rumann's best. Otto Preminger is the suspicious and sinister Hessian general. ""You know, Heidelberg, vee are 241 to 1 against you -- but vee are not afraid."" <br /><br />I can't go on too long with these fantasies but they're all quite funny, and so are the lyrics. When he wishes he were in the Navy, MacMurray winds up with Columbus and the fantasy is presented as grand opera. ""Don't you know that sailing west meant/ a terrifically expensive investment?/ And who do you suppose provides the means/ but Isabella, Queen of Queens."" When they sight the New World, someone remarks that it looks great. ""I don't care what it looks like,"" mutters Columbus, ""but that place is going to be called Columbusland.""<br /><br />Anyway, everything is finally straightened out, though the genie by this time is quite drunk, and MacMurray winds up in the Marine Corps with the right girl.<br /><br />I've made it sound too cute, maybe, but it IS cute. The kids will enjoy the puffs of smoke and the magic and the corny love story. The adults will get a kick out of the more challenging elements of the story (who are the Hessians?) unless they happen to be college graduates, in which case they might want to stick with the legerdemain and say, ""Wow! Awesome!""",1 +428,"what is wrong with you people, if you weren't blown away by the action car sequences and jessica Simpsons hot body then you are majorly screwed in the head. Of course the film isn't a masterpiece, i don't think it was aiming to be. It was fun and funny, i never watched the show when i was younger, i only recently saw one episode, and when i watched the movie, i felt it had the same kind of atmosphere. The movie seats were practically shaking, and the car sequences were good because it didn't bore me and drag out like some of the scenes in 2fast 2furious. and jessica Simpson is plain hot, i just wish they had used her more in the action sequences. All in all, i had a hell of a time watching this and i would go and see it again soon and i will buy it on DVD. People, enjoy it for what it is.",1 +4178,"Moon Child is the story of two brothers and a friend trying to make it in a futuristic, economically-unstable Japan. After a cunning disaster gone wrong, someone new enters young Sho's life, a special friend by the name of Kei. Years later they have grown rather close, and have found ways to combine both their talents into one unstoppable team. During another escapade, they encounter a new friend and his mute sister who become part of their band of friends. Before long disaster again strikes and the group falls apart. Alliances turn to enemies and their worlds are all turned upside down. Regrets and hopelessness claim some while power and success take others. Tragedy claims still others. Truths are revealed and lives are forever changed. <br /><br />And you will never see a more beautiful sunrise.<br /><br />This movie is a gripping tale of undying friendships, webs of relationships, and a team that not even death can keep apart for too long. Moon child combines sci-fi, drama, and action with the perfect cast and talent to create the most sensationally moving movie of the time, and great for most audiences. It minimizes the everyday romances and puts more emphasis on the important values we can all relate to such as friendships, loyalty, and believing in yourself. Nothing could possibly compare. I personally have never seen anything quite like it, and I don't suspect I ever will again.<br /><br />It appeals to the wider population in many ways and is a must see for all.",1 +23427,"What a disappointment... admittedly the best of the prequels, but the story is weak, the plot is rushed and the end result is just a collection of set pieces, poorly realised and tacked together amateurishly. There are numerous continuity errors that clash glaringly with the original films, and the emergence of Darth Vader was handled so terribly that what could have been a legendary moment in modern cinema is now instead a cheesy goof that will be ridiculed for many years. I won't complain about the abysmal dialogue, as this is Star Wars... the original three films had style, cult feeling and cracking stories, and the strange dialogue added charm. The prequels were shallow attempts to make more money, and this lack of love shows in spades. Utterly disappointing.",0 +10712,"This film exhibits artful cinematic techniques wherein instead of landscape capturing the attention of the camera it is small details in how someone appears, how the woman may be wearing a cocktail hat and wrapped in a sheet. How the husband may be wearing a hat and socks and shoes and his underwear and both seem so completely at ease and comfortable. How provocative the woman is posed is another feature of the tableau that the director chooses to let us know she is a free spirit sexually and aims to get the pleasure she seeks without flirting directly or with any particular sensitivity to what the man may be feeling. The relationship between the wife and husband is unique. It is an open one wherein she holds nothing back, feels no particular shame for how she has behaved and wants to share these facts with him because her primary focus always is on the fact of their marriage. Nothing and no one can come between the two of them. Only the chances of fate can intervene---his imprisonment during the war and what follows after his return at long last. A very intriguing film which is totally absorbing.",1 +19529,"It was pointed out in a now deleted post from another IMDb user that anyone who might see ""The Medusa Touch"" should be warned about a scene that's eerily reminiscent of the Sept. 11, 2001 terrorist attacks in NYC. But I hope anyone reading this will consider this warning. Despite an interesting pedigree (producer Elliott Kastner produced ""Harper"" and ""The Long Goodbye""; co-producer Arnon Milchan co-produced the Oscar-nominated ""L.A. Confidential"" and screenwriter John Briley won an Oscar for ""Gandhi"") and an international cast, I found ""The Medusa Touch"" to be a heavy-handed, unintentional laugh riot. It was a poorly directed, horribly written and acted mess. It tried to capitalize on the 70s telekinetic thrillers genre. The movie fails on many counts. Please consider ""Carrie"" and the underrated ""The Fury"" (both directed by Brian DePalma). They were two entertaining and exciting thrillers that dealt with the same subject matter.",0 +11712,"If you like film, don't miss this one. If you prefer action, or horror, or romance, then you'll wonder what's happening. Everyone here is stuck in a gangster film. And what happens is transcendental murder.<br /><br />There are few similar films. No doubt it will see limited release, and be hard to find. But the search will be worth it. If you want to study a mileu as a potential symbol, then this is indeed a film to study.<br /><br />You can't watch it once. If you do you'll never see what's happening. Dark City is better. Joe Vrs. The Volcano is more fun. But Mad Dog Time could convert the gangsta crowd to symbolism. . .or at least to think twice before shooting again.",1 +4724,Cracking good yarn with all the actors giving great value. Michael Curtiz at his best. Lots of nice twists and turns and probably the best of the Philo Vance series. William Powell looks wonderfully relaxed and at his debonair best. A forerunner to the Thin Man series. Recommend to everyone. Did you figure it all out?,1 +2119,"This film plays really well with an audience. Especially once the chase begins. Plus, Trevor Howard with his sensible, smart charms and Jean Simmons with her innocent demeanor and piercing eyes are terrific together.<br /><br />The film starts as a psychological drama but after the murder it segues into a chase thriller as the two leads head for the border. Some may think the chase is superfluous but actually the chase is essential because it aids in clearing the mind of the Jean Simmons character by getting her out of the oppressive household, plus it helps bring out the real killer - who is suddenly put into such a position that they have to finish the job. The killer rightly believed that once the Simmons character was arrested she would be put away. And it is true that her lack of control in the household - as well as evidence pointing her way - there is no way she would have gotten out of the murder charge. The chase that ensues helps bring out the truth.<br /><br />This is an entertaining film. Seek it out if you can find it.",1 +20400,"I saw this film when it first came out in 1978, when I was a sophomore in high school. I took a date to see it. I didn't ""get any,"" needless to say, because the film was so bad! Joan Rivers' career never tanked as badly as it deserved after making this awful, unfunny crap. In fact, unfunny isn't a severe enough term: this film is ANTI-FUNNY! You walk out feeling like any laughter that might have occurred was beaten out of you before it could happen. This isn't worth watching out of curiosity, or out of any sense of it being ""so-bad-it's-good."" Not even the gang at MST3K could've made this worth watching! The fact that Billy Crystal's career survived this early suicide attempt is a miracle.",0 +11178,"Eleven different Film Makers from different parts of the world are assembled in this film to present their views and ideas about the WTC attack. This is one of the best effort you will see in any Film. Films like this are rarely made and appreciated. This film tries to touch every possible core of WTC. Here are some of the most important stories from the film that makes this film so unique.<br /><br />There is the story from Samira Makhmalbaf (Iran) where somewhere in Iran people are preparing for the attacks from America. There a teacher is trying to educate her students by informing them about Innocent People being killed in WTC massacre. Then comes a story from Youssef Chahine (Egypt) where a Film Maker comes across face-to-face conversation with a Dead Soldier in the WTC attack and a Dead Hard Core Terrorist who was involved in WTC attack. Then we see a story from Idrissa Ouedraogo (Burkina Faso) where a group of Five Innocent children's sees Osama Bin Laden and plans to kidnap him and win the reward money from America. Then we see the story from Alejandro Gozalez Inarritu (Mexico) where you see a Black Screen and slowly you see the real footage of WTC buildings coming down. And the people who are stuck in the building are jumping out of it to save their lives. The other most important story is from Mira Nair (India) where a mother is struggling to get respect for her Dead Son whose name is falsely trapped in WTC massacre! After September 11 attack, Our heart beat automatically starts pumping if we hear two names anywhere in the world.. First is World Trade Centre and the second is Osama! This film totally changes our perception and makes a strong point by claiming something more to it.<br /><br />I will definitely recommend this movie to everyone who loves to have such kinds of Home DVD Collection. Definitely worth every penny you spend. But please don't expect anything more apart from Films in this DVD. There is of course Filmographies of the Film Makers but No Extra Features.",1 +19186,Sadly it was misguided. This movie stunk from start to finish. It was hard to watch because I used to watch Clarissa Explains It All every day on Nickelodeon. I LOVED her. Then the next thing I found she did a spread in Maxim and she was gorgeous! I haven't really heard anything about her until I watched this movie on accident. I couldn't believe she would even let something like this be seen with her name all over it. Everything about it was wrong but it still looked like someone somewhere in the team was trying really really hard to save a sunk ship. Too bad.. I hope she continues to act and I would love to see her with a real cast in a real movie.,0 +280,"After having watched ""Guinea Pig"", two questions come in mind ( besides 'Am I really a psychopath to watch that ?' ) : 'Is it a snuff ?' The answer is no ; although it's the closest thing to a snuff movie I've ever seen. And then : 'Where the hell have they found that girl ?'. Because she gets tortured for '45 min, without any reasons given ( in fact, there is nothing else in this movie !) : Fingernails teared off, beaten with hands, feet, tools, infested by maggots, ... and many more until the final scene ( I'm still not sure how they did that ). Because it belongs to the 'japonese underground scene', it's obvious she didn't get a lot of money. So what were her ( their ) motivations ?<br /><br />I saw it in japonese without subtitles, but it's not a problem ( no real dialogues, the boys are just insulting her in a few scenes ). I haven't seen yet all the serial, but the first ""Guinea Pig"" is not known for being the best one. Still I've rated 8, because if the purpose was making people believe this a snuff, the issue is quite good ( ask Charlie Sheen, the actor ). But I think they could have gone further, which they did in the following ones.<br /><br />Another movie I'm hiding from my parents.<br /><br />8/10",1 +10815,"Gung Ho tries to express many ideas and entertain us with a wiseguy comedy at the same time. The result is uneven, but generally entertaining. Keaton balances all three aspects of his lead character quite well. Wantabedde is even better. One warning: George Wendt is very poor in his supporting role. Otherwise, this is quite enjoyable time capsule.",1 +16463,"The direction had clearly stated that this film's idea and plot is totally original....however, as to those who have read 'slam dunk' comic, we can clearly see that the characters are very similar and even some jokes...<br /><br />Another note is Jay Chow himself DO NOT know Kung Fu, it just won't impress anyone if he tries to act like he can, many people today can see the differences.. Luckily the movie do not contain much of KunG Fu fighting and much are enchanced by stunners and visual effects...<br /><br />I think that Jay's acting is still a pain to watch, especially when almost everyone else in the film is so much better. The only reason I think why Jay is the main actor is simply is for his popularity.<br /><br />Despite how hard I wish to stop anyone from watching this thus making this ""orginal"" movie getting what it shouldn't have, it has became one of the best budget films in China for this year.",0 +8542,"I went to see this movie twice within a week and can only sum it up in one word (which I normally don't use lightly): Wonderful! In my view, the best movie ever made. Who deserves Oscars and other awards if not this Swedish crew who have created cinematic perfection in the last scenes of the film, when everything that is said (and left unsaid) throughout the story is drawn together? Just as the character of Daniel Dareus evokes so many sentiments and long repressed feelings within the people around him, the movie does the same to its viewers: You walk out with your head abuzz and your heart feeling full. Great stuff! Next time you ask yourself ""what is the meaning of life"", perhaps think about how you feel after a sumptuous experience like As it is in Heaven: Happy, content, fulfilled. To say it with Virginia Woolf's Mrs Dalloway: ""Such moments are enough"".",1 +20709,"Thank G_d it bombed, or we might get treated to such delights as ""Skate Fu"" where we can see the likes of Brian Boitano performing a triple lutz & slashing bad guys to ribbons with his razor-sharp skates, but I digress. One thing that could have helped this turkey would have been a little T & A from Ms. Agbayani. It's not like the world would have seen anything new (at least that part of the world who saw her Playboy spread.) I truly believe that porn would have suited her 'talents' much better, although Aubrey Hepburn couldn't have stayed afloat in this sewer. One explanation for Kurt Thomas' presence could be a traumatic brain injury, possibly from coming up short too often on dismounts. It's a good thing the IOC wasn't as diligent on 'doping' as they are now, or Kurt would surely have been stripped of his medals. To be avoided at all costs.",0 +11693,"Panahi, whose previous films such as The Circle and Crimson Gold have seemed to range from dour to grim, has produced in his new Offside a funny, obstreperous, joyously chaotic ensemble piece that ends on a note of liberation and heartfelt fun yet the movie deals with material quite as challenging and relevant as anything else he's done. By focusing on a group of ardent girl soccer fans caught sneaking into the pre-World Cup Bahrain-Iran match in Tehran stadium, Panahi brings up issues of national spirit and independent-mindedness, and the contradictions and sheer absurdity of the regime's religious gender apartheid in a world of modern competition with a majority youth population and urban girls who increasingly think for themselves.<br /><br />As the film opens we breathlessly join one of the girls in a bus, with a father pursing a lost daughter. This one has a disguise and has national colors as warpaint, but we cringe with her in the knowledge of what's going to happen: she's still easily spotted. The thing is, most of the men around don't really care. Still, rules are rules, and once they try to make it through the various checkpoints on the way into the big stadium the would-be soccer girls, or some of them anyway, get rounded up and held in a little compound upstairs in the stadium by some mostly young, green, and rustic soldier-cops who have no idea how to deal with these big city girls' independent ideas and would rather be watching the game whose roar we constantly hear in the background themselves. Each girl is different represents a different set of reasons for wanting to break the rules and different ways of doing it. One wore a soldier's uniform and got into the officers' section. One is tough and masculine and mocking and provocative (she could pass for a pretty boy, and teasingly hints at that: ""Are you a girl or a boy?"" ""Which would you like me to be?""). One doesn't care very much about soccer but went to honor a dead comrade. One (Aida Sadeghi) is an ardent soccer player herself and so on. These Tehrani girls are stubborn and smart and they walk all over the uptight rural lieutenant in charge of them (Safar Samandar). One of the rural cops (Mohamad Kheirabadi) takes the girl soccer player to the men's restroom (of course there's no ladies'), forcing her to wear a poster of an Italian football star as a mask. A comedy of errors and chaos follows in which the girl escapes.<br /><br />Later a spiffy looking van comes with an officer who directs the cops to take the girls to the Vice Department violating sexual segregation rules qualifies as vice. A male gets mixed in with them a kid who's chronically guilty of smuggling fireworks into the games. The van turns out not to be so spiffy: the radio aerial is broken. But one cop holds it in place so they can listen to the increasingly heart-stopping reportage. Cops and prisoners are all joined in a common excitement now. There's no score, the game goes to penalty kicks, and the winner will go to Germany.<br /><br />In the background through all this is a real game, a real stadium, and real masses of young men crazy about the outcome of this event. The excitement is tremendous, and the streets are jammed with cars and flags and a milling mob of supporters praying for an Iranian win and united in their excitement.<br /><br />What makes this film so good, as may be clear by now, is that it's shot during the evening of an actual game with a real finale that turns everything around. This, in contrast to Panahi's previous highly calculated narrative trajectories, is spontaneous vérité film-making that improvises in rhythm with a captured background of actual events and sweeps you into its excitement in ways that are quite thrilling.<br /><br />The essence of Offside is the disconnect between modern world soccer madness and retro-Islamic social prohibitions repressing women the latter existing at a time when young Iranian women are becoming part of a global world in which females participate in sport and share in the ardor of national team spirit. How exactly do you reconcile the country's ambition to become a modern global power with social attitudes that are medieval? A lot of Offisde is astonishingly real, including the way everybody tries to talk their way out of everything. The director's decision to inject young actors into an actual sports mega-event leads to a stunningly effective blend of documentary, polemic, and fiction that is too energetic to seem to have a bone to pick, and that ends in a way that's brilliant and moving.<br /><br />I've had reservations about Panahi's films before, but this one kicks ass. Panahi does something remarkable here. He critiques his society, presents an unusual drama, and touches our hearts with a sense of a nation's aspirations.",1 +7671,"I watched this show on the basis of it being told it was reminiscent of David Lynch's Twin Peaks - a show which I adore. The show quickly starts introducing us to the main characters and rather unusually the pilot episode is to me the best of the lot, its extremely dramatic and really gets out the whole evil side of the show ready to progress throughout the rest of the season. My one biggest criticism is I felt a little let down by the show - probably not through its own fault, as it got cancelled after a mere 1 season, it seemed to display show much potential and it deserved a lot better treatment than it got. The acting is excellent, and this show has some of the best characters (good and evil) in it I have ever seen that are well developed in a short space of time. There is the odd cheesy effect for the first 5 or ten shows which are a bit overly dramatic, but this is rectified as the season progressed. Well worth a watch, definitely something out of the ordinary!",1 +21602,"This movie is deeply idiotic. A man wants revenge for a crime- but when he enacts his revenge- there is a video camera pointed right at him the entire time. What man with a brain cell in his head would sit there and do this for so long in front of a video camera?<br /><br />Just the fact that this script could never even happen except with someone unable to dress themselves destroyed it for me- but it got dumber!!!<br /><br />I am thinking the script writers have some serious habits that are cooking their brain cells and making them miss plot holes you can drive an battalion of armored tanks through.<br /><br />PLOT: a man seeks revenge for the death of loved ones, but in the middle of the plot something goes totally wrong, and then the unexpected unfolds.<br /><br />If only these people writing this story hadn't been so dumb as to write totally unrealistic plot turns that could never happen this way. To the writers I say- seek help for your serious mental problem.",0 +9962,"I have loved this movie all of my life. It's such an intelligent story also, with plenty of classical allusions. eg. The ship that went missing decades earlier was called the Bellerophon. Well, in classical mythology this was the man who slew the Chimera, a legendary beast composed of two or more other creatures. In FP, Walter Pidgeon is clearly the chimera- himself and his Id monster. <br /><br />I like movies where the writers have clearly credited their audiences with a modicum of intelligence, unlike most modern blockbusters which spend $150m on special effects, but about $1.50 on a screenplay.<br /><br />Cheers",1 +19448,"I'm embarrassed to be writing this review. I say that because those of you reading it will know that I sat through the whole thing and that is embarrassing to admit even to strangers. But I just had to warn those who read the viewer comments on IMDb before they watch a film not to watch this one. It's the least I can do. This is a bad movie! Trust me. The plot is goofy. The acting is amateurish. And the directing, camera work, sets, costumes, etc. are all second rate. Let it go.",0 +18584,"Wow...I can't believe just how bad ZOMBIE DOOM (aka VIOLENT SH!T 3) really is. I'd heard the rumors, read the reviews - but had to make my mind up for myself. Well, let me tell ya - IT BLOWS!!! The worst acting of any film ever made, dubbing that must have been done while everyone involved was completely wasted, inept and laughable gore FX, no discernible plot, ""cinematography"" that looks like my grandma filmed it with her camcorder, weapons props that are no joke - made out of tin-foil - the list goes on and on...<br /><br />Three guys get stranded on an island where a bunch of weirdos run around with plastic and tin-foil swords. Two of the captives are freed along with a rebel of the island freaks, and are given a day's head start before they are hunted down by the rest of the ""tribe""...that's pretty much it...<br /><br />Honestly - this is one of THE WORST films I've ever had the misfortune to subject myself too. The budget had to be about $200 and was spent entirely on the gore FX (which actually may not have been a bad idea...). There is NOTHING to ZOMBIE DOOM other than strung-together ridiculous looking gore scenes with lots of HORRIBLY dubbed dialog. This film makes other no-budget outings like PREMUTOS: LORD OF THE LIVING DEAD look like TITANIC. Some may rank ZD in the ""so-bad-it's-good"" category - and I guess if you're REALLY drunk or high and watching it with a few friends MST3K-style - I guess it could be looked at that way. But not by me. I hated pretty much everything about it. If ZOMBIE DOOM or ZOMBIE 90 (which is equally appalling and is included as a ""bonus"" on the Shock-O-Rama release of ZD) is indicative of Andreas Schnaas' other works - then he should be banned from ever having anything to do with making a film ever again under penalty of death. There is one amusing kung-fu battle in the latter half of the film, and a lot of blood - so I'll grant this one a VERY generous 3/10 - Do yourself a favor and skip this.",0 +4489,"This is one of my all time favorite movies and I would recommend it to anyone. On my list of favorite movies (mental list, mind) the only ones on par with it are movies such as The Lord of the Rings series, Spirited Away and Fly Away Home.<br /><br />I can really relate to the main character Jess. At the start of the movie she's a shy girl with a slightly odd background who has a lot more friends who are boys than that are girls. She really sucks you into her life. I also certainly can't fault any of the protagonist's acting, or anyone else's in the film.<br /><br />The soccer was interesting to watch even for someone like me who has no idea of the rules. The movie is never boring. The romance is really cute and didn't make me blush tooooo hard! One thing that really made it though was the Indian factor. Jess' parents are Indian and there are many colourful Indian conventions throughout the film providing a very interesting cultural insight as well as everything else. The Indian people are also hilarious! Essentially this is a coming of age film about choosing the path you want and fighting for it.<br /><br />Feel good comedies are becoming my favorite movie genre thanks to this film. They're funny, they're refreshing and they make you feel good! ^_~",1 +9197,"Saw this as previous viewer by accident, I have watched it twice now. I thoroughly enjoyed it, no silly thought provoking messages just plain good fun entertainment, good songs, good characters and a just a feel good film Highly recommended to those of us that just like to enjoy films and not dissect them Great Fun for all the family here. I didn't realise Rosie Alvarez is played by Vanessa Williams, she is excellent and very sultry. The songs like One Boy and One last Kiss are really enjoyable to listen to and to tap your feet to Jason Alexander is the complete contrast to his character in Pretty Woman ans is very good. Tyne Daley still sticks in my mind from Cagney and Lacey and her voice and accent still had that remembrance in it. Overall I just loved it and will be looking to purchase it if it is available",1 +7840,"This is, in my opinion, a very good film, especially for Michael Jackson lovers. It contains a message on drugs, stunning special effects, and an awesome music video.<br /><br />The main film is centered around the song and music video 'Smooth Criminal.' Unlike the four-minute music video, it is normal speed and, in my opinion, much easier to watch.<br /><br />The plot is rather weird, however. Michael Jackson plays a magical 'gangster' that, when he sees a shooting star, he transforms into a piece of machinery. Throughout the film, he transforms into a race car, a giant robot, and a space ship.<br /><br />The robot scene in particular is a bit drawn out and strange. I found it a little out-of-whack compared to the rest of the film.<br /><br />A child is kidnapped, Michael tries to save her, is tortured and beaten, and suddenly turns into a giant robot that blows up all the bad guys. A little weird? Yeah.<br /><br />But besides the bizarre robot scene, it's a very good movie, and any Michael Jackson fan will enjoy both the Smooth Criminal music video and the movie.",1 +640,"Of course you could never go into a theatre and witness the types of sets you get in this film. From that point of view it is utter fantasy. But who cares? It is certainly true that you will not find this film listed in with Citizen Kane, Battleship Potyomkin and all the other films the pseuds tell us we should be watching. Films like this are worth a hundred Citizen Kanes.It is about what cinema does best: great camera-work, great settings and great performances.<br /><br />The three spectacular scenes at the end are probably best in the order they are presented, keeping the best till last.<br /><br />I will gladly watch this film again and again and again and...",1 +19987,"I saw the 7.5 IMDb rating on this movie and on the basis of that decided to watch this movie which my roommate had rented. She said she had seen it before. ""It's funny and sad! I cried the first time I saw it,"" she gushed. Maybe compared to other Bollywood movies this deserves a 7.5 out of 10, but in comparison to all the other movies I have seen in my lifetime, this deserves no more than a 3. Any movie where I can perpetually guess what is going to happen next is no good for me. The characters are unbelievable, how the act is not realistic at all and their motives are contrived. It is over dramatic and the songs aren't all that great. My biggest problem with Bollywood movies is the lack of subtlety. All the emotions are way too overdone and thus not at all realistic. Any emotion or bond between characters that is the least bit subtle must be magnified with an unnecessary song. I think I understood that the relationship between the father and son was more like one between friends than one between a parent and child without having to have it conveyed via a five minute long song. The stupid comic relief complete with laugh track was not funny or necessary (we get it, Laxman isn't the sharpest tool in the shed). If a movie tries to elicit tears through the most hackneyed means possible it just isn't meaningful, just a bit embarrassing.<br /><br />*****SPOILER*****<br /><br />Generally if someone has terminal stage lung cancer their son who lives with them would know something was wrong without having to be told. Too many plot holes to count. At first the movie was amusing and cute in the way Bollywood movies are to people who don't watch them that avidly but it just got tedious. It takes a lot of skill to make a movie that is amusing and heartwrenching and the best way to do it is usually not having all the amusing parts in the first half of the movie and all the heartwrenching parts at the end.<br /><br />*****SPOILER OVER***** Perhaps it had a very little more depth than other Bollywood movies that I have seen, but not much at all. I spent more time laughing at the stupidity of the movie than the parts that were supposed to be funny. I didn't shed a single tear nor did I feel like it, rather I was overwhelmed with a feeling of disgust at the attempt at a dramatic ending. I don't recommend this movie if you want to watch something good, I recommend it if you want to watch a Bollywood movie that is kind of sad.",0 +16595,"I've seen about 820 movies released between 1931-39, and THE INFORMER is the worst major release I've seen from that time span. Awful, despicable, unpleasant, unhappy, unredeemable saga of a complete Loser. Watch a 1934 B Western instead.",0 +23262,"As a big fan of David Mamet's films and plays, especially his first film House of Games that also starred Joe Mantegna, I was expecting great things from this film. Instead, I found myself annoyed by the film's superficiality and lack of credibility. Racial slurs are thrown about without any feeling or meaning behind them, in the hopes of setting up a racial tension that for me never materialized. Identity is totally reevaluated and men become ""heroes"" for no apparent reason. Because of his oaths taken as a cop, the lead character adamantly refuses to perform one relatively small action that would harm no one and could possibly save lives, and yet performs another action which is very violent and VERY illegal, but then still refuses the minor action. In addition, a highly unbelievable subplot involving a man who has killed his family is introduced just for the sake of a plot point that was all but advertised with skywriting, and the cop's reaction to that occurrence stretch credulity way beyond all reasonable limits. Needless to say, after expecting another exciting thriller from David Mamet, I was extremely disappointed to say the least. 3 out of 10.",0 +13649,"i think that new york is a big fake, i mean her whole guidelines of this show is stupid. i enjoyed flavor fl av more better, she acts like a slut, and a hoe put together. her mother is out of this world, i think she is the devils daughter. i mean what does she think she is doing these men already have girls and i believe once you have been with her you will be to ashamed to go back to your girl. she is nasty, spoiled and a big fat fake.the show is very interesting to watch, how much money is she getting to do this awful show, and whats up with her mother,i thought her and new york did not get along, but now it seems as though she is just as fake as her crazy daughter.and where is the so called husband, he is no where to be found,i would not to be with them either.",0 +19073,"Visually cluttered, plot less, incredibly mind-numbing rubbish. Not even close to Greenaway's better work. Avoid at all costs!<br /><br />The overlapping 'split screen' effects do nothing more than confuse, the film is very dark for a lot of the time and the 'artistic' composing of images is pretentious in the extreme.<br /><br />There is absolutely nothing to recommend about this film; even the nudity is incredibly unerotic, which seeing it fills a large part of the film soon gets very boring.<br /><br />Plus, how anyone can say that the acting of Ewen MacGregor is brilliant is beyond me. He showed more ability in the Star Wars series, and that's saying something.<br /><br />I've not been so unimpressed with a film since I saw 'Darby O'Gill and the Little People'!",0 +6235,"Three girls, the youngest descendents of the Gaylord family, one of America's most royal families, are orphaned at a young age. Right before he goes off to France to fight in WWI, their father tells the oldest, Fiona, never to sell the land. By the time the sisters have become adults, they have had to squander most of their money to pay for lawyers to defend their property. Through certain loopholes in the father's will, a man named Charles Barclay stands to gain possession of the Gaylord land, on which he wants to build a complex called Barclay Circle. Barclay is actually based on John D. Rockefeller, who was buying up land and buildings from affluent families in New York so he could build Rockefeller Center.<br /><br />This film deals mostly with the melodramatic concerns of the three sisters. Fiona, well played by Barbara Stanwyck, although it's certainly not to be counted as one of her best roles, seems like a cold, domineering woman, and it becomes clear that she has some skeletons in her closet. Susanna, played by Nancy Coleman, is a little ditsy and completely in love with a young modern artist named Gig Young. Coleman's was my favorite performance in the film. Evelyn, played by Geraldine Fitzgerald, is a rather pretentious seductress with a monocle who married into noble blood in England, but that doesn't stop her from trying to steal Gig from her sister. The three sisters are developed quite well but, as is the major trend in The Gay Sisters, never well enough. Charles Barclay is played by George Brent. He isn't very good. Well, he would be satisfactory if the story had played out the way it should have, but he always seems like a scumbag in the film. When we're asked to sympathize with him late in the film, it's impossible. Gig Young is played by, huh?, Gig Young. No, he's not playing himself. What happened is that the actor, who had acted in several movies previously under his real name, Byron Barr, was pressured by Warner Brothers to change his name to something more catchy. I'm not sure who made the final choice, but he eventually changed his screen name to Gig Young, after the character whom he plays in The Gay Sisters. Weird, eh? Young is quite good through most of the film, but the script does some unfortunate things with his character late in the film which ultimately harm the audience's sympathy for him. In two other supporting roles, Helen Thimig and Gene Lockhart are quite good.<br /><br />The Gay Sisters had great potential to turn out to be one of the great cinematic family sagas. The characters are all interesting, as are their situations. Unfortunately, the script never strives for anything more than the simplest melodrama. If it had made the interrelationships of all the major characters more complex, fleshed out, for example, the rivalry between Evelyn and Susanna or made the flashback more intricate, the film could have been fantastic. It also could have fleshed out the prologue more, let us know more about the Gaylord family. We need to care more about the characters and we need to sympathize with them more. And the ending needed some major fixing. It basically just gives up at the end. Fiona's problems are solved so poorly that it hurts. Whatever sympathy her character had gained as the film progressed falls apart. It's also far too happy. This story seems moving towards tragedy, or maybe just a sense of historical significance or loss. And we still hate Barclay. And the conflict between the two sisters and Gig is never solved. As bad as Fiona's story ends, Susanna's, Gig's, and Evelyn's is even worse.<br /><br />I still liked the film. It's thoroughly watchable, even if it doesn't involve us like other great films of the era. 7/10, mostly for its potential. It should have been remade, or the novel should have been re-adapted, at some point during the studio era. It is too dated to be remade now. The 1950s would have been the best time, during the time of films like Giant.",1 +2859,"A best-selling book about honour killings in Jordan is withdrawn by its publishers after allegations surface that the story has been fabricated; associated with other allegations of its author's past as a con-woman. A few years later, she resurfaces, conceding that she took a certain amount of dramatic licence but willing to cooperate with a film-maker to prove the substance of her allegations. What follows is a fascinating insight into a pathological personality, someone who's behaviour on one had makes no sense unless what she is saying is true, yet who is seemingly incapable of saying anything that is not astonishingly dramatic but unproven at best and most often, verifiably false. It's almost impossible to imagine what Ms. Khouri hoped to gain by appearing in this film: vindication? celebrity? - all she does achieve is to project a certain image of herself as a deeply damaged individual, and even that cannot be taken at face value. Director Anna Broinowski appears increasingly on camera as her film progresses, and increasingly exasperated to boot; but she is finally rewarded with a remarkable, although scary and disturbing, tale to tell - and one of those films that reminds us what a thoroughly weird world it is we live in.",1 +6557,"I think this movie is well done and realistic. I you are used to watching Hollywood ""action"" movies, and use that as a standard to rate this movie, you are bound to be disappointed. This movie is much closer to real life than 95% of what Hollywood can produce, and that is what lifts it above the average action movie. I have no experience with Swedish military whatsoever, and can therefore not point out any mistakes in the way they act. But as i have seen the ""making of"" extra I'm convinced that there has been done a lot to avoid any mistakes. This is a movie i will recommend for others to watch. High quality realistic story and movie.",1 +12463,"Shawshank, Godfather, Pulp Fiction... all good films. Great films. But nothing, and I mean nothing lives up to the greatest Christmas movie of all, Santa Claus.<br /><br />The film is so great and has so many messages, I cried while watching it. Seriously, this is one of those movies you need to watch 10 times. When we see Pitch get told he will have to eat ice cream, we see the sadness in his eyes, and we feel the deep sorrow, and then we wonder... what is so bad about this ice cream? Is it implying that we as humans are treating ice cream as good when all it does is make us evil? Think movie makes you think.<br /><br />This movie has the best rendition of Santa Claus ever. Unlike other Santas, he is a normal person. We see him imprisoning children and spying on kids dreams, and we wonder; is the Santa we believe in really that good? Also, this Santa actually mentions Christ, the whole meaning behind Christmas.<br /><br />You owe yourself to watch this cinematic masterpiece. We should just stop making movies and air nothing but this epic 24/7. Whether it's Christmas or not, this movie gets a 500/10. Whoever says this movie is bad is an ignorant fool.",1 +3643,"As a horse lover one can only appreciate this movie. There are few movies that show horsemanship as this one does. I would love to know if Brian does his own riding in the film. Would also like to know if he enjoys horses. Brian has been in a lot of movies where he has ridden. Where did he learn to ride? The only part that is hard for me to take is that the riding scenes are always full tilt, like a horse can run forever at full steam. The camera-work is first rate and captures the horses in a way that shows how dangerous things can be on top of a horse. It would be very interesting to know how they went about casting this movie to find all of the very good horseback riders.",1 +4303,"I actually like the original, and this film has its ups and downs. Here's just a few:<br /><br />Ups: Most of the original voice cast returned.<br /><br />Downs: I didn't like the voice of Timon's Ma. I know she did a voice in The Simpsons, but that show is just plain stupid. <br /><br />Ups: We get to see Simba as a ""teenager.""<br /><br />Downs: They wasted it with a slug-slurping contest between Timon and Simba. <br /><br />Ups: It was Rafiki who told Timon about ""Hakuna Matata.""<br /><br />Downs: How did Pumbaa find out about it?<br /><br />Ups: Songs again. (some of the original songs were there, but they were just background music.)<br /><br />Downs: But stupid songs. (a.k.a. Timon's solo.)<br /><br />Overall, this is a pretty good movie. I'd recommend it for fans of the original. But if you don't like the original, chances are you won't like this one.<br /><br />My Score: 7/10",1 +16622,"I really wanted to like this movie, but it never gave me a chance. It's basically meant to be Spinal Tap with a hip hop theme, but it fails miserably. It consistently feels like it was written and acted by high-school kids for some school project, and that's also the level the humor seems to be aimed at. There is no subtlety and, more damningly for a mockumentary, it never once feels like a documentary. And while the lines aren't funny in the first place, an attempt at dead-pan delivery would have helped -- certainly, anything would be better than the shrill overacting we are subjected to.<br /><br />I'd recommend this to people who like ""comedies"" in the vein of ""Big Momma's House"" or ""Norbit""; people who think that words like ""butt"" are inherently hysterically funny. Other people should stay away and not waste their time.",0 +20371,"Ah WINTER KILLS , based on the novel by Richard Condon which deals with a conspiracy that killed the president of the United States 20 years ago . I knew Condon also wrote THE MANCHURIAN CANDIDATE which dealt with a similar theme and was looking forward to seeing an intelligent thriller<br /><br />WINTER KILLS left me cold . It's not a thriller - It's a piece of worthless crap , possibly the worst movie I've seen this month and boy have I seen a lot of bad movies in June . The problem lies in both the direction and the script and seeing as William Richert was responsible for both then he should be blamed entirely for this unfunny farce <br /><br />There's two things wrong with this movie . First off is the way everything is presented in a totally over the top manner . It's not as OTT as say something like that James Bond movie with David Niven and Peter Sellers but everything has a farcial edge to it with actors completely mugging their performances . This might have been justified if there was entertainment value to the movie but there's none . As a satire it's very silly , so silly that it becomes almost unwatchable . Secondly the scenes seem to have been cut so much that they're rendered senseless . Take for example a scene where the hero is confronting a loopy militia leader called Dawson . Dawson tells the hero he has 30 seconds start then it cuts to the hero being on board a plane . The scenes begin and end with no rhyme nor reason<br /><br />A dire movie that's an ordeal to sit through",0 +4715,"If you love The Thin Man series, you will love this movie. Powell's character of Vance is very similar to his character of Nick Charles. There are even dogs. . .<br /><br />The chemistry between Powell and Astor may not be as fabulous as Powell and Loy, but it isn't half bad.",1 +2981,"Brilliant execution in displaying once and for all, this time in the venue of politics, of how ""good intentions do actually pave the road to hell"". Excellent!",1 +7627,"A Kafkaesque thriller of alienation and paranoia. Extremely well done and Polanski performs well as the diffident introvert trying hard to adapt to his dingy Paris lodgings and his fellow lodgers. Horrifying early on because of the seeming mean and self obsessed fellow tenants and horrifying later on as he develops his defences which will ultimately be his undoing. Personally I could have done without the cross dressing element but I accept the nod to Psycho and the fact that it had some logic, bearing in mind the storyline. Nevertheless it could have worked without and would have removed the slightly theatrical element, but then maybe that was intended because the courtyard certainly seems to take on the look of a theatre at the end. I can't help feel that there are more than a few of the director's own feelings of not being a 'real' Frenchman and Jewish to boot. Still, there is plenty to enjoy here including a fine performance from a gorgeous looking Isabelle Adjani and good old Shelly Winters is as reliable as ever.",1 +14649,"Billy Chung Siu Hung's (the bloody swordplay film Assassin from 1993) film Love To Kill (Hong Kong, 1993) is among the strongest products of the Category III boom that inhabited the HK cinema in early nineties. It consisted of films with strong sex, nudity and violence, more or less gratuitous and shock valued only. Love To Kill definitely belongs to the ""more"" category with some unforgettable ideas and pieces of celluloid sickness.<br /><br />The HK psycho Anthony Wong (from the award winning The Untold Story by Herman Yau, from the same year) plays a business man and a husband who likes to torture, humiliate and rape his young wife (Elizabeth Lee Mei Fung) who for some reason doesn't leave him and save herself and their little son from the disturbed tormentor. A policeman (Danny Lee, the famous police character actor from films like Dr. Lamb (1992) by Billy Tang (and co-directed by Lee) and The Killer (1989) by John Woo to name just a few) however sees the problem and starts to protect the wife and the son but Anthony naturally doesn't like this at all, and leads it all into the typical ultra-mean spirited and graphic finale during a rain storm.<br /><br />The film is almost completely without any serious merits as it's just a piece of exploitation in order to cash in when these kind of films were so popular. The imagery and happenings are something never found in the Western cinema, at least in mainstream, and it all becomes even more mind-blowing when some/most taboos for Westerners, like violence and perversions witnessed by a child, are broken in these films so often that reading the plotlines alone would make most viewers feel sick, and that goes perfectly especially for this film too.<br /><br />The film still has a rather interesting and creepy soundtrack in the tradition of the mentioned Dr. Lamb which practically started the whole boom in 1992. Usually the music and soundtrack in HK films is interesting and adds to the imagery, especially in these terror films. Also the cinematography is worth mentioning as the film bathes, especially in the finale, in blue colors and camera lenses (as does Assassin, too), and the raging storm is captured nicely on the camera. Otherwise there's nothing that would rate the film any higher other than on the nastiness-meter.<br /><br />The actors and actresses are talented and professional and so don't make the film any worse with their acting. Still the film has the usual HK humor in it which makes the sick goings-on even sicker as some ""humor"" is thrown into the soup. That includes some jokes about Danny Lee's erection and so on..Something that could never be found in the Western ""serious"" films either. And that thing usually destroys mane otherwise noteworthy HK films as the humor is just so obvious way and attempt to entertain the audience and masses.<br /><br />The film has a very high outrageousness level as it has numerous scenes depicting the abuse of Wong's wife in various ways. She gets raped and molested, beaten and kicked by her husband. We also get to see some flashbacks from Wong's own childhood which turns out to be equally violent as his own father killed too and turned his young son into what he is now. These flashback scenes, mostly at the end of the film, include also some totally unexpected experiences as the imagery is speeded up (for example the hits of an axe) and that creates completely insane and mean spirited atmosphere to the scene. Again something that only HK exploitation makers seem to be able to come up with. The ending itself includes plenty of sudden and shocking gore as the madman wields his axe and meets also some nails, for example, on his furious way.<br /><br />The film is also genuinely pretty ""suspicious"" in my opinion as the violence and terror is realistically painful and deals with things that should NEVER be taken as entertainment, mostly I mean rape. The version I saw (I've seen two versions) includes a very long and completely nauseating rape scene that just tries to be as sadistic as possible. I'm not sure does the HK audience really like imagery like this but I think no one with some sense for morality in films/entertainment would never accept or make something like it. Women get brutalized and killed in the most sadistic and low ways so that the fates of the men seem almost tame when compared to the females.<br /><br />The other version I saw, the newly released DVD in HK (without subtitles) has this ""table brutality"" scene in a much longer form than the subtitled Taiwanese DVD which is otherwise identical to the HK version. I've also heard that the old HK Laserdisc is different from these two and since the end credits are filled with scenes and images not found in the actual film, it is impossible to say how ""uncut"" versions these that have been released or shown theatrically are. Obviously plenty of footage has been cut out, possibly even before the theatrical release.<br /><br />The film is written by Law Gam Fai and Lau Wing Kin, the former having written also films like Dr. Lamb, The Untold Story and Gunmen (Kirk Wong, 1988) but out of his other films that I've seen, Love to Kill is the most gratuitous. Dr. Lamb and The Untold Story both are very brutal and violent but have also some attempt to some criticism towards the authorities and men in general as how it is easy to turn into a beast when chasing or fighting one. The harrowing torture imagery of The Untold Story, the victim being the criminal, is very strong and definitely has its impact to change something that may be rotten in the society and among the police for example. But there's none of this in Love to Kill, it is just honest, calculated and fastly made exploitation which is, by the way, produced by a veteran director Kirk ""Organized Crime & Triad Bureau (1993), Crime Story (1993)"" Wong!<br /><br />Love to Kill earns no more than 2/10 from me as I don't have too high appreciation on films like this. (HK) Cinema is meant to be and can be more and films like Love to Kill are only commercial parasites living among the real pieces of the art.",0 +11075,"I was amazed at the improvements made in an animated film. If you sit close to the screen, you will see the detail in the grass and surface structures. The detail, colors, and shading are at least an order of magnitude better than Toy Story. How they were able to pull off the shading, I will never know. I do hope that PIXAR will provide a documentary on how the film was produced so I can find out how all this was accomplished. Based on this film, I think animated films of the future will be judged on the basis of this film.",1 +24248,"OK i own this DVD i got it new at amazon... i mean i think its badass and a pretty cool flick and melissa bale the slutty/bitchy girl they pick up is hot as hell ..., the acting sucks and the whole polt just sucks the clown is some huge guy wearing a mask and its disgusting but its OK i wouldn't recommend it if like u wanted to rent a good entertaining flick after a hard days work but if u have nothing else to do and ur obbsessed with this stupid movies like i am, watch it sometime, and i do not know how artisan DVD has S.I.C.K. in its DVD collection , s.i.c.k. is not good enough to be owned by a half way decent movie company OK well thats all",0 +7721,"This is one of the most amazing stories I have ever seen. <br /><br />If this film had been directed by Larry Clark, then this story about a school shooting probably would have been shown through the eyes of the killer and whatever led that person to go insane in the first place.<br /><br />Instead, the plot focuses mainly on the aftermath of a school shooting, and how it effected the victims who survived.<br /><br />I had seen Busy Phillips in other films before, but her performance in this movie is by far, her best. The only other movie that I've seen with Erika Christensen is ""Swim Fan"" which made me almost not want to watch this film, but she turned in a very good performance herself.<br /><br />This is one of the few movies I have seen that was actually able to make me cry. Trust me when I tell you, that doesn't happen very often.<br /><br />Home Room is a beautiful film, and that's all there is too it...",1 +19906,"This was director von Stroheim's third effort - it is quite crude and shows none of the exceptional flair for the camera and editing mastery he would display a few years later with his masterworks, GREED and THE WEDDING MARCH. Essentially we have a trio of grifters, masquerading as a Russian count and two Russian princesses who have rented a villa in Monte Carlo. Their aim is to use counterfeit money at the gambling tables and win a fortune. Part of that plan is for the Count (von Stroheim) to insinuate himself between a visiting American ambassador and his ""foolish"" wife, wooing her and hoping to gain some money by playing on her weaknesses. He makes the mistake of also taking the life savings of the maid, whom he has promised to marry. When she sees them together, she sets fire to the room, (von Stroheim and his prey are on the room's balcony). Here von Stroheim first establishes his persona as ""the man you love to hate."" He is thoroughly bad and his character flaws eventually bring him to a very bad and deserved end. The film is crude in its cinematography and editing and not worth seeing unless you are fascinated by the director. There is a cute bit- when he first attempts to meet the Ambassador's wife, she is reading a book - we see the title - FOOLISH WIVES by Erich von Stroheim. This was originally envisioned as a 210 minute film, cut down to 140 minutes by the studio and finally released at 70 minutes. The restoration on Kino Video restores surviving footage (damaged in some way in most scenes) from the alternate earlier version to give us a 107 minute print.",0 +19569,"Awwww....yes, it is heartwarming and all that some unlucky family gets adopted by ABC/Sears and has their home ""renovated."" That's where the humanistic appeal ends. I liked it early in its run, but now this show has become disgustingly excessive.<br /><br />Ten needy families could be given relatively luxurious homes with lots of goodies for every one family that each episode of this show splurges on. The people at Habitat For Humanity must be shaking their heads in disbelief. For example, is it necessary for a healthy sixteen year old boy to have a jacuzzi in his bedroom, or have his bed tricked-out with ""Low Rider"" hydraulics? Does the mom really need her dilapidated, non-running and rusted out old pick-up truck restored and ""pimped"" by some of the best customizers in California? A new one would have done the job quite nicely, and probably for a third of the price. Do people really need a sixty-five inch plasma screen in every room of the house? And then there's the issue of who pays the increased property taxes and utility bills. Even after the zaniacs at ""Makeover"" leave, somebody still has earn a living. I doubt the friendly folks down at Social Services will see the humor in all of this largess.<br /><br />This show is nothing more than a ratings grabber for ABC, and a tacit commercial for its sponsors.",0 +18426,"Every now and again you hear radio djs inviting listeners to nominate movies that the listener can't stand or never watched all the way through. This is the movie that I think of...days later.<br /><br />It's got something to do with a play by Shakespeare. Not sure, but I think I bailed on this movie some 20 odd minutes into it...think I realised that my toenails wouldn't clip themselves, and they were looking at me imploringly to get cut.<br /><br />This movie just seemed boring and pretentious to me.<br /><br />Even though this is the first movie I've given such a low score to (which I've actually attempted to watch), I wouldn't want to put you off other movies by it's English director, Peter Greenaway. I remember thinking that his ""The cook, the thief, his wife and her lover"" was a truly great British film even though its content was at times stomach churning-a brilliant movie, but I can understand why people would balk at seeing it.<br /><br />Another good film by Greenaway was ""A zed and two noughts"". Again, it had some content that pushed the boundaries of good taste, but was intriguing nonetheless.<br /><br />The other film that I usually think of too late for such radio show topics is ""Brazil"". Never managed to watch that all the way through either-kept falling asleep!<br /><br />Unless you have a taste for self-important movies which are off-puttingly highly stylised, laboriously paced and difficult to follow, then steer clear of Prosero's Books.",0 +9992,"A must see film with great dialogues, great music, great acting and a superb atmosphere.<br /><br />In the film you will follow 8 people for one day in the city of antwerp, they are all individuals and sometimes plain weird (that's how I love them!).<br /><br />I'm not going to say anything else, just go see and enjoy it.",1 +22527,"What a load of rubbish.. I can't even begin to describe how awful this film was. The rating it has here is really hard to believe.<br /><br />Avoid... Particularly if you enjoyed the first ginger snaps. The first one was well written, well directed, well executed.. a brilliant film with a fantastic aesthetic and atmosphere. The second one was 'alrite'- decent as a self-standing film, but clearly not up to the level of the first... The third is an insult to the series, period. I rate the films: 10, 6, 1. It's that bad.<br /><br />Oh, and yes it really is set in the past, the sisters are still called Ginger and B Fitzgerald... all muddled in with some half-assed native American mythology. The sisters don't have any real story, or progression, or even a clear relationship... They're just trying to survive and be 'together forever'. That's about as deep as it gets.<br /><br />Staggered that the girls agreed to be in this pile-of-shite, after reading the script.<br /><br />Oh and another thing, staging of action was terrible- people appearing from nowhere regularly, like the girls turn around and there's an elaborate candle-lit setup with a mystic native American woman just sitting there, about to go into a speech. Sets were terrible, couldn't get away from the fact that it was all obviously based in a set, which really didn't help. Also, there was consistently snow outside the camp, but not a trace inside (..on the set).<br /><br />Arrghh,,, so bad! I really was hoping it would be at least as good as the second one.",0 +6316,"This is a neat little crime drama which packs a lot into its 65 minute running time. It has all the right ingredients - a mystery corpse, a weary middle-aged cop Corrigan (Walter Kinsella) and his rookie sidekick Tobin (John Miles), a shadowy killer on the loose and even love interest for the Tobin in the shape of a female botanist Mary (Patricia Wright) who helps solve the crime. There's also a terrific shoot-out finale which takes place in a stone cutters yard.<br /><br />Watch out for a terrific goof near the start of this movie where Lt. Corrigan refers to the dead woman as 'Tatooed Tilly' BEFORE the coroner reveals that she had a tattoo (confusing huh?). Also later when Tobin is chasing the killer across the back yards he is suddenly shown going in the wrong direction at one point - no wonder he didn't catch him!",1 +6600,"This film is one of Michael Keaton's best. Throughout the film he is 'on'. With co-stars like Ms. Henner, Joe Piscopo and Danny DeVito, you can't go wrong. Great laughs, great fun for everyone.",1 +24871,"This is Peter Falk's film. Period.<br /><br />I was 10 years old when this film came out; I was already a film maven at the time. Of course neither my parents nor I saw this film when it came out, but I was in love with the typeface of its ads & the aura that this was An Important Film. Okay, 34 years later I've finally seen the film--having never seen any Cassavetes-directed film previously. He's a hack, overall. Zero sense of timing, editing. Gena's performance reminds me too much of Dustin Hoffman's stint in ""Rain Man"": technically on par but entirely one-note. As Tom Cruise stole ""Rain Man,"" Falk takes the cake for this film.<br /><br />I was annoyed with Gena's performance, really throughout--it seemed better suited for ""Awakenings"" (blecch!). It's not all her fault: she's a basket case from first scene to last. We never find out why?? But Falk's character seems real & is performed WONDERFULLY by Falk as a seriously flawed man.<br /><br />Shave off at least an hour (an editor needed!), and this would have been an arresting portrait not of a woman under the influence but of a simple, Cro-Magnon, man coming to grips with a wife who doesn't work & yet cannot deal with her three kids & her husband's long hours of work.<br /><br />I'd rather remember Cassavetes for ""The Dirty Dozen"" or ""Rosemary's Baby."" He would have been a better director had he snipped his own tendency for excess--as he amply demonstrates with this film.<br /><br />Bob",0 +12218,"I saw this movie when it came out when I was 17 years old and into classic rock (still am)... <br /><br />I never liked opera before because I hate soprano voices, but he changed all that. He was adorable in the movie and had such an amazing voice. <br /><br />I heard on CNN that he died tonight at home of pancreatic cancer, he will be missed, and he definitely left his mark on this world.<br /><br />I hope to buy this movie if I can find it, watch and enjoy. *smile* Maybe I should head over to Amazon.com and have a look before it's sold out.",1 +18746,"I LOVE Don Knotts, let me just say that up-front! He is an enormous talent and the best at what he does, which is portray a nervous, lovably befuddled loser thrown into a position of authority. He is fabulous in this role as Roy Fleming, the Reluctant Astronaut, but the film is pretty dull, really, even though as a kid my brother and I delighted in watching this and his other films. It's still worth watching but really it's a film that is best enjoyed by children. I'd categorize it as 100% family-friendly and something you could sit down and watch with your kids on a family night.<br /><br />As with all of Knotts' films, there's a great cast of beloved character actors and you can't help but smile when Knotts gives one of his shaky, open-mouthed stares, no matter how old and jaded you are.<br /><br />From an adult perspective, one thing I think that is great about this film is how it captures NASA in the 1960s -- all the new modern buildings, the hope, the optimism, the future! And I was surprised at how suave and studly Leslie Neilsen was back then. Only complaint about the story is Roy's love interest, a rather threadbare, unlikeable woman who can't give him the time of day until he becomes a big shot -- if you're like me, you'll be hoping that he gives her the shove-off at the end. Beware -- you'll be whistling the theme tune for days after watching, it's that catchy.",0 +6433,"This movie stars Jay Leno as a Detroit cop, Tony Costas and Pat Morita as a Tokyo cop sent to Detroit to retrieve a stolen prototype of a car motor. A Japanese man traveled to Detroit hoping to sell it to a up and coming car company ran by a man named Derrick Jarryd. Unfortunately for him the men who were supposed to negotiate the deal killed him and took the prototype. An angry Derek Jarryd tries to distance himself from Phillip Madras who led the men. But Madras(played by Chris Sarandon) has none of it and threatens Jarryd forcing him to continue their partnership. Meanwhile in the same junk yard where the Japanese man had been killed, a friend of Tony Costas was also killed by the same men. Tony's friend had been watching the junk yard.<br /><br />Tony sets out to find the killer against his superior's order. Tony is on robbery while obviously homicide should investigate the case. While Tony is investigating the crime he runs into the Japanese cop and mistakingly he arrests him. Eventually they end up working together on the case. They make an odd pair and there are some genuinely amusing parts as well as some ridiculous scenes such as Pat Morita jumping and kicking right through a the windshield of a moving car and kicking Madras in the head. But it ends up being an enjoyable buddy cop movie, at least in my opinion. Jay Leno is no actor, but he is likable in the role and Pat Morita is good as well. Still, they make for one of the more unlikely buddy cop duos in an action film. If you liked buddy cop films, cheesy 80's movies or you want to see Jay Leno as an actor then I recommend this movie.",1 +17210,"Ohhh man! Now this is what I'm talking about! As far as bad/cheesy horror flicks go this movie was truly in a class of its own. A real gem!<br /><br />First off, the film wasn't originally in English. That's okay because the voice dubbing was truly exceptional! Here is my favorite excerpt from the dialog (and there is plenty more where this came from) ""I'm feeling a little better. I'm just thirsty FOR YOUR BLOOD!""<br /><br />And what drama! Here is a play by play recap of the interaction between the military and scientists <br /><br />Scene 1 Scientist: ""You can't do that It'll be a disaster!"" -- Military Officer: ""That's just science fiction"" (he then proceeds to cause a complete disaster just like the scientist predicted).<br /><br />Scene 2 Scientist: ""If you do that many people will die!!!"" -- Military Officer: ""you don't know what you're talking about."" (he does it and many people die).<br /><br />Scene 3 Scientist: ""Don't do that It'll kill everyone!"" -- Military Officer: ""That's nonsense"" (he then proceeds to kill everyone)<br /><br />Scene 4, 5, 6, 7 (you get the idea).<br /><br />If that wasn't enough there were a few scenes that really stood out as instant classics! In one scene, the military has literally 10 guys pointing guns at two unarmed men. The leader yells, ""Go get 'em!"" and all 10 army guys, one at a time, drop their guns and fist fight the two adversaries! Instant classic!<br /><br />And don't worry. No attention to detail was left out! This movie even had a hip/upbeat '80's keyboard/synth soundtrack to set the mood!<br /><br />And trust me I realize this review might contain some spoilers, but there are so many goodies in this epic I really only scratched the surface. A movie of this caliber only comes out once a decade! A true movie watching experience! A masterpiece! Wow!",0 +21516,"This film has so little class in comparison to Strangers on a Train or even, Accidental Meeting for that matter, that despite plot similarities I wouldn't feel right in actually comparing this to either of them. The Yancy Butler character came across as such a dopey dimwit I was too embarrassed for the writer and director to continue watching.<br /><br />I don't enjoy many Lifetime movies but feel compelled to watch one every now and then in the interest of promoting harmony at home. I often groan silently but this film caused me to protest out loud, stand up leave the room and walk around the house mumbling to myself, before I returned to my normally favorite chair to subject myself to more torture.<br /><br />Dean Morgan, Rochester, NY",0 +11644,"There is so much that can be said about this film. It is not your typical nunsploitation. Of course, there is nudity and sex with nuns, but that is almost incidental to the story.<br /><br />It is set in 15th Century Italy, at the time of the martyrdom of 800 Christians at Otranto. The battle between the Muslims and the Christians takes up a good part of the film. It was interesting when everyone was running from the Muslim hoards, that the mother superior would ask, ""Why do you fear the Muslims,; they will not do anything that the Christians have done to you?"" Certainly, there was enough torture on both sides.<br /><br />Sister Flavia (Florinda Bolkan) is sent to a convent for defying her father. In the process, she witnesses and endures many things: the gelding of a stallion, the rape of a local woman by a new Duke, the torture of a nun who was overcome during a visit by the Tarantula Sect, and a whipping herself when she ran off with a Jew. The torture was particularly gruesome with hot wax being poured on the nun, and her nipples cut off.<br /><br />Sister Flavia is bound to continue to get into trouble as she questions the male-dominated society in which she lives. She even asks Jesus, why the father, son and holy ghost are all men.<br /><br />Eventually, she joins the leader of the Muslims as his lover and they sack the convent. Here is where you see more flesh than you can possible enjoy at one time. But, tragedy is to come. She manages to exact sweet revenge on all, including the Duke and her father, but finds that the Muslim lover treats her exactly the same. She is a woman and that is all there is to it.<br /><br />I won't describe what the holy men of the church did to this heretic at the end, but it predates the torture of Saw or Hostel by decades.<br /><br />Nunsploitation fans will be satisfied with the treats, but movie lovers will find plenty of meat to digest.",1 +15004,"Some might scoff, but there is actually a real art with making particularly bad films. This misses out on all fronts.<br /><br />A bunch of young people -- women with heaving breasts and continuously wet T-Shirts, naturally -- go to film ""blood surfing"" and end up running into a 31 foot crocodile.<br /><br />Not only was the croc obviously fake, but some of the props [notice the boat hitting the reef in particular] look like they've come out of thunderbirds!<br /><br />No good, from start to finish. Don't see it!",0 +20791,"It used to be my thinking that movies required plots, or some other means of making you care at all about the story line or anything that is going on. This movie has showed me that you don't actually have to have anything like that.<br /><br />I could sum it up simply as that. But, IMDb wants me to have more lines. It was kind of pretty. not compelling in the slightest. The way the characters talk in the movie makes you think it should have taken place over a matter of days, but there is no passage of time and i'm pretty sure it all happens in an hour.<br /><br />If you are looking to entertain yourself, then buy a gallon of milk and see how fast you can drink it before throwing up. It would be a far better use of your time. Time that you will never get back. Jurassic Park 3 was pulled off better than this movie.",0 +8082,"I saw ZP when it was first released and found it a major disappointment. Its script seemed forced and arch and too fakey '60s. It's politics too upfront and ridiculous. And let's face it, I was still under a love-spell known as BLOWUP : and I still haven't completely shaken it. Now the ""love"" is twisted up with all sorts of nostalgia it evokes and, oh well . . . Good Luck to me!<br /><br />But time marches on and time has been kind to ZP and time has been a teacher to me. I revisit this film about every ten years and it just gets better and better with age. And ZP is it's own ""experience""and is only really linked to BLOWUP through its creator, the late,great Mr. Antonioni.<br /><br />Twelve years ago, I had the great good fortune to see an absolutely pristine print, projected at its correct size (immense), restored by an Italian government cultural agency who knows a good work of art when they see it and knows the importance of keeping such a thing of beauty in good shape. To this day I remember the gasp from the audience when the first shot of Death Valley appeared. It was like a thousand volt visual shock Antonioni had intentionally delivered to wake us up to a new level of awareness. And indeed what follows from that point is an entirely different sort of ""place"".<br /><br />What is astonishing to me is how this film is coming into its own.<br /><br />I remember the second time around seeing it --- the early 80s --- I had begun to feel affection towards the film as a whole and towards Daria and Mark in particular. Whereas, before these two seemed like a smart-alecky shadow version of Zefferelli's Olivia and Leonard (read: Romeo and Juliet)they now were engaging me --- particularly The Girl in her insistent slo-motion-ality. She-took-her-time . . . To Live. Everything, EVERYTHING dies around her.<br /><br />Upon exciting the theater the daylight of Reality quickly began to erase my new found ""enjoyment"". The encroaching shoulder-padded, big haired 80s whispered ""But that's a hippie fantasy --- let it go""<br /><br />The force of Antonioni's vision had, I had realised, already worked itself inside of me the FIRST time around so I answered ""80s"" with an ""Uh-Huh"" and guarded my ""love"" secretly, possessively and jealously.<br /><br />But, this, then is what good art does it lives inside of you, and, if you wish it has its way and ""loves"" you back: secretly, jealously, and possessively. And you get ""changed"".<br /><br />Was thrilled to see that Turner Classic Movies had decided to show ZP in its March lineup. Undoubtedly, ZP must be seen on a gigantic screen so that it can truly take you into its constructed environment. But, hey, sometimes even a glimpse of the Beloved in a newspaper photo is no better than no glimpse at all.<br /><br />Today reality hit, ZP has been withdrawn mysteriously and replaced with the whiney antics of ALICE'S RESTAURANT.<br /><br />So, it is still too ""difficult"", too ""disturbing"", too ""what""?<br /><br />Maybe it's that, as with all good art, it Lives while everything dies around it. <br /><br />Peace.",1 +16306,"Perhaps the worst thing about Carlos Mencia's comedy is that every joke needs to be followed with an insult at the people in the crowd that aren't laughing. If there's anybody who's insecure, it's a comedian who won't shut up about his audience.<br /><br />Then again, perhaps the worst thing about Carlos Mencia's comedy is that he doesn't get off his free speech high horse. If you want to be funny, just make a joke, don't explain all the reasons why you're saving the American way with your failed attempts at generating laughter.<br /><br />Hmm... actually... the worst thing about Carlos Mencia's comedy is that it substitues meanspirited jabs at ethnicities for legitimate humor. Avoid this like the plague.",0 +18674,"Seemingly intended to be a thriller of a movie winds up being almost laughable. It prompted me to exclaim ""Oh my God!"" more than once at the convoluted contrivances of plot that were just plain silly.<br /><br />Fanciful or absurd locations just for the sheer novelty or dramatic situation and improbable, near impossible, human reactions and circumstances are too much to be comprehended as to why they exist.<br /><br />If you have the time and wish to discover just how bad a picture can be then you will want to see this one. Otherwise dedicate some time into watching some paint dry for a more productive investment of time!<br /><br />(That a film released in 2003 is already being shown on TV in July 2003 might give an indication of the film's quality)",0 +8687,"Of all the reviews I've read, most people have been exceedingly hard on Alexandre. Neither Marie or Veronika ever seemed that they would particularly desperate to keep Alexandre, he being only slightly intelligent though not at all intellectual, as most of us are, however hard it may be for anyone to admit. Alexandre is getting away with life perfectly, being totally taken care of, getting and giving what he wants. the girls are allowing this, veronika loves sex, marie is his patron. is there anything wrong with any of this? is anyone in love? really? i don't think so. Though French New Wave cinema is prone to pretension and so on, it is marvelous simply because of its lack of a need for a plot in order to create emotion. Ease is perfectly lovely and all anyone in Alexandre's position, in an urban area can ask for. I'm looking for a patron, anyone interested?",1 +24752,"Relentlessly stupid, no-budget ""war picture"" made mainly to show off the attributes of the spectacular Eve Meyer--not a bad idea in itself--but that should be an embarrassment to everyone connected with it. Laughable ""script"", performances that wouldn't pass muster in an elementary-school Christmas pageant, inept ""action"" scenes, confused direction by the normally competent documentary director Louis Clyde Stoumen--who is apparently not quite sure if he's making a comedy, a philosophical treatise on the futility of war or a leering T&A (by early 1960s standards, anyway) travelogue of Eve Meyer's magnificent body--and a general air of shoddiness and incompetence. Worth seeing in order to watch Eve Meyer strut her stuff, but that's pretty much it.",0 +11727,"This a superb self-contained work that is unconnected with anything before or after. Brat Pack crooning and club exclusivity are not my biscuits of choice, but in this law-free world they make an alluring ambiance. The film is packed with Our Guys, distinctive actors who add distinction to this work with winning performances. The dialogue is a joy. In fact it's a new vernacular. One of the few films that can be watched repeatedly with deepening appreciation.<br /><br />Highpoints include Billy Idol's British loutishness, Ben London's vulturine brassware, Kyle's squirmishness, and the survey of ad hoc philosophies.",1 +15755,"Even with a cast that boasts such generally reliable names as Val Kilmer and Lisa Kudrow, Wonderland fails to yield any sense of depth to this film. It barely brushes the surface of the incidents that happened on that July night in 1981. Kilmer just goes through the motions as John Holmes and Kudrow and Kate Bosworth are both hopefully miscast in the other two lead roles; as Holmes's wife and underage girlfriend, respectively. The rest of the cast has such small roles that it's impossible to get any dimensions from them. The film also stars Carrie Fisher, Ted Levine, Franky G, MC Gainey, Dylan McDermott and a cameo from Paris Hilton.",0 +15396,"*may contain a spoiler of sorts?* The mere mention of Crispin Glover is enough to send some geek's panties in a bunch. His landmark appearance in Back to the Future as George McFly has sealed him into the American conscience forever. More recently, he has been trying to get back into the culty subconscious with Bartleby and Willard.<br /><br />This time, however, Crispin has made a 76-minute, cheap dada film. At times it reminded me of genius, while overall it almost insulted me, but not because of its content. Content? What Is It? is a movie where, in one half of the movie, all of the actors have Down's Syndrome, giving it a freakshow feel to it. The other half of the movie includes Crispin Glover, Adam Parfrey, and a guy with cerebral palsy. This all had the feel of what John Waters was attempting to do with Desperate Living, and simultaneously feeling more successful and failing miserably.<br /><br />The half with the Down's Syndrome actors also features many many killed snails. It is about a guy who has snails, and ends up killing one. He is also tormented by a bunch of other people, and a grasshopper. He falls in love with 2 girls, one of which he has sex with in a graveyard. He also has a falling out with a friend who teases him.<br /><br />In a weird semi-interior set, Crispin Glover is the director of this show. He is something like the control of the guy's mind, and the cerebral palsy guy is something like the sexuality. Well, he at least gets masturbated in explicit scenes. There is other ""shocking"" imagery made humorous, like Nazi Swaztikas crossed with Shirley Temple, and minstrels in black face saying they're Michael Jackson.<br /><br />In the outside world, the tormentor is still dealing with his love of killing snails and being beaten by the other people. They beat him with rocks, and such. Later, they beat the minstrel after putting him on trial.<br /><br />Back to the interior, Crispin Glover is still the ruler of his set, and tries to control everybody, but fails miserably.<br /><br />What Is It? makes less sense than Dr. Caligari, and has more than a passing style stolen from it. The claustrophobic mental space feels very much like the way the no-wall sets of Dr. Caligari felt claustrophobic. They also had some dialogue that was absolute nonsense. And, it was all wrapped up with absurdist imagery for humor.<br /><br />The problem is, about 20 minutes into the movie...maybe a little more...What Is It? runs out of imagery. For the next 56 minutes, we keep running on the same sets of images, only introducing new imagery in the form of an absurdist puppet show. The movie seems little more than a movie which attempts to push the envelope in offensive and taboo imagery. It tries to mock and confuse the audience. But, the issue is that it only has enough different imagery for a 40 minute movie.<br /><br />Even worse than that, the cinematography, set design, and everything else felt very very cheap and almost unplanned. It felt like ""OK, this is the way we can do it and get it out of the way."" It didn't feel interesting, and was quite...boring. Dr. Caligari, on the other hand, had amazing cinematography and framing. The difference between the two is quite astounding.<br /><br />rating: C",0 +19042,"Eyes of the Werewolf (1999) is a really bad movie. The premise was real good but the overall execution was just terrible. I wished the filmmakers would have taken their time with this project instead of rushing it into production. Some blind dude gets some new eyes, bad thing is that they belong to a mean old werewolf. Nasty things begins to happen to the dude as he turns into a cheesy looking creature. Can he find a cure before his hot girlfriend finds out? Who is that weird little troll who helps him out and what's up with that female cop? If you really want to find out, check out Eyes of the Werewolf!<br /><br />Not a bad idea for a movie. I just wished the filmmakers would have spent a lot for time in pre-production before they decided to shoot the movie.",0 +5671,"The morbid Catholic writer Gerard Reve (Jeroen Krabbé) that is homosexual, alcoholic and has frequent visions of death is invited to give a lecture in the literature club of Vlissingen. While in the railway station in Amsterdam, he feels a non-corresponded attraction to a handsome man that embarks in another train. Gerard is introduced to the treasurer of the club and beautician Christine Halsslag (Renée Soutendijk), who is a wealthy widow that owns the beauty shop Sphinx, and they have one night stand. On the next morning, Gerard sees the picture of Christine's boyfriend Herman (Thom Hoffman) and he recognizes him as the man he saw in the train station. He suggests her to bring Herman to her house to spend a couple of days together, but with the secret intention of seducing the man. Christine travels to Köln to bring her boyfriend and Gerard stays alone in her house. He drinks whiskey and snoops her safe, finding three film reels with names of men; he decides to watch the footages and discover that Christine had married the three guys and all of them died in tragic accidents. Later Gerard believes Christine is a witch and question whether Herman or him will be her doomed fourth husband. <br /><br />The ambiguous ""The Vierde Man"" is another magnificent feature of Paul Verhoeven in his Dutch phase. The story is supported by an excellent screenplay that uses Catholic symbols to build the tension associated to smart dialogs; magnificent performance of Jeroen Krabbé in the role of a disturbed alcoholic writer; and stunning cinematography. The inconclusive resolution is open to interpretation like in many European movies that explore the common sense and intelligence of the viewers. There are mediocre directors that use front nudity of men to promote their films; however, Paul Verhoeven uses the nudity of Gerard Reve as part of the plot and never aggressive or seeking out sensationalism. Last but not the least; the androgynous beauty of the sexy Renée Soutendijk perfectly fits to her role of a woman that attracts a gay writer. My vote is eight.<br /><br />Title (Brazil): ""O 4o Homem"" (""The 4th Man"")",1 +9578,"A suspenseful thriller that bears some resemblance to Deliverance as for scenery and setting. There are also some very innovatively shot scenes and good music, although the daftness and sometimes seemingly careless attitude of one of the characters is unfitting to the situation, although this is not a mayor problem. It also poses interesting questions about justness of revenge and limits of friendship.<br /><br />",1 +2619,"the movie is far more sophisticated and intelligent is its exploration of sexual tension than such American attempts as 9 and a half weeks...the courtroom scene itself...with the couple copulating in the cage while the heroine pleads for their orgasm...is amazing...I have not seen this movie in 20 years...but it made indelible pictures in my mind...it is rich in texture and successful in creating a world where sex is the engine for all activity, and at its bottom is the yawning angst that lives in us all....the plot is European, and it meanders a bit, but so does life...especially when you are 17 and have a constant hard on....",1 +17463,"A missed train. A wrong phone number. An extra cup of coffee. What happens to those around you when you make a seemingly innocuous decision? Most people don't give it a thought as they absorbed in their own thoughts and actions.<br /><br />""Happenstance"" tells the story of the interrelations and cause-and-effect of the mundane as it pertains to a group of normal Parisian folk. It has all the components of what passes for contemporary theater, with the full cast of the dysfunctional and disillusioned.<br /><br />There's a cheating husband, an illegal immigrant, a classic slacker, a pickpocket, a crazy grandmother, an annoying girlfriend, a selfish roommate, and a homeless man. Audrey Tautou serves as the erstwhile protagonist (in the sense that she's on camera as much as anyone else and opens and closes the film) and normal girl who just can't seem to find the right rhythm in her life.<br /><br />She learns at the beginning of her day from a stranger on a train what her horoscope holds for her. What happens to her in the course of the day is told through various characters. Does the prediction come true? The concept is good, but the storytelling is flimsy. The connections from one event to the next are weak. There's better storytelling in 15 seconds of the Liberty Mutual insurance commercial where one person sees a good deed and passes it along to another than there is in two hours of Happenstance.<br /><br />If you enjoy Audrey Tautou, then you certainly can sacrifice the time for this film, but you'll finish it dissatisfied and wondering what this same storyline could be if it were handled by a better producer and director.",0 +7685,"I stumbled on this series rather by accident. After half an episode, I was hooked. American Gothic was a dark, strange series with Gary Cole as the mysterious, probably evil Sheriff Buck who is trying to gain control of his illegitimate son Caleb, played by Lucas Black. I was impressed with Gary Cole's sinister sheriff and I was even more impressed with Lucas Black. Lucas Black's Caleb was able to stand up against Sheriff Buck, one of the most frightening characters ever created for a TV series. I have rarely seen a child actor with as much presence or talent as Lucas Black. If you were not lucky enough to see Lucas in American Gothic, see him in Slingblade.<br /><br />It was a remarkable show with many ambiguities and mysteries that were never explained during it's short run.",1 +9712,"Though not a horror film in the traditional sense, this creepy little film delivers the goods. It seems a vampire is loose in a small German town draining its victims of their blood. Police Inspector Karl Brettschneider, Melvyn Douglas in one of his early roles, is skeptical believing a crazed killer not a vampire is running amok. The only one who believes him is Ruth Bertin (Faye Wray) the inspector's girlfriend and lab assistant to Dr. Otto von Niemann (Lionel Atwill) who though apparently an eminent scientist goes along with the vampire theory. The townspeople suspect the weirdo Herman Gleib, played with his usual frenzy by Dwight Frye who seems to be having a lot of fun with his role. The film contains quite a bit of humor which helps relieve some of the intensity involved with all the murders being committed. One funny part has Gussie Schnappmann (Maude Eburne), Ruth Bertin's aunt, thinking weird Herman has turned not into a bat but into a dog. Maude Eburne and Dwight Frye make a good comedy team.<br /><br />This budget movie brings in elements from ""The Cabinet of Dr. Caligari"" with Dr. Niemann using the power of suggestion to make a somnambulist carry out his orders, from ""Frankenstein"" by using the human blood to help create life in the laboratory, and ""Dracula"" since the murders are believed by everyone except the inspector and his girl to be the work of a bloodsucker. Thses elements are mixed well by director Frank R. Strayer with a little comedy thrown in for good measure. The concoction works. The restored version I viewed used tinting to increase the spooky atmosphere. So try to see the this version if possible.",1 +2195,"OK. Who brought the cheese. I love it. During it's run it became a phenomenon. The Anorexic Twins became popular.Bob Saget started making a paycheck (Instead of his REALLY funny stand-up). And people knew who Dave Coulier was. This is when life was good and simple. This is one of the great American classics. It was humorous and always brought home a good lesson. And this is where I differ from the norm: I liked the last few seasons. Like Home Improvement, when children get older there are a lot more you can do with the script. This is why I dare say...It could have gone much later than it did. But anyway. I gave it an 8/10 because of its wholesome, funny story lines, and because of Bob Saget!",1 +13421,"I think I've seen all of the Grisham movies now and generally they're all very poor, except for The Rainmaker, but this one is so bad it's unbelievable<br /><br />WARNING SPOILERISH<br /><br />It's one of those movies where the character does the stupid irrational things that no one would ever do. He's a lawyer for Christ's sake. Why when his children go missing does he not call the Police. Oh yes it's because all the Police hate lawyers so they're just ignore him and let him be attacked.<br /><br />When he's arrested for murder they just let him go free, he would be locked up in a cell pending a bail hearing. <br /><br />Why would you drag your kids halfway across the country when you could easily protect them at home.<br /><br />The Police don't bother to try and find an escaped mental patient, they don't bother to interview his daughter.<br /><br />As for the ridiculous ending .<br /><br />In summary, silly, very unrealistic and a complete waste of time.<br /><br />0/10 One of the worst films ever made.",0 +10506,"Clint Eastwood returns as Dirty Harry Calahan in the 4th movie of the Dirty Harry series. Clint is older but he's still got it, Harry was told to have a vacation after some trouble that happened because of a robbery (where the memorable ""Make My Day"" catchphrase comes from!) But the city he took a vacation was worse, a woman turned vigilante after a rape attack in a funfair and starts getting the punks one by one. The last movie to see Sandra Locke in a Clint Eastwood movie! An improvement after The Enforcer which was a bit more of a comedy and less serious. Clint Eastwood's sunglasses were Gargoyles which are best known for the sunglasses that are worn by Arnold Shwartzeneger in The Terminator. Worth a watch if you like Clint Eastwood, the Dirty Harry films or like action crime thrillers.",1 +752,One of THE comedies of the 1970's. Also has the best signature tune of any comedy show. The story is about three people sharing a flat living above their landlords George and Mildred. The comedy rests on the mix of the people sharing. A man and two women. Richard O' Sullivan is besotted with Paula Wilcox. Its played in a gentle and not a leering way which is why this show was such a success.<br /><br />The scripts and the stars were always giving the best performances and Richard's frustrated love life was shown with a relaxed charm. The end titles contained visual jokes which went unnoticed in the early 1970's but concerned the flat sharers living arrangements.,1 +5199,"I gave it an 8 only because it had received such low votes... this is definitely really about a 5.5..... Ummm.. it was kind of bloody, had likeable, shallow characters, and it had some really hot babes in it. I like the eclectic killer, because he didn't kill people the same way everytime... that sometimes gets old.",1 +24522,"Someone, some day, should do a study of architecture as it figures in horror films; of all those explorations of weirdly laid out mansions, searches for secret passageways and crypts, trackings of monsters through air ducts, and so forth. Offhand I can recall only a few films in which architecture played a major role throughout--""Demon Seed,"" ""Cube,"" the remake of ""Thirteen Ghosts""--but it's at the heart of every story about a spooky house or church or crypt; it's all about the character and the affect of spaces, passages, and walls. So I was looking forward to this thriller where it promised to be central. The idea is this: An architect has built--actually, rebuilt--for himself a huge and rambling house; his wife has just left him, mainly because of his own self-centeredness, but also, it is intimated, because she can't get used to the place since he remodeled it. Living in unaccustomed solitude (real this time, rather than virtual), he comes to suspect that somebody else--a stranger who had come to the door one evening asking to use the phone and then suddenly disappeared--is living into the house with him; only the place is big enough so that he never sees him.<br /><br />This is a good start for a melodrama, whose development one would expect to follow some such lines as these: After searching the house for the intruder a few times without success, the architect resorts to his blueprints to undertake more systematic searches, trying in various ways to surprise, intercept, or ambush the intruder, maybe by means of some special features he built into the structure. Meanwhile the intruder has discovered hiding places and back ways between places that the architect didn't foresee or doesn't remember. The movie would turn into a cat-and-mouse game, a hunt, a battle; and finally, in trying to trap the intruder, the architect himself would end up trapped in his own creation, in some way he didn't expect. Then he would be forced to think himself out of it--and maybe at the same time out of his own self-imposed isolation--and in a final twist would nail, and maybe even kill, the ****er.<br /><br />Nothing like this happens in this movie; the house is just a house, the architect is just a guy, and his nemesis is of an unknown character, if he exists at all. Here is what does happen in the movie: Once the intruder is installed in the house--if he is--the architect begins hearing noises, but when he goes to investigate finds nothing. He calls the police, they think he's slightly nuts; he persuades his estranged wife to spend the night, she thinks he's more nuts. At last, more or less accidentally, he runs into the intruder (doesn't get a good look, but figures, who else could it be?--not a hard question, in a story with, to that point, fewer than three principal characters), whereupon he locks the doors, lowers the grills on the windows, throws away the key (I don't know why he thought this necessary), and leaves his victim to starve. I missed why this was a given: the doors and walls are made of steel? In any event, the architect takes to sleeping in his car. And since the idea of the movie has languished undeveloped and cannot now be developed further, something else must be devised to take its place. And this is it: The architect--are you ready?--moves into the house of the man who (presumably) moved into his, and lives there in the same way. How is this possible? It is not, but the movie takes this route to try and make it seem so: The architect has drawn a picture of the man who came to his door; and when he leaves the house he takes the picture with him; and while sitting in his car, he throws the picture into the street; and two kids pick it up and observe that it looks like Martin, their neighbor; whereupon the architect asks where his house is and the kids point the way.<br /><br />If this sequence seems to verge on the implausible, what ensues plunges right in. The architect takes up residence with Martin's wheelchair-ridden wife, unbeknownst to her; so stealthy in his moves and so cunning in his reading of his hostess that he's able always to leave a room just as she enters or to duck out of sight just as she turns around. Throughout this section the movie is clever in one way, making (or leaving it to the viewer to make) the point that his life with this stranger, who doesn't know he's there, is in essence the same life he lived with his wife, as a virtual recluse with her as a convenient buffer. But at the same time, his inability to live in the world makes his transformation into Raffles the cat-burglar entirely incredible. Not to go into the series of twists at the end--including another murder achieved by locking someone in behind another invincible door--this one in front of a landing so flimsy that it collapses under the weight of a wheelchair; two nice people who take murder in stride; and (before the story started) the unnoticed construction of a tunnel under several houses.... To the final, long-anticipated twist, the movie adds another, to make it even more offensive, and then...ends.<br /><br />Here is a story that depends on the development of two things--the idea of the stranger in the house, and the character of the man whose house it is--and fumbles both. The first fumble makes it boring; the second made me angry, as it pushed its main character farther and farther along a more and more zigzaggy path, and never offered any explanation for the character who most required one: Martin the tunnel-builder and sneak-tenant. The story should be redone by someone, some day.",0 +9963,"Forbidden Planet rates as landmark in science fiction, carefully staying within ""hard"" aspects of the genre (science -- not fantasy, ergo nerds will love it) while still playing with imagery and ideas of contemporary 1950s values. Morbius's isolated house is a model of modern design with open spaces that step out into sculpted gardens, a swimming pool, and the ultimate home appliance: Robby the Robot. ""A housewife's dream!"" exclaims the Captain after lunch and a demonstration of the robot's abilities to synthesize food and disintegrate waste.<br /><br />Also revealing to the 1950s: Fruedian psychology rears its head in the Id explanation, although Morbius dismisses it as an outdated concept. There is a touch of the Pacific war drama in the battle with the invisible monster and life aboard the saucer. Perhaps most timely is the post-atomic fear that Science is the enemy, and arrogant scientists will unwittingly bring down destruction in their blind quest for knowledge.<br /><br />Yet the suburban drama presented by Forbidden Planet seems uniquely fresh in the sci-fi genre. They aren't swashbucklers or heroes, but ordinary sailors crossing the galaxy with a serviceman's crudeness and honesty. The good guys drive the flying saucer, and the aliens are so long gone we don't even know what they looked like -- although their music er-""atmospheric tonalities"" by Bebe and Louis Barron are remarkably futuristic today. The views from Morbius' house are truly alien with jagged cliffs and pink bonsais. The interior of the saucer is just this side of Buck Rogers. There's a lot visually to like. Although we get fantastic monsters and robots for the kiddies, Forbidden Planet is a cerebral movie, slow paced and talky. It is working on many levels at once: hard sci-fi against space adventure, philosophical against domestic. <br /><br />There are many suburban touches. In spite of all their space-talk, the soldiers are dressed for the golf course. Morbius' fatal discovery is a humble educational facility, a schoolhouse. The most interesting character is Morbius' daughter Altaira. Having never seen a man she is unashamedly forward to the crew. She's a post-Madonna teen who designs her own space-age clothes and takes every opportunity to change outfits -- imagine Christina Aguilera with a household replicator. Men watching the film might see her as a naive girl in a minidress, but every woman knows there is no such thing as a naive girl in a minidress. Anne Francis deserves better recognition for humiliating the Leut with kisses. Alas we'll never know if she was ""working"" him as he suspects, since the Captain interrupts and becomes a more interesting target for her attention. She is the character who makes the important change in the film. Shocked that her father compares the dead Doc to the other ""embeciles"" in his landing party, she turns away from her father, her home, to leave with the sailors for Earth. It's this act of defiance, of maturity, that sends Morbius' Id creature over the edge, allegorically destroying its creator just as it did thousands of centuries earlier to the Krell. <br /><br />Maybe the Krell had teenage daughters too...?",1 +16992,"Well, because I'm a musician I thought, maybe I'll check this movie out on TMC, nothing else good on. One of the worst mistakes of my life so far, and it's only half done. I seriously thought it was one of those soft core movies with crappy plot and crappy acting, crappy filming and crappy effects. But nope, I don't even get the pleasure of that. Even the ""musicians"" weren't very good. I was hoping for maybe some laughs, but I wasn't sure if they were attempting to throw in one-liners or not. But now I have to sit here and watch the rest just until Pulp Fiction starts. Or maybe something better. And now i get to sit here typing until i have 10 lines",0 +4397,"After being sent to prison for no less then 10 nor more then 40 years for being busted with drugs and refusing to give up her accomplishes, Jackie (Erica Gavin of Russ Meyer's ""Vixen"" and ""Beyond the Valley of the Dolls"", in her last film role) has to get accustomed to life in the big 'doll' house, or at least try to, in this early film by Jonathan Demme. Due to it's tawdry nature and sheer watchability, I would also rank this as one of his best films, right below ""Silence of the Lambs"" and ""Stop Making Sense"", but so far above any of his other movies. This minor classic is just campy, sleazy, and fun enough to be an amazingly good guilty pleasure and thankfully never once goes overboard into all out parody of the Women In Prison genre. It ALMOST washed out the rancid bad taste of the ludicrously preachy ""Philidelphia"" from my mouth. However, the film is not without it's downfalls (the 'un'talent show is a HUGE chore to sit through and goes on far too long, Barbera Steele is sadly wasted, among other small things) But don't let those gripes stop you from watching an otherwise enjoyable movie.<br /><br />My Grade: B- <br /><br />DVD Extras: 5 minute Roger Corman interview; Cast & crew Bios; Original Trailer; and Trailers for ""Candy Stripe Nurses"" (with nudity), ""Big Bad Mama 2"", ""Big Doll House"" (with nudity), & ""Crazy Mama"" <br /><br />Eye Candy: Juanita Brown, Cheryl ""Rainbeaux"" Smith, Erica Gavin, Roberta Collins, Ella Reid, Lynda Gold, and some others all show skin",1 +4936,"The short that starts this film is the true footage of a guy named Gary, apparently it was taken randomly in the parking lot of a television station where Gary works in the town of Beaver. Gary is a little ""different""; he is an impersonator and drives an old Chevy named Farrah (after Fawcett). Lo and behold the filmmaker gets a letter from Gary some time later inviting him to return to Beaver to get some footage of the local talent contest he has put together, including Gary's staggering performace as Olivia Newton Dawn. Oh, my. The two shorts that follow are Gary's story, the same one you just witnessed only the first is portrayed by Sean Penn and the second by Crispin Glover titled ""The Orkly Kid."" If you are in the mood for making fun of someone this is definitely the film to watch. I was doubled over with laughter through most of it, especially Crispins performance which could definitely stand on it's own. When it was over, I had to rewind the film to once again watch the real Gary and all his shining idiocy. Although Olivia was the focus, I would have liked to have seen one of the ""fictitious"" shorts take a jab at Gary's Barry Manilow impersonation, whic h was equally ridiculous.",1 +22091,"I feel blessed to own what is known as the worst Steven Seagal movie ever made. I knew I was on to something special when Steven opened his mouth and someone else's voice came out. By the middle of the film my eyes were beginning to hurt and I was almost falling out of my chair with uncontrollable laughter.<br /><br />Steven is Steven (with an ever changing voice) and totally unbelievable in his role (as always). Who the hell lets people with bad nappy-hair pony tail mullets into the Forces anyway? He also always writes himself into totally unbelievable love interests with women at least 20 years his junior. The supporting actors all look like they've been shot in the dark - btw, did they shoot this movie in the dark with just a penlight torch for lighting? <br /><br />This is truly abominable in every way possible. Invite all your friends around and make a social event out of it - this one's truly special.",0 +2579,"I saw this movie in my childhood. And after 10 years I did not remember anything about this movie but I found out it I also don't know how I was able to find out this movie. Its my life. My all times favorite movie. My words will fall short of true meaning what I have inside for this movie. I follow this movie. It's a brilliant mix of fantasy, comedy, romance, horror, erotic, scary and martial arts. The story about the power of love is pretty touching and warm. It's a masterpiece of Hong Kong Cinema.<br /><br />Sinnui Yauman, is without a doubt one of the best ghost stories ever made into film. Written by Songling Pu and directed by Siu-Tung Ching, A Chinese Ghost Story has it all. Ling Choi Sin played by Leslie Cheung is a young man down on his luck who goes in search of a monastery for lodging, deep in the woods, a place the villagers seem very afraid to go near. The trek alone is perilous with wolves, and a crazy taoist monk lives at the temple.<br /><br />Ling Choi Sin meets Tsing, a beautiful and mysterious young girl who also lives nearby in a deserted temple. She is forced to seduce men for her evil mistress, but when she meets innocent Ling Choi Sin they fall in love.<br /><br />Ling Choi Sin is sort of a bumbling fool but his heart is in the right place, while Tsing tries to protect him from the other spirits in the woods, he tries to protect her from the monk who is trying to kill the spirits in the woods. There's great martial arts, even a monk that breaks out into drunken song as he performs ritual taoist sword forms. The movie does a lot of traditional old martial art films acrobatics, with magic and flying through the air, leaping from tree to tree, with elegant long gowns and scarves, but the movie genuinely flows, and everything is effective.<br /><br />Tsing is to be married to a evil tree monster, which cant be good, and we feel her plight in her home where we meet her sisters and stepmother who is truly not nice.<br /><br />In the end they must fight a tree witch with a deadly tongue, and go with Yin deep into the heart of hell to fight a thousand year old evil to save their souls, and bring Ling's ashes back to her home for a proper burial so she may have a chance at reincarnation.<br /><br />A beautiful story that truly pays attention to details. One is touched in many ways by this movie, you'll laugh, cry, and just have fun with the great martial arts and cinematography. And though at the end, Yin and Ling Choi Sin ride off into the morning sun under a enchanting rainbow, we never know if Tsing was afforded a reincarnation, but we do know her.",1 +22284,"This film was terrible. OK, my favourite film is 'The Wicker Man' (1973), so I was always bound to be a little biased. <br /><br />The plot rambles along, throwing out enough of the key elements of the original to make the term 'remake' highly dubious. (He's not a virgin, but IS allergic to bees. WOW!) So many things happen that make no sense and are unexplained, which I'm afraid Mr LaBute does not a horror movie make. (How are two people we clearly saw blown up in a car at the start alive and well at the end of the film?) Cage looks haggard and bewildered throughout, and his character is prone to calling out ""Rowan!?"" at the slightest noise. The 'nods' to the original are irritating as they come off as tacky rather than as intelligent homage. For example, certain incidents mirror the original (The girl falling out of a cupboard pretending to be dead when Woodward/Cage is searching the island) and several lines of dialogue are plucked straight from Anthony Schaffers original screenplay and shoehorned in.<br /><br />I'm sure others will provide a better and more detailed analysis than this, I really can't be bothered to write any more about this film. It lacks any kind of substance. Throw it on the scrap heap with all the other remakes that have sullied the good names of the films they were 'based' on (in this case very loosely).",0 +17183,"I can't understand all the hype about this movie. OK, if you like cheap splatter, you will love this movie, but if you like good stories and good actors - don't watch this. Personally i really disliked the actors in this movie, they seem to be hired straight from the street. The Dialogs are completely flat and you always know what's coming up next. The overall quality of this movie lacks of the supposable very low budget. When we saw this movie (me and 3 other people) we all had in mind, that this movie was made by some people who needed to do this, just to get their graduation at a film school - with the lowest effort. Another issue that really lessens the whole experience is the bad cam (very shaking) and the bad sound, the whole movie seems to be recored with a single microphone.",0 +19782,"I am not one of those people that will walk out of a movie that was based on source material and automatically say, ""The book was better."" I know better than to demote the value of a movie just because it wasn't a faithful adaptation. There is a lengthy process and lots of decisions that go into making a movie that are sometimes out of the director's/editor's/cinematographer's/producer's control and certainly out of the original author's control. Therefore, it is unreasonable to expect a movie to be exactly the same, word for word, as a book or play or video game or Disneyland Ride, or whatever! A movie should be judged on its own standard and how it fits in society. Moreover, a successful movie should be made because the material is relevant to the society which it belongs and, if it is based on source material, its relevance needs to be reexamined and enhanced by the filmmakers. <br /><br />Films like There Will Be Blood follow this paradigm because while it was based on a novel written at the turn of the century, Oil!, it feels relevant because of things like the Iraq war and energy concerns that the film's country of origin, the US, was and is experiencing. Even King Kong, based on the original film, benefits from using new technology and concerns of animal rights that people have.<br /><br />With that said, I just don't understand why they even bothered to make this movie? Besides the great performances, guaranteed Oscar nods and Shanley's director/writers fee and royalties he will get, this movie seems to come from nowhere. It should have simply stayed as a play. The movie (which is essentially the same as the play) says nothing new about the reprehensible sexual atrocities committed and in many cases covered up by the Catholic church here and abroad. It says nothing new or different than the original play. I can't help but compare this movie to another movie that came out at around the same time: Frost/Nixon, which was also based on a play. Frost/Nixon, while about Nixon's regrets, seems relevant because it seems to have come at a time when President Bush was about to leave office. The regrets that Nixon had, as depicted in the play/movie, about the war and his presidency could just as easily reflected on Bush and his presidency. In that respect Frost/Nixon seemed more relevant and actually benefited from a wider distribution via film because it got people talking and reflecting about the political status quo in the country at the time. In contrast, Doubt felt like it was yesterday's news and didn't seem to offer anything that the play didn't offer.<br /><br />Of course the movie is ""good,"" the performances are outstanding, and the screenplay adaptation is apt, but so what? Why didn't it just stay as a play? Why, besides marketing and financial reasons, make it into a movie? It gave audiences nothing new to discus about the awful subject.",0 +5762,"The early career of Abe Lincoln is beautifully presented by Ford. Not that anyone alive has seen footage of the real Lincoln, but Fonda, wearing a fake nose, is uncanny as Lincoln, with the voice, delivery, walk, and other mannerisms - exactly as one would imagine Lincoln to have been. Ford, in the first of three consecutive films he made with Fonda, is at the top of his form, perfectly evoking early 19th century America. The story focuses on a pair accused of murder that Lincoln defends and the courtroom scenes are quite well done. The supporting cast includes many of Ford's regulars. This was Alice Brady's last film, as she died months after its release.",1 +10210,"Eye in the Labyrinth is not your average Giallo...and to be honest, I'm not really sure that it really is a Giallo; but Giallo or not, despite some problems, this is certainly a very interesting little film. I'm hesitant to call it a Giallo because the film doesn't feature most of the things that make these films what they are; but many genre entries break the mould, and this would seem to be one of them. The film doesn't feature any brutal murders as many Giallo's do, but this is made up for with a surreal atmosphere and a plot just about confusing enough to remain interesting for the duration. The plot seems simple enough in that it focuses on a doctor who is murdered by Julie, his patient who, for some reason, she sees him as her lover and father and is offended when he walks out on her. We then relocate to a big house lived in by a number of people, but nothing is really what it seems as there are a number of secrets surrounding various events that happened before Julie's arrival...<br /><br />The film seems to be professing something about how the mind is like a labyrinth. This never really comes off, and I preferred to just sit back and enjoy what was going on rather than worrying about what point (if any) the film is trying to make. Eye in the Labyrinth is directed by Mario Caiano, the director behind the excellent Night of the Doomed some years earlier. He doesn't create the atmosphere as well in this film as he did in the earlier one; but the surreal aspects of the story come off well, and the mystery is always kept up which stops the film from becoming boring. The film stars Rosemary Dexter, who provides eye candy throughout and also delivers a good performance. Most of the rest of the cast aren't really worth mentioning, with the exceptions of Adolfo Celi, who is good as the villain of the piece and Alida Valli, whom cult fans will remember from a whole host of excellent cult flicks. The film does explain itself at the end; which is lucky as I'm sure I'm not the only viewer who was more than a little confused by then! Overall, this may not be classic stuff; but its good enough and worth seeing.",1 +199,"I started watching the show from the first season, and at the beginning I was pretty skeptical about it. Original movie was kind of childish, and I was just looking for some sci-fi show while waiting for the BSG new season.<br /><br />But after few episodes I became a fan. I've loved the characters - the not-so-stupid-as-you-think-he-is Jack O'Neill, the not-only-smart Samantha Carter, the glorious Teal'c, women and kids favorite, and brilliant Dr. Daniel Jackson.<br /><br />Of course, stories sometimes not serious, sometimes even ridiculous, but mostly it's not about technology or space fighting - it's about helping your friend, even risking your life for him. It's about ""we don't leave anybody behind"". Struggling to the end when all hope is lost. About the free will, and all good qualities that makes a human - Human.<br /><br />And now it's breaking a record, going 10th season, and still doing good.",1 +9022,"We showed this movie at the local Film Society, and the art-house crowd had the time of their cinematic lives. It's tasteless, groovy and very funny in a sixties kind of way. The Kraft Kitchen recipe sketch had them laughing like maniacs. The rest is a mixed bag, but the highs definitely beat the lows. By the way, whatever happened to Ken Shapiro??",1 +1052,"Following a sitcom plot is so mindlessly easy that having her character simultaneously operate both within and without the context the rest of the cast inhabit is the kind of experimentalism that sitcoms could really use. The supporting characters ground the show in a sitcom reality which provides a contextual counterpoint to Sarah's erratic persona which, beyond general insensitivity, has no specific recurring traits for behavioural expectations to be based on, making her less a character than a canvas to be repainted in every episode if not scene. Sarah's ability to see everything from an outside perspective enables her to parody aspects of social behaviour that are subtle enough to usually go unnoticed. Every time she speaks it's like a self-contained 5 second skit. She overemotes a lot, demonstrating the countless things a smile or change in vocal pitch can signify, but never sticks with one idea long enough for you to get comfortable and form expectations that will be satisfied. This may be the most creative, original and experimental TV program ever.",1 +16327,"The Brain That Wouldn't Die is one awful piece of film that stinks from the opening credits. It's got all the classic signs of being bad: unbelieveable plotline, terrible acting, low-grade sets and lighting. The plotline goes like this: When a doctor and his fiancee get caught in an accident, she gets decapitated and he picks up her head and takes her to his lab, where he sets up her head in a pan with some special liquid that keeps it alive. I'll bet Virgnina Leath, who played the head in a pan had to spend a lot of uncomfortable time wearing that pan around her neck and squatting under a table. Anyway, the doctor then tries to find her a new body, and hires two strippers so she can chose one to have her new body. Bad all the way through, so bad it was torn to pieces on Mystery Science Theater 3000.",0 +14329,"CRIME BOSS is directed by Alberto De Martino; an Italian crime drama partially filmed in Hamburg, Germany. An easily forgotten movie. Even in spite of a good car chase sequence, this flick seems to lumber on almost aimlessly. A new Don takes over a powerful Mafia family and finds himself fighting for his own life. Unwritten laws and ethics of the Mafia code make it hard to trust in anyone especially when millions of dollars are at stake. Brutality and violence breed the same in return. This can not be put on a shelf with the real gangster epics. Just the look of the film brings back memories of American drive-in fare. Even the popular American actor Telly Savalas can't boost the calibre of this crime drama. Antonio Sabato also stars with:Paola Tedesco, Guido Lollobrigida, Serio Tramonti and Piero Morgia.",0 +8518,"The inspiring story of Carl Brashear (Cuba Gooding, Jr.), a black man who grew up in poverty in Kentucky and then joined the US Navy, aspiring to be the first black Master Diver in Navy history. We are shown the series of struggles from boyhood on that Brashear has to overcome to make his dream come true (and then to keep it alive.) Not the least of the challenges was Master Diver Bill Sunday (Robert DeNiro), the head trainer at the diving school the Navy sends Brashear to, who is not especially sympathetic to Brashear's goals, but who ultimately becomes an unlikely friend and supporter.<br /><br />This is a good movie; fast paced and with a lot of action, although not an ""action"" pic in the normal sense of the word. There's a very human story here as well, and an interesting study of racism and the struggle to overcome it; there's also a sense of the struggle that took place in the 1960's between older and younger naval officers (the ""old navy"" vs the ""new navy."") The performances are quite good - particularly Goodings'. I thought DeNiro was perhaps a bit over the top in his portrayal of Sunday (although, who knows, Sunday might well have been this extreme kind of loose cannon) and the portrayal of Sunday's wife Gwen (by Charlize Theron) also made me question whether these parts were ""jazzed up"" to provide entertainment value.<br /><br />A good movie, though. I never once wondered if it was worth tuning into.<br /><br />7/10",1 +4384,"Nothing revolutionary here; just impeccably elegant, restrained cinema.<br /><br />GARDE A VUE is confined almost exclusively to a drab police station, and mostly to one interrogation room, but director Claude Miller (who made the wonderful film THIS SWEET SICKNESS, among others) intercalates spare glimpses of exterior tableaux as minimalist locale scenography. Miller's restraint, especially early on, is breathtaking, and his exquisite handling of the consequently-pivotal interior mise-en-scene makes for captivating viewing.<br /><br />Lino Ventura is superb as usual, succeeding to legitimize a character that, on paper, is cliche: the laconic, hard-nosed, world-weary homicide detective. Ventura lives the role, making it completely believable, even though the script allows us little access to his inner workings; the film ends at the very moment it appears he will be forced to confront his failure for the first time.<br /><br />Michel Serrault is equal to the task as the suspected child-killer who shrewdly spars with the single-minded flic. The exchanges between the two are more-often-than-not pregnant with tension and the aura of a constantly metamorphosing playing field for a battle of wits. Serrault's character is by turns deplorably haughty and cunning, and pitiable; then later....<br /><br />The ""message"" of GARDE A VUE, if one were to search for one, is a condemnation of police methodology and the kind of pressures that make a cop over-zealous to, if necessary, close cases at the expense of justice. For most of its length though the film shines as nothing more than an exemplar of how to turn a potentially soporific set-bound scenario into a suspenseful drama of the utmost cinematic economy.<br /><br />",1 +10168,The film is exceptional in it's gay iconography and extends this beyond the asthetics to the music and cast. Throughout the whole film exists a childlike wonder as seen through the eyes of the main character. Her lighthearted take on the world around us is comical and beautiful. In a way it's a slacker movie for girls. Watch this is you fancy a relaxing entertaining mid-night movie. Buy this if you like diferent takes on the world of media and love combined (?).,1 +18662,"I awake suddenly, aware that I'm drooling onto the plastic couch cover, and realize it's a warm Saturday afternoon. Why was I sleeping? Did I hit my head? Or accidentally swallow all of my grandma's muscle relaxers? Could it be adult onset narcolepsy? <br /><br />No, I momentarily paused on Cheap Seats while channel surfing, and the stunning lack of humor and talent drained my life force with such speed that I blacked out.<br /><br />It's that head-shaking, mouth-agape, shoulder-shrugging bad. But I have to give these moronic and boring twins credit for selling this idea through. Perhaps they had the same effect on the ESPN programming executive that they had on me, and when he/she woke up, a few horrendous episodes were already in the can and he/she hoped that since all the viewers will be asleep, no one will now how awful it is and he/she can keep the $425,000 annual salary.<br /><br />You've been warned.",0 +6214,"Excellent endearing film with Peter Falk and Paul Reiser joining forces as father and dad.<br /><br />Dad shows up one evening to state that after over 40 years of marriage, mom (Olympia Dukakis) has left him.<br /><br />The rest of the film depicts the father and son on a day trip to get dad's thoughts off what has occurred. With them away, the daughters can play detectives.<br /><br />The story shows the adventures of father and son in their discussion of life, what should have been, why mom was complaining about dad as they discuss their philosophies of life.<br /><br />We see an unexpected fishing trip and pool playing which leads to a near brawl. Both men seem to break out of their daily lives.<br /><br />The end is a downer as we learn why mom suddenly left. It becomes a story of courage and the human spirit in the face of adversity. It's never too late to change.",1 +16078,"This film is deeply disappointing. Not only that Wenders only displays a very limited musical spectrum of Blues, it is his subjective and personal interest in parts of the music he brings on film that make watching and listening absolutely boring. The only highlight of the movie is the interview of a Swedish couple who were befriended with J.B. Lenoir and show their private video footage as well as tell stories. Wenders's introduction of the filmic topic starts off quite interestingly - alluding to world's culture (or actually, American culture) traveling in space, but his limited looks on the theme as well as the neither funny nor utterly fascinating reproduction of stories from the 30s renders this movie as a mere sleeping aid. Yawn. I had expected more of him.",0 +512,"A Vow to Cherish is a wonderful movie. It's based on a novel of the same title, which was equally good, though different from the film. Really made you think about how you'd respond if you were in the shoes of the characters. Recommended for anyone who has ever loved a parent, spouse, or family member--in other words, EVERYONE!<br /><br />Though the production isn't quite Hollywood quality--no big special effects--still, the values and ideals portrayed more than make up for it. And the cast did a wonderful job of capturing the emotional connections between family members, and the devastation that occurs when one of them becomes ill.<br /><br />You don't want to miss this!",1 +1190,"I'm giving ten out of ten it's one of the best movies ever. Absolutely smashed, stunned and dazed by the whole picture, marvellous playing of Jason Statham, Ray Liotta and all the crew, amazing plot... Just look into yourself and pluck up your courage to admit-it touched your soul, because it's strange, but there are all the answers you've been ever looking for... The very best, mr. Ritchie! THE VERY BEST EVER. Those who were looking for a simple figtings and skirmish keep yelling they are disappointed. But there are lots of shallow movies in Hollywood nowadays, you can't remember what it was about the next day you had seen it. On the contrary, Revolver is unique, I could have hardly expected it's possible to portray such a clear and genius picture of myself, of everyone who was to watch it. Absolutely unsurpassed, astounding, dazzling... One can get insight watching this, I have no doubt about that. Actually, no words can express my admiration... I'm still wondering how it was possible to shoot such a movie after years of giddy Hollywood rubbish we had been watching. Thank you from all heart, it's simply the best.",1 +9331,"Holes is a wonderful film to see. It has good messages in in, such as: be a good friend, never give up, etc. I highly recommend it to anyone. I still say the book is better than the movie, but the movie gives the book a run for its money. Also, Khleo Thomas plays Zero. That really adds to it!!!! Lol!!!",1 +16922,"Whoa boy.<br /><br />Ever wanted to watch a documentary about a megalomaniacal jerk ruining his own life and alienating everyone around him? Well they exist, in many forms. But have you ever wanted to watch said documentary about one who didn't ultimately succeed in doing anything despite everyone's praises about how much of an artistic ""genius"" he is? Well you could probably just grab a camera and find someone like that in any local scene (I know they're everywhere and I don't even follow the local scene), or you could save yourself the trouble by spending money watching this tripe.<br /><br />The premise is good and, honestly, it's not as if the filmmakers knew precisely where it was going considering that's one of the difficulties of doing a documentary. We are made to follow two bands, The Brian Jamestown Massacre, lead by Anton, and The Dandy Warhols, lead by Courtney. I've heard of The Dandy Warhols before watching this movie... not so the Brian Jamestown Massacre. Why? Well from this documentary's perspective, because The Brian Jamestown Massacre's intergroup dysfunction refused them the ability to really make it in the music industry. However, instead of this becoming an analysis of the two separate bands and how one was able to succeed, the focus becomes much more on Anton and his insanity.<br /><br />Because, see, Anton is a ""genius."" Because he plays rock music. He really ""understands the evolution of music""... because he plays rock music with a lot of different instruments. His music is considered ""post-modern retro but the future""... because it's rock music. He wants to bring out a ""revolution""... through rock music. Okay so let's face it... twenty minutes in and this is one of the stupidest kids I'd care to watch a documentary about.<br /><br />The documentary itself doesn't really lend itself to showcasing any of Anton's talent, because in the nature of editing down 2000 hours of material into a quarter short of two hours we don't really have the time to focus on that. So instead we watch Anton, ""the genius"", the socio-maniacal loser, be a jerk for the two hours and are just told to understand that he made really great music. Whether he did or not I won't know, because its not like the documentary had enough time to prove it. What I do know is that then we're left with a story about some self-centered obnoxious twerp running around the country calling himself a God of music and doing nothing to back it up. Why even bother watching that? People like Anton don't deserve the attention they seek, the hope and admiration of all those different people, and especially a post-failure paean to lost potential. This movie plays like a two-hour rough-cut VH1 special for a reason: he goes on and on about the music, but it's all about the image and the attention. Look at the guy, look at how he dresses, look at how he acts, look at how he tries to create controversy because he can't afford marketing.<br /><br />Honestly the only interesting character in this film is Joel, and that's because of anyone in this documentary, Joel is the only person who seems to have any fun. Maybe it's because he's the tambourine man. The rest of them are all ""rock stars""! They deserve our attention, and admiration, and interest, and engagements! They are out there to ""save rock and roll."" Do you remember when The White Stripes were supposed to ""save rock and roll""? Yeah, that was because of Anton, and it's ""selfish of them not to mention me (Anton) as an inspiration."" What a load. People like Anton are best left forgotten. This documentary explains why mainstream music is so dull--because music execs have to deal with people like Anton for a living and ultimately can only really throw their support behind someone safe and passionless. Thanks a lot, Anton. Your antics ruined music for EVERYONE you touched, whatever the opinion to the contrary is. And if people ""in the know"" about Anton disagree and he really was a genius, it still shows how bad this documentary is that it cuts it down that way.<br /><br />--PolarisDiB",0 +3942,"Whoever said that horror wasn't an educational film genre, huh? Thanks to this marvelous Hammer short movie, I now at least know NEVER to offer a strange visitor any wine and a slice of bread with salt in my own house, because he might just be hypnotist and this combination will give him the power to control my thoughts & mind forever! Thank you Hammer! The tenth episode in the House of Horror series is another one I've been looking forward to seeing, mainly because the guy in the director's chair was Don Sharp; one of Britain's finest filmmakers but still sadly underrated. Sharp was responsible for some very cool Hammer films, like ""Kiss of the Vampire"" and ""Rasputin: The Mad Monk"", as well as some overlooked independent productions like ""Dark Places"" and ""Psychomania"". His contribution to House of Horror is easily one of the best in the series, with a complex yet fascinating plot outline and revolving on delightful occult themes. The plot centers on two antique dealers that stumble upon a strange object resembling a mirror, but it's actually an ancient scrying device that can be used to summon Choronzhon; the demonic guardian of the abyss. The mirror is heavily desired by a satanic cult since they need it for their ceremonies, but Michael is reluctant to sell it before knowing the real value of the device. When he picks up a clearly petrified girl who's running from the cult to avoid being sacrificed, Michael is drawn even deeper into an occult conspiracy. Satanic cults and the carnal sacrifice of young women are typical British horror topics, but David Fischer's screenplay is never dull and offers plenty of neat plot twits, among which a highly inventive climax. There's also plenty of tension to admire, the dialogs are wit and the acting performances are splendid (especially John Carson as the leader of the cult is genuinely eerie). Recommended!",1 +13035,"One of the worst films I have ever seen. How to define ""worst?"" I would prefer having both eye balls yanked out and then be forced to tap dance on them than ever view this pitiful dreck again. Somehow, One-Hit Wonder Zwick manages a film that simultaneously offends Elvis fans, Mary Kay saleswomen, Las Vegas, gays, FBI agents and the rest of humanity with any intelligence with a shoddy, sloppy farce so forced it deserves to be forsaken ed. How Elvis Presley Enterprises could allow the rights of actual Elvis songs to be used in a film with a central premise that seems to be ""The only good Elvis Presley Imitator is a dead one"" is beyond me. The worst part of this mess - and that takes some work - is the mangled script: In 1958, Elvis' words and songs that he would speak/perform in the 1970's are quoted! Worst special effect? That Oscar would go to the moron who decided that Elvis' grave, potentially the most photographed/recognizable grave in the world, resembles a pyramid with a gold record glued atop and is situated in the middle of a park somewhere. Potentially, this film's biggest audience would be Elvis fans. However, the rampant stupidity (Nixon gave Elvis a DEA badge, not FBI credentials...and I could go on and on) actually undercuts THAT conventional wisdom. Ugh. I used the word ""wisdom"" to describe this stupid movie. This is truly a horrible, horrible film.",0 +17975,"This is a Japanese film but there is quite a bit of English also spoken in here. It's a pretty film, with nice visuals, featuring the scenic beauty of Hawaii.<br /><br />However, that was the only redeeming quality for me. The story was generally boring. Who wants to watch a young woman sulk for 90 percent of the film because her ""picture"" husband is a lot older than he advertised he was? Granted, that could be a bummer......but get over it!<br /><br />Only in the last 10 minutes does she do an about-face and become fond of him. By then, for most viewers, it was too little-too late. We'd fallen asleep by then.",0 +11610,"Generally it was a good movie with an ideal ending; the acting was spectacular and the characters didn't stray from their persons. I especially liked the plot, although you knew what was going to happen it still gave the element of surprise through out the entire movie. However, I find that coming on to the ending it could have been a little longer (extended maybe)- to me it seemed like it was rushed a bit; as if the writer was trying to take linens off the lines before the rain fell. For instance- What happened to Tristan's brother, Hayden? For all we know he died in the hospital. Maybe he was the one that setup the entire thing?! Who knows! Maybe there will be a sequel? Maybe? If there is.. I cant wait to see it.",1 +15789,"Every once in a while, a group of friends, with a minimal budget but bags of enthusiasm and talent, will create a low budget masterpiece that takes the world of horror by storm. Raimi and co. did it with The Evil Dead, Jackson and pals succeeded with Bad Taste; and Myrick and Sanchez made a mint with The Blair Witch Project.<br /><br />Director Todd Sheets and his chums, however, are destined to wallow forever in relative obscurity if Zombie Bloodbath is anything to go by. A lesson in how not to make a cheapo horror, this miserable effort (about a plague of flesh-eating zombiesnatch) serves as a reminder that, whilst many people these days have access to a video camera, most shouldn't take that as their cue to try their hand at making a full-length movie.<br /><br />It's not that Sheets hasn't got an eye for a nicely framed shot (some of his camera angles and movements are actually pretty good), but rather that a) he has a lousy script b) he has a lousy cast, and c) he doesn't realise that he has a lousy script and cast. Which means that the final film is amateurish in the extreme, and unlikely to be watched in its entirety by anyone other than zombie film completists (like me) or members of the cast and crew (like those who have given the film favourable comments).<br /><br />Zombie Bloodbath is obviously aimed at undiscriminating gore-hounds, and Sheets (who currently has an incredible 34 titles under his belt as a director) certainly goes out of his way to please, with buckets of offal and blood thrown about at every opportunity. But whilst these moments are undeniably yucky, they aren't particularly convincing, and soon get rather tedious.<br /><br />So, to summarise, this is a really bad film, with almost no redeeming features. Except for two:<br /><br />Firstly, it features the single greatest mullet in the history of film, as sported by Jerry Angell, who plays Larry (as well as several zombies). The magnificence of his barnet (coupled with a fetching moustache) is reason alone to watch this film.<br /><br />Secondly, it has 'pathetic stealth zombies': flesh-eating corpses that lie in wait for unfortunate victims to wander by, before leaping from their hiding place to launch a feeble attack, which requires almost no effort to escape from. Best known for lurking behind a door for hours waiting for someone to open it, 'pathetic stealth zombies' also occasionally hide behind low walls, or sit in churches posing as members of the congregation.<br /><br />Normally a film this bad would get 1/10 for me, but, in celebration of Jerry Angell's flowing locks, I will generously raise my rating to 2/10.",0 +8316,"This is one of the best Fred Astaire-Ginger Rogers films, or at least one of my favorites. Most of the A-R movies feature great dancing but sappy romance stories. This still has the courtship corniness but not as pronounced as the other films.<br /><br />This movie features not just great dancing but likable characters and a bunch of good songs. The music is the central theme here and what's nice is the addition of a tap solo by Rogers. She not only was a super dancer but a very pretty woman and one with tremendous figure. She dances also with Fred, of course, and they're always a fun pair to watch on the dance floor.<br /><br />Growing up in the 1950s watching ""Ozzie & Harriet"" on television, it was a real kick the first time I saw this to see such a young Harriet Hilliard. No surprise than Ozzie fell for this beauty. Although she had that short early '30s hairstyle, I recognized her voice right away. Also in this movie are quick appearances by Betty Grable and Lucille Ball, but I have to admit that I have yet to out Ball. I can't find her, but I know she's in here.<br /><br />Astaire, except for some obnoxious gum-chewing in the first third of the film, was fun to watch and Randolph Scott - although better in westerns - is likable, too.<br /><br />This is simply a nice, feel-good film and good one if you want to to enjoy the great talents of Astaire and Rogers.",1 +1202,"I watched this movie when I was almost quite a kid, and, naturally, was moved to tears by this story of a fox family. The fantastic scenery at Hokkaidô, the excellent storytelling and last not least the wonderful soundtrack provide a rare intimacy with the protagonists. I am still searching for some copy of the gorgeous soundtrack. To German viewers it might be useful to know that the DEFA-dubbing is the only one worth listening to. I taped both (DEFA and BR) but I keep viewing the first one only.",1 +1347,"This picture came out in 1975 and it was the second in the three part series of the life of Sheriff Buford Pusser. Bo Svenson takes over the role of Sheriff Buford Pusser, and Luke Askew plays the role of Mobster Pinky Dobson. The last that we saw Sheriff Pusser he was laying in a hospital bed after him and his wife who was killed in ambushed Sunday morning drive. After Pusser recovers he goes after the men that killed his wife. Is Pusser able to complete the revenge that he's after or does the mob try to take him out before he successes. The only thing that bother me about this picture that this was an actual true story. How could you leave in a town with this kind of crime and yet don't do anything about it. Since there was real no name actress in this picture I can't give it 10 weasel stars but I can give 8",1 +12244,"Compelling and Innovative! At the beginning of this criminally underrated Whoopi Goldberg flick the writers draw a parallel between Theodore Rex and the 1941 Orson Welles classic ""Citizen Kane"". The writers are justified in drawing such a seemingly disparate parallel, but the viewing public is too often hoodwinked into seeing overly hyped Hollywood schlock to appreciate the subtle similarities between these two movies. In ""Citizen Kane"" Charles Foster Kane is feared and admired by his colleagues and his underlings, much like Whoopi Goldberg in this movie. This movie is about finding love in everybody's differences. It is an epic examination of the fear of abandonment and the need for love and acceptance in a society that is dominated by greed and self-absorption. Whoever paired Whoopi Goldberg and Theodore Rex formulated a dyad for the ages, with the only justifiable comparisons being Bogey and Bacall, Hepburn and Tracy and Hall and Oates. If you would love to watch an uplifting, celluloid philosophical examination of some of humanity's deepest drives; Bergman-esqe but not as depressing, Theodore Rex should be viewed immediately!",1 +12725,"Murder By Numbers is one of those movies that you expect is made-for-TV but isn't. Considering the only actor of any note is Bullock (although Michael Pitt seems to be moving onto bigger and better things), it isn't a great surprise that this movie quickly fades away from memory to be replaced by more important things. Like... remembering to lock your front door when you go out. Or putting clothes back on when you come out of the shower.<br /><br />Bullock plays Cassie Mayweather, a cop with personal issues (don't they all). Together with her new partner (a wet-looking Ben Chaplin), she is called to investigate the murder of a young woman. Nothing unusual there except that the perps are a couple of teenage students who think they've planned and executed the perfect murder. As the investigation continues, a battle of wills emerges between Cassie and the main suspect Richie Haywood (Ryan Gosling).<br /><br />The crippling issue here is that the two leads are hopeless. Bullock, though she is very nice to look at, is about as believable in the role of a hardened cynical cop as Rodney Dangerfield (actually, he'd be better!). Chaplin, for his sins, is a complete non-entity and I feel sorry that he has to put this film on his CV in his attempt to break into Hollywood. At least Gosling and Pitt, as the conniving sneering suspects, acquit themselves adequately. As if dodgy leads weren't bad enough, a story that would send anybody to sleep and a highly predictable (but illogical) ending shoot this film in the head before it has a chance to run.<br /><br />""Murder By Numbers"" has absolutely nothing going for it, even a pointless nude scene by Bullock wouldn't redeem it. Well, just a little but still not enough to save it. Forgettable, predictable and redundant - this is one film that isn't going to move the cop genre forward. As Cassie probably says on her next case, there's nothing to see here people. Move along, keep moving...",0 +15005,"...which isn't exactly a ringing endorsement. Overall, ""DinoCroc"" was a much better movie. Sure, in that movie Matt Borlenghi played a complete wuss-bag who spent the entire movie crying about his little brother getting eaten by the DinoCroc. But the special effects in ""DinoCroc"" were better, the plot lines were better, and the acting was better. Here are the problems with ""Blood Surf"" -- 1) the killer crocodile looks like a kid's model with a retractable jaw. 2) the plot is ridiculous. Matt Borlenghi & Co. get shipwrecked on a deserted island, in which they encounter a rabid group of ugly Filipino natives who try to force themselves upon the women in the group. Which was a complete waste of 15 minutes of film. And 3) there's not enough croc time. There are a couple of redeeming qualities of ""Blood Surf"" -- the actresses are pretty attractive and Matt Borlenghi gets eaten by the croc towards the end of the movie. But if you're on your deathbed and only have enough time to watch one Matt Borlenghi/killer crocodile movie, skip this one and fire up ""DinoCroc"" instead.",0 +9594,"OK, so the Oscars seem to get hyped just a little more each year. And I was rooting for ""Gosford Park"" to win (come on, Robert Altman had deserved an Oscar for years!). That said, I guess that it was high time for an African-American to win Best Actress. Contrary to the previous reviewer, Halle Berry's role in ""Monster's Ball"" was far more original than Nicole Kidman's in ""Moulin Rouge""; I never would have thought to nominate the latter for anything, especially in a year that saw ""Mulholland Dr."".<br /><br />Among the things that I had predicted was the stuff about the September 11 attacks; I knew that they were going to say something about freedom. Yeah, yeah. Robert Redford should know better. But contrary again to the previous reviewer, Whoopi Goldberg is not the worst host (among the past hosts was Bob Hope, for whom I have no respect); I really liked her jab at John Ashcroft.<br /><br />So, although I wouldn't have given ""A Beautiful Mind"" Best Picture, ""The 74th Annual Academy Awards"" still pleased me (I have to admit, I enjoy the Oscars more than my own birthday). And the day after, as my parents and I were hiking around the dwellings in Bandalier, New Mexico - it was spring break - I was thinking to myself that when Jim Broadbent won his Oscar, that most people watching were asking ""Jim who?!"" I wonder whether or not Woody Allen will ever attend the Oscars again.",1 +19910,"I found this film to be quite an oddity. From the very get go I found it extremely hard to like this movie, and now after a little thinking about it I can pretty much pinpoint the reason why. Jean-Marc Barr, although I love him to bits (I think Zentropa is one of the best movies ever made) is quite miscast here, and although I can't figure for the life of me who would be better, I am sure someone could have taken his place quite easily and make this film work. Everything else is fine, except for the stabs at weak comedy (A Meet The Parents Joke is not really needed, filmmakers!) and I really like Richard E. Grant as the British Major. It just suffers from one thing.. Jean-Marc.",0 +22259,"A mummy narrates vignettes about men, women, and the sex between them. Huh? At the beginning, the mummy randomly asks the viewer, ""Imagine having sex with this girl. Imagine having sex with this boy"" about 37 times, while flashing pictures of half naked mod youths. Later, said mods boys pelt mod girls with...vegetables? If you ignore (or fast forward) through the mummy's rambling, the shorts aren't bad in their own right. I found a few of them rather funny. My personal favorite is one where the sexually-confused man tries to convince a girl to have sex with him while his pet lizard sits on the bed. This is one, well, bizarre movie.",0 +147,"In this first episode of Friends, we are introduced to the 6 main characters of the series: Monica Geller,Phoebe Buffay,Chandler Bing,Ross Geller, Joey Tribbiani and eventually Rachel Green .<br /><br />We discover that Rachel, a rich girl that is Monica's friend from high school times, left her fiancé, Barry, at the altar, since she discovered she didn't love him. She also decides to live with Monica and become independent from her father,getting a new job as a waitress in Central Perk.<br /><br />Ross, for the other hand,discovered his wife is a lesbian and lost her for Susan, her partner. (We see him moving to a new apartment during the episode)<br /><br />Monica, in this episode, makes out (and eventually sleeps) with Paul ""the wine guy"", who gave her the excuse of being impotent since he divorced his wife. But in reality, he was just deceiving her.<br /><br />Ps: I just loooove Joey's and Chandler's haircuts in this first season! =)",1 +17808,"There are so many comments on this film, yet I found them to be misleading. This a corner-cutting, over-used scenario where a normal human being becomes a partner in crime to someone of the opposite sex for no apparent reason. Boy meets girl. Girl holds boy up at gunpoint for something ridiculous. Boy is intrigued. <br /><br />You know the drill: The antagonist turns out to be a wild, free spirit instead of a sociopath... Toss in a few words of wisdom from Alice Drummond and you have a recipe for Love. Sheedy's 'is she crazy or does she just need a hug?' role from The Breakfast Club simply reeks as a lead character. And all that is left is a truly ghastly turkey of a movie.",0 +14760,"The story of the film was as simple minded as its morality: Go find a girl, marry her, live with her happily ever after. Though the film had some fine moments and turns, most of it stayed at the surface of what might have been shown in a film with the same storyline.<br /><br />The Baptist/Mormon struggle was only touched superficially and was mocked about, probably intentionally. A more interesting story would have been a mixed couple.<br /><br />If you wanna see a film which doesn't need too much concentration, which can be watched by the whole family and which teaches your children modest and conservative values (besides the modern tolerance stuff ;-) ), you will be fine with this film. Might be shown at a family-home-evening...",0 +24607,"Vipul Shah has done some really impressive work as a filmmaker in the past. 'Waqt - The Race Against Time' and 'Namaste London' were entertaining and interesting to watch. 'Singh Is Kinng' was fun, which he produced. His latest outing as a filmmaker 'London Dreams' comes up as his careers weakest fare.<br /><br />'London Dreams' has a mediocre storyline, it's about how success turns friendship into hatred. Agreed, it has the potential but when you watch 'London Dreams' you wonder what's happening? This film has maybe the worst climax in recent times. Vipul Shah the writer puts Vipul Shah the director down. <br /><br />The first hour is boring, The second hour is better; but again the climax is horrendous. How can anyone forgive a person who decided to destroy you? I won't. Ajay Devgn suddenly decides to go to India and ask forgiveness to his diaper buddy, thanks to his uncle Om Puri. When he reaches India, rather than slapping or abusing him Salman welcomes him with band baja and says he was the reason behind the entire fiasco? Was Vipul Shah's intension to show Salman's character as a GOD? If yes, than you've failed completely. The only question I want to ask Vipul Shah is that, would you welcome a person who destroyed you with such a great reception? Write what you feel, don't fool us {the audience}, we are sensible enough to understand what's good or not. <br /><br />This is a musical but the music by Shankar-Eshaan-Loy is terrible. Not a single song stays in your mind. <br /><br />Salman is superb though. He carries the film on his shoulders and does really, really well in the emotional scenes. But again his character is shown as a GOD, which makes him look like a retard in the end. Ajay is equally good, but Salman has over-shadowed him completely. Asin is wasted, and what is a great talent like Om Puri doing in this film? Rannvijay hams, though Aditya Roy Kapoor excels. Brinda Parekh is alright as the vamp.<br /><br />On the whole, this dream remains a dream!",0 +18331,"This picture started out with good intentions, Bacon the scientist out to test the theory of invisibility, and Shue is cute as usual in her role. It all falls apart after that, it's your typical Hollywood thriller now, filmed on a soundstage with special effects galore, minus any kind of humour, wit or soul. In other words, don't waste your time watching this. Get the audiocassette tape with John DeLancie as the Invisible Man instead, also starring Leonard Nimoy. Now that was good, and HG Wells is well served, unlike with this mess.",0 +10741,"Russian emigrant director in Hollywood in 1928 (William Powell) is casting his epic about the Russian revolution, and hires an old ex-general from the Czarist regime (Emil Jannings) to play the general of the film, and the two relive the drama and the memory of the woman they shared (Evelyn Brent), of 11 years before.<br /><br />Try as I might, I feel it hard to warm to 'The Last Command' for all its virtues. 'The Docks of New York' was indubitably a great film, and 'Underworld' is a film I have always been craving to see, but 'The Last Command' is rather heavy-going. The premise is fascinating, but the treatment does really make the script come to life, except in the sequences set in Hollywood, depicting the breadline of employable extras and the machinations of a big movie production with state-of-the-art technology.<br /><br />Emil Jannings is, predictably, a marvelous Russian general, distinguishing wonderfully between the traumatized and decrepit old ex-general, transfixed in his misery, and the vigorous, hearty officer of yore.<br /><br />The ending is great and worth the wait, but in order to get there you must prepared to be slightly bored at times.",1 +2533,"This is one of the few movies I watched twice in the theatre. I really love this movie for its atmosphere and its telling of the life of tragic hero Esteban Trueba. He makes so many mistakes but gets a chance for redemption. Isn't this a rather consoling thought?<br /><br />When I watched it for the first time, I thought that after the won election, the movie would be over - I didn't know the book. So boy was I wrong when the dramatic climax was still to come! I was literally swept away by the sheer power of the last half hour of the film.<br /><br />Many people here utterly dislike this movie. I cannot understand that one single bit. Maybe those who read the book first are - as often with screen adaptations of novels - simply disappointed that so many things have remained untold, unseen, unexplained. But as a movie telling a touching story - the story of a family, the rise and fall of a man, the deep compassion of a woman, the strength of love and the insanity of hate (and conservatism) - this movie is simply splendid! Furthermore, the soundtrack is incredibly good and the cast is wonderful as well - especially Winona Ryder and Jeremy Irons.<br /><br />So definitely one of those films that cinema was invented for!",1 +17810,"Seems that the cast should ensure at least an average movie. And so I sat down for 102 minutes of unbelief. Beside Ed Harris no-one seems to own the skills of acting. Even Sean Connery, who I normally worship, must have had an off-day during the entire filming of Just Case. Not once in during the whole movie one actor could convince me.<br /><br />This made this movie look cheap and unreal.<br /><br />The story makes up a little. It is thrilling, and the plot is unexpected.<br /><br />Conclusion only watch this movie if you really have nothing more useful to do.",0 +1122,"- Having grown tired of the rat race and cramped living conditions of New York City, Jim Blandings (Cary Grant) finds a property in the country for his wife and children. He's hoping to find the simple life. But, building a house proves to be anything but simple. As the headaches and the bills start piling up, so do the laughs. Will Mr. Blanding's ever get his dream house? <br /><br />- What makes this movie so special is the three main actors - Grant, Myrna Loy, and Melvyn Douglas. Any of three are capable of carrying a movie on their own, so when you combine their talents, almost every scene is special. Grant has always been a favorite of mine in this type of role. He is so good at playing the put upon husband. Loy is a always a joy to watch. The Thin Man films she made with William Powell are near perfect. And Douglas has become a favorite of mine over the last two or three years. Douglas also appeared in The Old Dark House, a particular favorite of mine.<br /><br />- The movie is definitely a product of its time. I get a kick out of imagining a time when you could build a two-story, three bedroom, four bathroom house on $15,000 income a year. Throw in the fact that your two children attend private school and you have a live-in maid and it becomes almost fanciful.<br /><br />- However, for anyone who has bought or built a house, many of the situations and predicaments the Blanding's find themselves in are easily relatable to today. And that's where the comedy comes in. How many people have done some of the stupid things the couple does in this movie only to end up costing more money than expected? - The biggest complaint I have about Mr. Blandings is the whole ""wife in love with best friend"" subplot. It's really not necessary to the plot and feels out-of-place and very uncomfortable as presented.",1 +14479,"The danish movie ""Slim Slam Slum"" surprised me to be the worst movie i have seen to this date. I didn't think that it was possible to top my list of bad bad b-movies but this one deserves the gold. It's not funny. It's bad acting, It's bad filmed and the storyline is bad. The only positive thing i can say about this movie is it has three girls in it. I truly believe this flick has the potential to knock of the other danish movie ""Stjerner uden hjerner"" as the badest danish film ever made! And that's truly something. Congratulations in advance!",0 +21470,"After having watched Koyaanisqatsi two or three dozen times and loving every second of it, I finally had a chance to see it's sequel Life In Transformation. I was truly dissappointed as it did not nearly stand up to the high standards of the first. 90 minutes of people with baskets on their head is not my idea of a good movie. The Philip Glass score for this one had neither the beauty nor the correlating strength of the first. Compared with Koyaanisqatsi this movie seemed slow and pointless. A watered down version of Baraka, which is the same idea but done better. I truly hope the third movie in this series will not follow the example of this waste.",0 +22815,"I know slashers are always supposed to be bad,but come on,what the hell is this?It's like a bunch of 10-year-olds saved their lunch money and started filming this by the end of their week.<br /><br />Anyway,six young people all go to the same house to get killed off screen.We have the brainy one,the slut,the other slut,the black guy,the killer,stereotypes like that.After one gets eaten by a shaking boat,the others all get stalked by some guy who wears a mask the people at the poor box rejected.There's one pretty decent murder somewhere in the middle,but then it's back to even more boredom,and especially more false scares.Seriously,we actually know it can't be the killer when a person gets attacked because the guy sure loves to take his sweet time for everything.<br /><br />After every character you expected to die dies,the standard ugly blonde chick and her soon-to-be-boyfriend eventually get captured by the killer(they get like,pushed down and then faint)and the killer reveals himself.I think the writers of this movie just took a blindfold and a pen and put it somewhere on the list of characters.The motive is just lame and don't even get me started on the damn secret.The killer then of course takes way too much time to explain everything(and then about ten minutes extra in which he slices up his own arm for some reason)and eventually gets overpowered by a guy with a gun.Hey,no fair!<br /><br />Really one of the most awful movies I've ever seen.I could enjoy myself more by watching a Lindsay Lohan-movie,I swear.I mean sure,most 80's slashers sucked as well but at least they threw in some T&A.This movie just has nothing going for it.",0 +4547,"If you're not in the mood for more than an hour long movie than this film could give you some variation. What I love is the ongoing surprises. It's not only once that you want one or more of the short film in 'New York I Love You' to be continue. Yeah, some of the short films makes you curious, some of them very short, some of them longer, some of them has it definite ends, some of them don't.<br /><br />Most of the story presents the sad side of the capital city. It shows many different nationality background. Many of it, make it feels the same way where I have been once went to a capital city in other countries for a year where it has many people came from different countries. This movie explore many type of things you might have known, but for all the characters it's a new things. Maybe some of you have traveled abroad alone to stay for a year or two just to feel something new, meet new people; feel dreamy, sad, but the kind of sad you looking for because it is just that bored you were in your own home. You might want to reliving it again, by watching this.",1 +5551,"I've never seen many online movies in most of my life, but if I'd pick any of them, I'd pick Spatula Madness, A clever reference to most movies like star trooper (etc.), using a camera, and wits of steel, Jason Steele mastered the art of turning a normal image into a painting, and then putting it all together with frame-by-frame animation to get a world inhabited by spatulas. the story begins at the middle, hows that for directors delight? then the middle is at the beginning, and so on, when I first watched it, I expected a soggy pixely look, but Jason, Like me, Loves looks, so took every detail to the max. although I don't recommend it for children, or would anybody besides me like it, but please search it up on the net (its a short film, look up film cow), its style reminds me of south park, but less violent. 10 for the look, 6 for the laughs, and 6 for the story, it all comes to a 10/10, good work<br /><br />Jason Steele, I'm anxious to see the movie.",1 +21190,"In my opinion, this movie's title should be changed from ""Only the Brave"" to ""All About Lane"". I went to a screening of this film a few months ago and was quite disappointed with the outcome. Although, I appreciate that the director made a movie about the men of 442nd - a subject matter that long deserved addressing in the film industry - the acting in some parts of film was quite stale. The performances of Marc Dacascos, Tamlyn Tomita, and Jason Scott Lee were all great. However, the director should have NEVER put himself as the main character in the movie. Sorry Lane, you are just not a film actor. Stick to what you're good at - theater acting. Gina Hiraizumi's performance in this film was also horrible. She should never have been given a speaking role and her looks were unfit to play the part of a Miss Nisei queen. There were other young actresses in the film who were naturally beautiful and whose performances were wonderful... Why weren't they cast for that role? Another major problem with this film were its action sequences. The Japanese-American soldiers don't look like they were fighting German soldiers... let alone anyone. Granted this was a low budget feature, but since this was a war-based film, isn't it important to show some actually fighting? This film was a worthy attempt, but definitely not worth a major distribution.",0 +8337,"I just saw this film at the 2001 Toronto international film festival. The working title there was 'Dog Days'. The audience reaction was mixed. Some people found the graphic sex and realistic violence to be too much for them. Others seemed to genuinely appreciate how good this film was.<br /><br />This film isn't for the faint of heart. It's like 'Happiness' with explicit sex and a less optimistic view of humanity. There's animal poisoning, a strip-tease from a senior citizen, an orgy'esque' bathouse in a shopping centre, anal candle penetration, and the molestation of the mentally incompetent.<br /><br />If any of this sounds like too much to handle then this film isn't for you. This film shows humanity at its most desperate and pathetic. The banality of our existence is shoved in our face with utmost glee.<br /><br /> Seidl has no interest in redeeming humanity here. And why should he? This film features excellent performances from all involved, is always interesting, and is probably the most intelligent social statement to be made on film in awhile.",1 +5584,"Anyone who doesn't think Bill and Ted's Bogus Journey is one of the greatest movies of all time needs their head checked. It somehow manages to be both completely inane and no-brainer, but also terrifying knowing and clever at the same time. One of those rare films that actually improves upon it predecessor, Bogus Journey can be enjoyed again and again. Notable highlights include the duel with Death and the ending, which is highly ""emotional"". Keanu wants to forget all that Matrix rubbish and get down to doing what he does best, Ted Theodore Logan in Bill and Ted: The Return.",1 +8703,"Doyle had never wanted to resurrect Holmes from his joint death with Professor Moriarty in THE ADVENTURE OF THE FINAL PROBLEM. However,financial considerations made him willing (in 1901) to write THE HOUND OF THE BASKERVILLES, which is still considered his best Holmes' novel and possibly his best novel. But it was a ""memoir"" of the great detective, written before his death. Only a greater outcry from his public led Doyle to fully resurrect Holmes in THE ADVENTURE OF THE EMPTY HOUSE, published in 1905.<br /><br />It is not that the new short stories (and the last novel) are really bad. Maybe three of the stories are really terrible, but even the terrible ones are very readable. Several of the later ones (like THE ADVENTURE OF THE SOLITARY CYCLIST) are really very good. But the unevenness of production (in particularly after the stories in HIS LAST BOW (1917)) become increasingly apparent. He repeats past story lines, and he shows really negative aspects of Holmes. In the story THE ADVENTURE OF THE THREE GABLES Holmes shows a sneering sarcasm at a character who is of African ancestry. <br /><br />SPOILER COMING UP:<br /><br />THE ADVENTURE OF CHARLES AUGUSTUS MILVERTON deals with Holmes trying to recover compromising letters from Milverton, a hugely successful blackmailer. It is an interesting example of how Doyle could make a highly readable story with a minimum of plot for there is little real detective work in the tale. Holmes is hired to try to negotiate with Milverton regarding the purchase of the letters, but to get them back no matter what! Milverton proves not only unwilling to consider a smaller amount for the papers but prepared to protect himself from Holmes attempting a search of his person. Later we learn Holmes has gotten into the household of Milverton by romancing a maid while disguised. At the end Holmes goes with Watson to burglarize Milverton's home. He and Watson are in the house when they find that Milverton is awaiting some new business deal in his study (someone with information that Milverton can use). Carefully hiding, Holmes and Watson watch as a woman comes in, who turns out to be a victim of collateral damage from Milverton's past activities, and who shoots the blackmailer to death. Holmes and Watson are able to set fire to Milverton's collection of compromising documents before fleeing the house, and subsequently discover (for themselves) the identity of the woman. The police (under Lestrade) don't discover who the two mysterious men seen running from Milverton's home are, and they are so disgusted by Milverton's activities (they never were able to bring anything home against him) that it is obvious the murder will never be solved.<br /><br />The tale is not one of the fascinating ones with real detective work involved like THE ADVENTURE OF THE SPECKLED BAND or SILVER BLAZE. It is a tale of mood and late action - the issue being will Holmes and Watson get the papers or will they be caught by Milverton? It is not one of the best stories, but it is in the bulk of the tales as being really well told and interesting.<br /><br />At the time he wrote CHARLES AUGUSTUS MILVERTON, Conan Doyle had an experience with the police regarding his sometimes activities as a highly respected amateur detective/crusader. An artist was found murdered in his studio in London, and Conan Doyle began writing his opinions about how the killing was committed. Then he stopped - apparently warned by his friends at Scotland Yard that the murder did not bare looking into. The victim had been a homosexual, and the police were certain that it was a lover's spat gone horribly wrong. For the sake of the family of the Victim (this was in 1905) Doyle dropped his interest in the case. So he was aware that sometimes the British police behaved with restraint on matters that did not seem to justify their full probing - as Lestrade's restraint towards whoever did kill the villainous Milverton in the story.<br /><br />Given the description of the story it could have been told in the normal hour long version of the series. But the teleplay for THE MASTER BLACKMAILER spent some time showing the horrible dilemma Milverton's victims (in Victorian/Edwardian England) faced. We see a promising young aristocratic army officer kill himself when faced with a homosexual exposure because of Milverton's extravagant demands, all at the start of the teleplay. And it is not only homosexuals. Men and women of good reputation in heterosexual marriages could be smeared by uncovering illegitimate children or past indiscreet relationships. Indeed, in the story, the woman who kills Milverton is avenging the destruction of her husband (a prominent nobleman) destroyed by the blackmailer. <br /><br />Milverton is well played at his most poisonous blandness by that fine actor Robert Hardy, who even when confronted by the unexpected furies he has unleashed is totally unperturbed (he looks like he will just have the angry woman showed out of his home in a moment). Brett and Hardwicke do quite well in their Holmes and Watson roles, as to be expected.<br /><br />How serious was the loss of character by rumor or innuendo in 1905? In 1898 one of the heroes of the various imperial wars, and the leader of the last victorious charge at the battle of Omdurman that destroyed the Mahdist army (see FOUR FEATHERS) was Sir Hector MacDonald. He was governor of Ceylon in 1903 when he suddenly, unexpectedly resigned. Sir Hector returned to London, and shot himself in a hotel while awaiting some sort of hearing. It later came out that ""Fighting Mac"", frequently considered the most popular army commander in Britain, had been caught having sleeping arrangements with native boys. Milverton would have eaten him up very quickly...or his real life counterparts would have.",1 +3595,"That movie was awesome! I can't get over it's songs. I think I'm a little too old for musicals, but that movie deserves some credit here, guys! My especial favorite was Jack Wild. Me, being a British actor lover, you can't restrain me from all those nice-looking fresh faced, young men. I never knew that when Jack was doing that movie he was sixteen! He looks like an eleven- year old. He's short, that's what helps. Try posting up your replies, fellow posters, so I can relate to your experiences. Oh, and about Oliver Reed, that guy, Bill Sikes, I think that drone look is really familiar. Any idea where he's starred in before? If so, post it up, I'd really like to know.",1 +22981,"This is almost like two films--one literate and engaging, the other stupid and clichéd. It's really a shame all the problems weren't worked out with the writing, but considering how quickly most B-movies were written and produced, this isn't too unusual. It's a real shame, though, as this could have been a very good film.<br /><br />First the good. The movie is original and involves WWII code-breakers. This is pretty fascinating and I liked watching the leading man (Lee Bowman) go through his paces as a master code-breaker. In fact, the first two-thirds of the film was very good. But now for the bad, the film just went on way too long and lost steam at about 50 minutes. Additionally, Jean Rogers' role as the ""kooky girlfriend"" must rank as one of the worst-written and distracting roles in film history!! For every smart move made by Bowman, the idiot Rogers then stepped in to screw things up as some sort of misguided ""comedy relief"". If her role had been intelligently written, the overall film would have improved immensely! Instead, watching her, it's hard to understand how we actually won WWII!!",0 +9150,"Putting the UFO ""thing"" aside. This was the best documentary I've seen. Factual reporting by Neil and Buzz... a must see. The interviews and reporting are a revelation since most of the information was stamped confidential in 1969 and only released in 2006. No documentary to date has the detail or accuracy for such a brief 47 minutes... The FACTS will blow you away, and you will be left in awe of the risks taken to be the first on the moon... Neil and Buzz are probably the biggest hero's of our time. Ever see a man save his own life? Bet not. Neil saves his life when only mili-seconds separated him from death. Amazing to watch. It is a travesty people have not known all the details assosiated with landing on the moon and the courage those men had when facing certain death, from a failing computer... 10 stars!",1 +12044,"An excellent documentry. I personally remember this growing up in NYC in the early 80's. This movie is for anyone that wasn't around during that time period.This shows the one thing the African American Gay Underclass felt was solely theirs and the love and camadrie you see is real. The people are real and sadly few are still alive as this is being written. The balls are still held but not to the extent that they were in the the nineteen eighties. That time is gone forever. This is a good pre ""homo thug"" movie. When Queens were really proud to be extroverts. Goodbye to Storyville this is another era gone but greatly documented all hail film!",1 +23285,"I bought this movie last weekend at my local Movie Gallery. It was buy 2 get 2 free and I needed one more so I chose this one. Horrible mistake. The box reads like it would be a really good movie. Well, it starts out like it is going to be this great movie. For about 5 minutes, that is. The movie is about a young woman, Laila, who gets killed trying to save her beau, Jack, from a bull. Laila's dad, Cordobes, is a rancher that the townspeople are afraid of. He assumes that Jack killed Laila because she was supposedly afraid of this bull, and goes on this hunt to find him. That was the first 5 minutes that is good. What follows after that is only gonna get 100 times worse. Whoever wrote the script, in my opinion, had to of been on some kind acid trip or something because nothing else made any sense what so ever. Jack is on the run and finds this traveling radio DJ named Mary who gives him a ride. I think Mary is supposed to be a virgin Mary type character. You know, Jesus' mother. But, who knows, I couldn't make heads or tails of it. As they're running... we get to see bad guys, magical visions, ghostly encounters, flashbacks, etc... And all these things are done in such a way that your brain hurts from trying to figure out what's going on. Needless to say, I took the movie back and exchanged it for something else. It's horrible I tell ya, horrible. And, there is absolutely no bull-fighting in this movie. Unless you count the first minute of the movie. Hope I helped some other people keep from wasting their time on this movie.",0 +5045,"A great film this, and a shame that it will receive little attention outside of arthouse circles and students who stay up until two in the morning to watch it on Channel Four.<br /><br />The plot is a simple one but works very effectively, the blurring between child-like fantasy and hard-hitting nightmare is very well blurred. The budget looks pretty low, but to the credit of those involved it doesn't show too often. It also hasn't dated that much either.<br /><br />I was lucky enough to tape this off the telly when it was on a few years ago, and it has withstood half-a-dozen viewings. It's one of those films that won't appeal to all; though as usual, those with a more thoughtful approach to cinema would get a lot out of this.<br /><br />Charlotte Buerke puts in a good performance as Anna, the spoilt brat and it is a shame she seems to have gone from the acting scene. Cross is also very good, carrying the stature of his character very well within the context of the picture.<br /><br />There are some genuinely (and I don't say that lightly) disturbing moments in this film, both half-second shockers and more drawn-out tensions. Watch it with the lights out!<br /><br />Highly recommended.<br /><br />9/10<br /><br />",1 +19783,"The Oscar season has arrived so this means a slew of these deep, engaging, powerhouse ensemble films are all over the movie theaters in hopes of gaining an audience and having the opportunity to earn Best Picture in the big show. Among them is this film that is based off a very popular and well-acclaimed play. The original playwright was actually the writer and director of the film adaptation; which comes as a double-edged sword. On one hand, who better to translate the play than the original writer? On the other hand, who better to not see the mistakes and drawbacks of the play and fix upon them than the original writer himself? Doubt mixes excellent acting and plenty of tension and suspense; with a frustrating ending, unnecessary dialogue, questionable directing, and of course, the inability to provide substantial answers. It is a growing trend among these ""high-caliber"" films to not answer all questions it provides, and this has to stop.<br /><br />Doubt is like a joke without its punch line, like a book with the final 20 pages missing, like losing reception while watching the fourth quarter of a hotly contested football game, and like not having the 50 cents to continue playing the arcade game and see what happens next. Doubt, just like the previous Best Picture frustrationfest No Country For Old Men, doesn't really end; it doesn't provide us with considerable answers nor does it deliver enough for us to figure out the ending. Yes, that was the intent, but this isn't a test of humanity, it's a cop-out. I do not pay money to see an unfinished work, I pay money to see a beginning, middle, and end, and pray that I don't fall asleep during the three acts. We are forced to become the ""writers"" of the movie by filling in the blank ourselves as to what happened before and what will happen to the characters we saw screaming at each other.<br /><br />This little drama is about a nun (Meryl Streep) who seems very sure that the well-beloved priest (Philip Seymour Hoffman) is making sexual advances towards a child that goes to the church; the first African-American boy in the Catholic church. The church is secretly torn as to whether or not he really is committing heinous sins behind everyone's backs. The plot thickens as some of the kids begin behaving differently, which attracts the notice of a young teacher (Amy Adams). The story is set right after the assassination of John F. Kennedy, which shook the nation for quite some time and questioned their faith in humanity and in each other.<br /><br />Doubt's strong points come in the acting ensemble and also the ever-engaging suspense that builds slowly and never boils over. Streep seems to be Oscar-worthy in every role she's in, and here she is no different as her sternness and cold-hearted behavior places a blanket of fear in all the students and with some of the staff in the church. Hoffman excels yet again as the priest, by successfully meshing suspicion with a charming personality and a friendly aura. The seemingly hypocritical personality is tough to pull off, especially when we are suppose to like him and also ponder about him at the same time; but Hoffman steps up to the plate against one of the best actresses of our generation and fantastically delivers. When these two argue, you can hear the fireworks fly without ever seeing one launched. But let's not forget Amy Adams (Enchanted) and Viola Davis (Law ad Order) for their superb job either. Doubt's casting ensemble is among the best in 2008.<br /><br />Yet, like previously stated it's the writing and directing that ruins this film, especially when dwindling down the third act. Questions pop up, but they aren't answered. Characters pop up, but provide no real enhancement towards the plot. Kids behave different, but we never truly find out why. There are awkward angles in the camera-work and there's no actual reason why. John Patrick Shanley, the writer of the play, had one previous film in his directing repertoire: Joe Versus the Volcano. Whether sheer arrogance or stupidity, we are stuck with seeing overdrawn sequences of random conversation, utter annoying chatter that bores to no end (There was a two minute discussion about coffee and how much sugar the priest wanted) thanks to Mr. Shanley.<br /><br />Bottom Line: The lack of an ending is a stupid trend that's just as irritating as the seizureific camera-work in action films. It doesn't matter that we have a great talented acting cast, or decent cinematography, or a good story being worked upon, or good usage of sound and music; because we have a barrage of unanswered questions that sprinkles all over a film that is over 100 minutes yet doesn't even finish! The translation from play to film is good and quite accurate, because we have the original madmen behind the projectbut he took the mistakes and stupid hiccups from the play to the film as well. This decade has seen its share of blockbuster and high-profile films that could have gotten a much higher score from me if they had just decided to add a few more minutes of footage and actually end: Sideways, Cast Away, No Country For Old Men, Burn After Reading are a few examples.<br /><br />Newsflash: end your stinkin' movie. Please or at least provide a good amount of clues for us to easily fill in the blank (like Wall-E's depressing backstories), instead of staring into space as the credits suddenly start rolling and you are left with a feeling of emptiness, confusion, and mental anguish. Have a beginning, middle, and the end please!! As a critic, I prefer my films to be whole, not incomplete. Doubt feels incomplete, which is why it gets an incompetent grade.<br /><br />Someone has to break this stupid trend.",0 +23563,"Like all Carnosaur movies, this is a joke. The way the dinosaurs move, reminds me of when my sister plays with her dolls, because they cannot be any stiffer or more fake-looking than they were.<br /><br />The plot had no sense whatsoever. I mean, first they're on a bus, then in a warehouse then, all of a sudden, they're on a boat. And let's be serious, does it make sense that a couple of dinosaurs can stay together on a van, or on a ship? I thought dinosaurs were the biggest animals, and now they can fit on a moving van. It sounds stupid even when you think about it.<br /><br />The only reason for which I gave this a 3, is because it's still entertaining. I found it better than the first one (haven't watched the second yet). Just, don't rent it. I saw it on TV and it's a good thing I did because I wouldn't have wanted to waste money renting it.",0 +14750,"This movie was on the Romance channel, and I thought it might be a goofy 80's movie that would be enjoyable on some level, so my brother and I watched it. Boy did it suck. Boy gets crush on girl--correction, his *dream*-girl (apparently there is a difference; and I'm surprised he realized she was his dream girl--he was smitten with her from over 30 feet away. I guess that just goes to show the power of dream-girls), boy ends up masquerading as a female to be near dream-girl (creative in the sense that it's a far-out plan, but un-creative in the sense that there are probably better solutions one might think up), awkward situations ensue, a match is made (all of which takes seems to take place around late afternoon--either the location was somehow responsible for this odd lighting, or the actors had to wait until they got off of their day-jobs to come to the set; I suspect the latter). Very clumsily done, very pathetic. It's almost never even amusing *accidentally*, so there really is nothing to redeem it. Unless you're interested in seeing Chad Lowe's early days, before he finally got his piece of the pie with his role as the HIV-positive gay guy on the series ""Life Goes On"", or Gail O'Grady who was on NYPD Blue and probably got to stare at Dennis Franz's buttocks). But those are unlikely motives--I'd say ""systematic derangement of the senses"" would be a more justified purpose. I'm surprised I watched it all. I guess it's the kind of thing where, halfway through, you find yourself *still* watching due to some morbid, self-flagellistic inner-issue, and think you might as well finish it so you can tell your friends and family that you actually sat through such a horrible movie, on the off-chance that it'll garner you some sympathy for the questionable state of your mental health. Can *You* Take the Challenge?",0 +7348,"Arnold once again in the 80's demonstrated that he was the king of action and one liners in this futuristic film about a violent game show that no contestant survives. But as the tag line says Arnold has yet to play! The movie begins in the year 2019 in which the world economy has collapsed with food and other important materials in short supply and a totalitarian state has arisen, controlling every aspect of life through TV and a police state. It's most popular game show is The Running Man, in which criminals are forced to survive against ""Stalkers"" that live to kill them.<br /><br />The movie opens with Ben Richards (Arnold) leading a helicopter mission to observe a food riot in progress. He is ordered by his superiors to fire on them, refusing to gets him knocked out and thrown in prison, in the meantime they slaughtered the people without his help. The government blames Richards for the massacre earning him the name ""Butcher of Bakersfield"". Eighteen months later Richards along with two friends William Laughlin (Koto) and Harold Weiss (McIntyre) breakout of a detention zone they worked in. They make their way to the underground, led by Mic (Mick Fleetwood). Mic quickly identifies Richards as the ""Butcher of Bakersfield"" and refuses to help him, but his friend's convince him otherwise. They want him to join the resistance, but he'd rather go live with his brother and get a job. Soon he finds that his brother has been taken away for reeducation and a woman name Amber Mendez (Alonso) has taken his apartment. Knowing who he is she won't help him, but he convinces her, but is busted at the airport by the cops after she ratted him out.<br /><br />Meantime, The Running man is having trouble finding good new blood for the there stalkers to kill. Damon Killian (Dawson) the shows host and one of the most powerful men in the country sees Richards escape footage and is able to get him for the show after his capture. Richards refuses to play, Killian threatens to use his friends instead of him, so he signs the contract. You'll love that part. But soon he finds they will join him as well and makes sure Killian knows he'll be back. The Runners begin to make there way through the Zones and fight characters that are memorable, Sub-Zero, Buzz Saw and many others. Eventually Richards is joined by Amber who suspected he was set up but was caught and thrown into the game too. Together they find the underground and make there way back to Killian and give him a farewell send off.<br /><br />The running man is another one of Arnold's great movies from the 80's. The movie was apparently somewhat based on Stephen King's book of the same name. Some have said that the book is better. I'm sure it's not and I don't care anyway I loved the movie. As in all of Arnold's films the acting is what you would expect with classic one liners from Arnold and even Ventura gets a couple in. But without a doubt Richard Dawson is the standout in this film. Being a real game show host he easily spoofed himself and was able to create a character that was truly cold blooded. The whole movie itself somewhat rips on game shows and big brother watching you. Keep an eye out for them poking fun and some old shows, ""hate boat"" among others. Also the cast was great besides Arnold, Koto, and Alonzo don't forget Professor Toru Tanaka, Jim Brown, Ventura and Sven-Ole! With all the reality TV nonsense that goes on it almost fits in better now, but I'm sure the Hollywood liberals would make it into a movie about the ""Evil Bush"". The new DVD had mostly poor extras meet the stalkers being the only redeemable one. Some how the ACLU managed to get some of there communism into the DVD and is laughable garbage that should not be anywhere near an Arnold movie of all things. Blasphemy! Overall for any Arnold fan especially we who grew up in the 80's on him ,you can't miss this. Its one of the first ones I saw back in the 80's and it's still great to this day. The futuristic world and humor are great. Overall 10 out 10 stars, definitely one of his best.",1 +11031,"As in Amelie, recent French films seem to be taking a stereotypical male-female relationship slant, centered on a female finding her one true love. In this case, desperation leads to a convict, which leads to her evolution into a mob prototype. Clever and surprising story in many ways, except that the female is there to support the male.<br /><br />For those of us that don't speak French, the subtitles are a little quick, but not unreasonable.<br /><br />The soundtrack, as seems to be increasingly the case with European films, is great and in perfect sync with the film's variations. Nothing seems forced. Visually, it reminds me of various urban horror movies. There's a Wes Craven in Chicago feel to it.",1 +4534,"I stumbled onto this movie when I was eBay'ing Caesars Palace stuff, as I'm enamoured with its rich Vegas history as the last of the original luxury resorts still standing in good condition (unless you count Bally's, the original MGM Grand). In that respect, this movie delivers full-force. You're given a grand tour of the Caesars property,which in spite of all the renovations and additions they've done over the 40 years it's been open, looks alarmingly similar. As a film overall, the plot is somewhat difficult to follow, thanks in large part to the horrendous editing. And when I say horrendous, I'm not using that word lightly. There's a lot of spliced-in, second-long snippets of Vegas traffic, casino crowds, and even a scene where the Robert Drivas character is having a conversation with his father about how much he's grown up, and without any explanation, he (Drivas) goes (in those infamous snippets) from being himself, to a baby, to a little boy, and then back to himself while talking back and forth with his father. (That doesn't give away any plot details; if anything, one can be prepared for it and maybe they won't be as flabbergasted as I was by the editing.) The film has aged well otherwise, and has a good message about the inherent differences between a father and his son that most guys could relate to in some form or fashion.",1 +14332,"I don't know where to begin, so I'll begin with a snippet from the back of the cover of this movie. ""Alive combines the tension of Vincenzo Natali's Cube with Kitamura's own Versus."" I have not seen Versus, so I can't comment on that, but I think Cube was an excellent movie which I recommend to everyone. However, in this case someone has clearly confused ""tension"" with ""boredom"".<br /><br />I'll just go ahead and spoil the entire plot, because besides being one holy Swiss cheese of a plot, it's also moldy cheese, and the movie is not worth spending any time on even if you don't know the plot beforehand, so it doesn't matter. If I have misunderstood the plot, don't hit me - it's probably because I had to struggle to keep my eyelids open.<br /><br />So the American military in Nevada once lost a UFO i the Nambi desert. This apparently makes sense because they're both deserts so surely they're practically the same place. Different continents or not. A monkey broke into the UFO and acquired an alien something which was passed on to a Japanese researcher who had to eat the monkey to survive in the desert. What ever. The alien thing is now passed on to anyone who's ""bloodthirsty"" enough to kill the current host. The Japanese military wants to use it for military stuff, so they decide to make it pass from the current host (the researcher's daughter) to some other dude. But instead of just picking someone out of the military, which is full of people who are bloodthirsty AND already on the military's side, they decide that it's probably a good idea to pick some criminal out of death row instead. Oh, and the reason they pick this particular criminal from death row is because he was the first person in history to not die from the non-lethal electric shock which is the standard execution method, because everyone dies from the placebo effect when they get electrocuted. I don't know if they do this so they can giggle in the staff room at how everyone dies even though it's not deadly, or if they just want to cut down the electricity bill.<br /><br />Then the movie turns into what The Matrix would have been if it had been really lame, and superfluous fighting bores us to tears for what feels like an hour. And oh wait, now they remember that they already had a dude who was infected with the alien thing, so the entire movie up to this point was actually a totally waste of time and also human lives. Then everyone dies. The end.<br /><br />The only one moment in the movie where I didn't want to go away and sleep or eat a sandwich instead, was when a dude was pinned to a wall by a pipe through his chest, and he's hanging around up there and another dude walks by. The dude hanging on the wall says ""I'm in pain, shoot me"". And the living dude looks at him, and it's not like he's a mean dude or anything, so he really looks sorrowful and doesn't want the guy on the wall to suffer. So he shoots him.<br /><br />(Rhetorical pause.)<br /><br />In the stomach. ""Gee THANKS A FREAKIN' HEAP.""",0 +22184,"Why is this film so bad? Well, if being so stupidly annoying and unfunny is a reason, then this film is it. The character of Corky Romano is unlikable at best and downright infuriating at worst. The gags are predictable but that isn't what makes it bad. They are the lame sort of predictable jokes that your unfunny friend would say.<br /><br />Corky Romano is about a mild mannered vet that tries to do right but is so clumsy. His quiet life is thrown for a loop when the family that once spurned him now needs him to infiltrate the FBI to destroy any trace of the family's crime history. However, it isn't that easy for Corky because the FBI believes him to be a super agent and pegs him with the duty of spying on his very own family. Mishaps and mayhem ensue but it really doesn't feel like any comic hijixn are there. Corky ends up in love with his beautiful FBI partner and has to set the record straight with both the FBI and his family if he is to settle down to the quiet life again.<br /><br />I think what makes this film irritating is both the lead actor and the supposed jokes. Chris Kattan reveals his alarming limitations as and actor here as his one note slapstick routine falls flat about 10 minutes into the film. It is okay to have a full movie based solely off of dumb, slap stick humor. Will Ferrel, Kattan's SNL partner, seems to have made a full career out of it. The only difference between Kattan and Ferrel is that Ferrel knows when to tone it down and rely on other ways of telling a joke. There is absolutely no diversity in Kattan's routine. It's hard to hear the same joke twice, but for a whole movie that is just pure torture.<br /><br />The other problem with the movie was the lack of truly original and FUNNY jokes. The gay mafia brother, the awkward guy sch-tick, and plenty of other forgettable jokes appear none as funny as the first time you barely laughed at it. It seems as if the screenwriters had more of a fun time writing this than any one had watching it. Even with a cast that has some comedic talent (Chris Penn, Peter Falk) the jokes that commence are tired. There is no chemistry too. This film was obviously one for the pocketbooks for the actors. No body seemed to care about it, or even try. Sad thing is, no body told Chris Kattan that.",0 +6279,"Ride With The Devil directed by Ang Lee(Crouching Tiger) is another gem in this fine directors cap. For those unfamiliar with the history of the Kansas-Missouri border wars during the American Civil War. See this film & you will visit a sad piece of Americana. Besides some superb action scenes (quite bloody at times). This is a story of love & devotion between men & one lady in particular. It stars Toby Maguire, Skeet Ulrich Jeffrey Wright & as the young lady Jewel, I never heard or seen her before, I want to see more of her).The acting is top notch, superb production values, very well written (adapted from a novel)<br /><br /> This is a long film 128 minutes, but well worth seeing.<br /><br /> my rating is ****<br /><br /> respectively submitted<br /><br />Jay Harris<br /><br />",1 +9072,"Winchester '73 was the film that moved Mann from the b-movies to the big league, rescuing James Stewart's floundering post-war career in the process by casting him as a conflicted hero (although since he inherited the project from Fritz Lang, maybe Lang deserves the credit for that). Both men would go to much darker places - Mann with the remarkably bleak Devil's Doorway, which remained shelved by MGM until the success of Broken Arrow convinced them to release it but a movie about a man hunting down his own brother as the rifle of the title is handed from person to person along the trail before it ends up in one of the director's beloved mountainside shootouts is still stronger meat than you'd expect from the studio system. Great dialogue, an impressive supporting cast Dan Duryea, Will Geer, Millard Mitchell, Stephen McNally, Shelley Winters, Charles Drake, Tim McIntire, Jay C. Flippen, Tony Curtis, Rock Hudson among them and Mann's outstanding visual sense raise the bar with this one.",1 +3844,"Neil Simon's THE ODD COUPLE set up a model for many of his later plays. Felix Unger and Oscar Madison were the unsuitably paired roommates in the original, the former being picky and neat, the latter being slovenly and loose. Simon would rewrite (less successfully) the play in the 1990s as THE NEW ODD COUPLE, with female roommates. He made it a mixed couple (a woman with her daughter, and a man) in THE GOODBYE GIRLS. He also gave it an additional twist in 1973 with THE SUNSHINE BOYS, a Broadway hit starring Jack Alberson and Sam Levine as Al Lewis and Willie Clark, the aged, semi-retired Vaudevillians. Here the ""apartment"" problem is reduced to a teaming of two men who can't stand each other. The 1976 film starred Walter Matthau as Willie, and George Burns as Al.<br /><br />In actuality, Al probably does not think totally badly of Willie - Willie is pathological on the subject of Al. First Al had little habits, such as accidentally spitting slightly when pronouncing words beginning with the letter ""t"", and slightly jabbing Willie with his index finger, on stage. Secondly, Al retired when his wife died. Willie was not ready to retire (and has been forcing his nephew and agent, Ben (Richard Benjamin) to try to get him jobs in commercials. But Willie can't remember lines unless they are funny, and keeps flubbing them. So he rarely is able to stay to the end of a rehearsal for a commercial.<br /><br />Ben is asked to get the two back together for a live scene of their most famous sketch on a television show about American Comedy. He does bring Al to see Willie, and the sparks begin flying, as neither can figure out what the other is doing (and this is just in rehearsal. On top of that, Willie is insisting on changes (minor ones, but they throw off Al) such as saying ""ENTER!!!"" when Al knocks on the door. The initial rehearsal is a failure, but Ben manages to get them to the taping of the show. The question is if they will complete the scene in the finished program or will Willie wring Al's neck?<br /><br />The three leads, Matthau, Burns, and Benjamin, do very well with the one-liners, frequently reminiscent of vaudeville patter (example: ""Chest pains...I'm getting chest pains Uncle Willie. Every Thursday I come here and get chest pains!"" ""So, come on Fridays!""). Benjamin strives to prove his deep affection for his uncle, although Matthau's rough outer shell makes it difficult (he only smooths down when he discusses the glory days of vaudeville). Matthau has a little better grasp on reality (at first) than Burns, who seems senile by his repeating himself - but in actuality Matthau's sense of rejection by the world that once applauded him make him less willing to behave properly. Burns is not senile - he takes things slowly. But he seems far happier in accepting his retirement.<br /><br />I call this a final ""Voyage of Discovery"" for our modern Lewis and Clark. Al and Willie transcend their old skits, as they gradually end up realizing that they have more in common in their old age than they thought. Even the irascible Willie admits that Al may be (to him) a pain in the ass, but he was a funny man.<br /><br />Burns was not the original choice for the part of ""Al Lewis"" (supposedly Dale of the team Smith and Dale). Jack Benny was. Benny probably would have done a good job, but ill-health forced him out (he died in 1975). Burns (whose last involvement in any film was in THE SOLID GOLD CADILLAC in 1956 as the narrator) turned in such a fine performance that he got the ""Oscar"" for best supporting actor, and was to have a career in movies in the next decade in such films as OH GOD!; OH GOD, YOU DEVIL; and GOING IN STYLE. He died in 1996 age 100, having proved that he was more than just a brilliant straight man for his wife Gracie Allan.",1 +15546,"Rented a batch of films from Blockbuster last night, and this was the first one I watched (it was late on a Saturday night, wanted a ""horror film fix"")...<br /><br />Wow, this was awful, almost embarrassingly so... Stupid slasher-type story I really thought films like Scream had put an end to; amateur actors delivering clichéd' and insipid dialogue that is hard to believe was actually typed and read off a page; and gore scenes that are nothing to get excited about (especially when occurring in a film this poorly scripted).<br /><br />But I've always believed no film is 100% percent totally worthless. Here's the few good things I can say about this mess: <br /><br />#1 Bobbie Phillips: love this actress. She's the only member of the cast who displays any acting talent whatsoever. The only reason I took a chance on renting this is because her name was on the front cover. She acquits her presence in this dreck with professionalism, even though she looks bemused at times that she's acting in such a moronic story.<br /><br />#2 Unintentional Hilarity: This is the kind of film I can remember seeing back when there were still grind house theaters around the country and they used to include crap like this as the third movie on a triple-bill with some prestige thriller movie that was finally making it's way to the hinterlands. Unfortunately, in this direct-to-video age, most viewers have to endure these turkeys alone now without the communal experience of being part of an audience jeering and throwing stuff at the screen because the film is so terrible. Which leads to--<br /><br />#3 Porn Stars Trying To Act!: Mostly on hand because the producers don't need to cajole or plead with them to disrobe for extended sex scenes, but this trade-off usually means they actually get to speak some lines that are supposed to advance a story (other than ""ooh yeah baby"", or ""harder!""). And, proudly, they all deliver expertly at looking foolish when trying to act. I'd almost exclude Ginger Lynn Allen from this group if her character wasn't supposed to be an Irish mom and she's actually attempting at times to do an accent, which just keeps the smiles coming.<br /><br />It's nice to look for the positive in all experiences, and that's what I took from this cesspool a.k.a ""Evil Breed""",0 +20391,"THE IMMORTALIZER was, uh, interesting. It certainly didn't kill me during its hour and a half duration, but it didn't impress me much either. A group of kids are abducted in an alley by musclehead mutants (in a scene featuring cinema's least convincing head crushing sound effect) and taken to a fancy house in the suburbs. Here Dr. Divine and his team are performing brain transplants for his rich old patients so they can have young bodies again. Hey, this was quietly remade with a big budget a few years later as FREEJACK! Who knew that when you transplant an old person's brain into a different body that their new voice will sound exactly like their old voice? With all this talk of pineal glands and the use of a glowing green serum, you can almost see visions of FROM BEYOND and RE-ANIMATOR dancing in the producers' heads. But the production literally doesn't have the guts to pull it off. I've never understood why, when someone is making a low budget horror film, that they don't pack it to the edge of the frame with gore. The acting is uniformly terrible, with the only good performance coming from Clarke Lindsley as the assistant Dr. Price. He has a nice evil laugh. The only other thing of note about THE IMMORTALIZER is that it features lots of old people doing their own stunts. Seriously, most of the cast takes some serious bumps for old folks.",0 +19903,"After the reasonably successful MASTI which was tad better Inder Kumar returned again with a comedy PYAARE MOHAN based on the Hollywood film SEE NO EVIL, HEAR NO EVIL <br /><br />The film reminds you of HUM HAI KAMAAL KE(1994) where Kader and Anupam play the blind and deaf<br /><br />This movie is a tedious exercise<br /><br />The film has jokes of such nonsense that you don't feel like laughing like Snehal Dabi's head getting stuck in the back of the horse and all those type comedies which we don't laugh at now but mock <br /><br />The film starts off in a clichéd manner and some scenes are funny sadly such moments don't last long as the story never moves in this half even the comedy gets boring The twist is well handled and the second half becomes an action film where the blind guy and the deaf go to rescue the heroines and we have all OTT chase scenes and fight scenes<br /><br />Direction by Inder Kumar is bad Music is okay, one song stands out I LOVE YOU MY ANGEL<br /><br />Vivek is awful in the comic scenes, his timing is very bad and is okay in serious scenes For some reason he keeps doing comedy and ruined his career Fardeen Khan is tad better but too wooden Amongst the rest Esha and Amrita are the heroines Boman Irani annoys here Snehal Dabbi is okay",0 +4563,"Bonanza had a great cast of wonderful actors. Lorne Greene, Pernell Whitaker, Michael Landon, Dan Blocker, and even Guy Williams (as the cousin who was brought in for several episodes during 1964 to replace Adam when he was leaving the series). The cast had chemistry, and they seemed to genuinely like each other. That made many of their weakest stories work a lot better than they should have. It also made many of their best stories into great western drama.<br /><br />Like any show that was shooting over thirty episodes every season, there are bound to be some weak ones. However, most of the time each episode had an interesting story, some kind of conflict, and a resolution that usually did not include violence. While Bonanza was a western, the gunfighting was never featured as the main attraction. While I am a fan of The Rifleman and Wanted: Dead Or Alive; those shows usually ended with a gunfight. Gunfights were how many westerns resolved every conflict, and Bonanza was very different in trying to seek peaceful resolutions and harmony instead of killing.<br /><br />In the early years of Bonanza, there are some interesting episodes that do feature a lot of gunfights. Those episodes stand in contrast to the rest of the series, but they are pretty good in and of themselves. In 1964, when Pernell Whitaker wanted to leave the show, Guy Williams was brought in to replace him. Williams was playing the role of a long-lost cousin. Unfortunately, Whitaker decided to stay one more year, and thus Williams was written out of the series when he moved away to marry Adam's old girlfriend. If Williams had stayed on for the duration of Bonanza, one can only wonder how much better the series would have been in the years after 1965, when Pernell Whitaker left the show.<br /><br />Undoubtedly, once Pernell Whitaker left the series, the stories focused more on comedy and country hijinks. Whitaker had often played the heavy in many episodes, and his absence left a void in the cast. Little Joe always wanted to play the nice kid, and Hoss always wanted to play the good old boy with a heart of gold. Since Ben was the kind and wise patriarch of the family, that did not leave too much room for any gunfights.<br /><br />At some point they hired a ranch hand called Candy (David Canary) who became their fourth member of the cast, but Candy was never featured in any gunfights, and he was hardly more than an older version of Little Joe. For a year or two they also had Ben take in some other lost cousin (Jamie, played by the forgettable Mitch Vogel) who was a teenager that was usually getting into some kind of trouble with someone.<br /><br />Apparently by adding the teenager, the studio was looking to attract younger viewers. It also gave the writers a chance to write episodes about teenage problems, alcohol, delinquency, etc. Those kind of preachy episodes were popular in the 1960s as a reaction of the establishment media to the counter-culture movement. Dragnet was probably the most popular source of law and order TV, though Hawaii 5-0, The F.B.I. and many other shows also tried to jump on the bandwagon by doing TV shows that featured irresponsible teenagers causing mischief, mayhem, and crime.<br /><br />The addition of a teenager to the cast gave the Cartwrights more chances to show up and solve problems, but those episodes feel very contrived and are not very good in general. After Dan Blocker died, the series limped along for another year or so before it was canceled. The last season was pretty bad, as it featured Little Joe tracking down the killers of his wife, and most of the episodes were somewhat depressing because Little Joe was usually drinking or otherwise remembering how much he loved his wife, and how unfair it was that she was killed.<br /><br />I don't think I have ever seen the last episode of the series, and I wonder if they ever officially wrapped it up in some way. By the last year, there was only Ben (Lorne Greene) actually living on the Ponderosa, as Adam had moved away (and never came back even once as a guest) and Hoss had died and Little Joe had left after his wife (in the series) had been killed by drifters.<br /><br />Overall, the era from 1959-1965 is the best of this series. Once Adam left, it slowly declined. Most of the shows before 1970 are pretty good too. By 1970, the series was trying to hard to be hip and topical, and it had lost a lot of its western flavor. The addition of Candy and the teenage kid also diluted the general quality of the show, and the death of Hoss (Dan Blocker) was the final nail. Bonanza is probably the best western series ever made, and of the 465 episodes that were produced, at least one hundred of them are excellent western drama! That is a pretty good record. Even the worst of Bonanza is better than a lot of other TV shows.",1 +23300,"This is the movie that I use to judge all other bad movies, and so far there hasn't been anything close.<br /><br />The only good thing I can say is that after watching this I know that I have seen the worst movie I will ever see.",0 +16877,"Hey if you have a little over an hour to kill and find paint to be too exciting I'd suggest it. If thou you happen to like cheap b-movies like me it's good for a giggle! Other than that I wouldn't suggest that you rent it, I'd wait till it comes on the tube say round 4 am on the free access channel of your cable/satellite supplier. The band that did this sound track by the way was on the road after for about two years after this flick, and no they sounded just as bad live according to the two small town reviews I could find on them. So once again good if you find grass growing to much fun but good to watch if you like to see how NOT to shoot a low budget movie.",0 +8673,"I'm a 53 year-old college professor. I went with my wife and 12 year old daughter. We all enjoyed the movie. The film is original, witty, fast-paced and totally charming. The plot was easy enough for a 10 year old to follow, but twisty enough to keep an adult interested. I thought Emma Roberts did a superb job and the rest of the cast was just fine. My only criticism is that the Los Angeles sets were not as interesting as they should have been. They were functional, but nothing stood out. On the other hand, make-up, costume, lighting, cinematography, editing and directing were excellent. Altogether, I thought it was a totally enjoyable experience. I am disappointed that the professional critics (almost all adult males) savagely attacked the film. Apparently, they have something against films that portray strong, intelligent and independent young women. Their writings reveal more about their own sexist natures than anything about this wonderful family film. I recommend it strongly to every child and every parent.",1 +24420,"As someone who lived through,and still remembers that decade vividly,if the actual '70s had been half this funny and (semi)normal,they would have been so much more enjoyable.Actual kids in that era did not act or behave anything close to as bright-eyed and normal as these kids did.The country's youth was still under the influence of the hippies and the drug culture all that '60s rebellion that it spawned,especially in the behavior department;the petulance,the smugness,the self-righteousness,the childishness,the unreasonableness of them - none of the characters exhibit any of that.<br /><br />Someone compared to ""Happy Days"",and I can see why:They were both sitcoms that take place 20 years before the current time they were broadcast,and they both offer only surface ,cliched depictions of the actual eras,not even close to the full scope of it,just showing the obvious things - the fashions,toys,music,contraptions,etc,and that's it.For those too young to remember,or weren't born then,trust me,the '70s weren't like that,any more than ""Happy Days"" were like the actual '50s,as ""M*A*S*H*"" didn't accurately portray life at a US Army medical base during the Korean War,etc.",0 +13194,"I am a 11th grader at my high school. In my Current World Affairs class a kid in my class had this video and suggested we watch. So we did. I am firm believer that we went to the moon, being that my father works for NASA. Even though I think this movie is the biggest piece of crap I have ever watched, the guy who created it has some serious balls. First of all did he have to show JFK getting shot? And how dare he use all those biblical quotes. The only good thing about this movie is it sparks debates, which is good b/c in my class we have weekly debates. This movie did nothing to change my mind. I think he and Michael Moore should be working together and make another movie. Michael Moore next movie could be called ""A Funny Thing Happened on Spetember 11th"" or ""A Funny thing happened on the way to the white house"".",0 +7806,"A meteor crashes into Crater Lake, the heat from the impact causing a prehistoric egg to hatch.<br /><br />Alright, so the plot is just trash. But despite its obvious low budget, this comes across as one of the most gripping and entertaining monster-on-the-loose films in existence. There are also some good moments of humor. In an age filled so-called 'monsters' which are no more than laughable men-in-rubber-suit creations or lizards dressed up in frills and forced to rip each other to pieces (cheap exploitation-style), it's refreshing to discover that the Plesiosaur in this little gem is an excellent Harryhausen-style stop-motion creature.<br /><br />Quite a hard film to find, but it's worth finding.",1 +11374,"Anton Newcombe and Courtney Taylor are friends, they both are the leads in their own respective bands; Anton with The Brian Jonestown Massacre and Courtney with The Dandy Warhols. What's interesting about their friendship is that they are rivals; its a love hate relationship. At times you both hear them praising one another, but the next second they are complaining at how stupid and self absorbed they are. While the Dandy Warhols went on the reach commercial success, BJM still was stuck in the underground scene; and for good reason why.<br /><br />The focus of Dig! is more towards Anton and the BJM, as they have a lot more substance. They are the most dysfunctional band. During gigs they will fight and bash each other. Anton will hit other members if he feels they aren't performing correctly. With the amount of drugs an alcohol they consume, fight was always waiting to happen. You know how people go to car races just to see if a huge car crash happens; that's why people would go to their gigs, for the fights. <br /><br />Anton is very unstable. Always thinking himself as a music messiah, he wants to change music and create a revolution, but he could never get out of the underground. He is a very talented musician, its amazing how many instruments he can play and with such skill. But his draw back is he cant escape the world he created; a prolific musician stuck in a black hole drugs, alcohol and depression. On the other side, the Dandy Warhols were having their own troubles. They didn't find much success with their first album and were constantly fighting with their record label. But they found huge success in Europe. But Courtney keeps being sucked back into the world of Anton. Its interesting that both Anton and Courtney both had what the other needed. Courtney always wanted to be musically talented as Anton, though Anton wouldn't say it, he needed the commercial success that the Dandy's had, to make his revolution.<br /><br />Over the seven year course the film crew followed these two bands, there is a lot of footage. There is never a dull moment in Dig!. It is constantly moving along as it doesn't have time to slow down as it has to much to say, seven years of story telling in the 1h 45mins is a hard job. Ondi Timoner has done a great job of piecing together one of the best music documentaries that makes you always wanting more. Even if you don't like the bands it still deserves viewing; it transcends the music to reveal a great story of a successful failure.<br /><br />You wont be disappointed.",1 +10016,"After playing a nymphomaniac in WRITTEN ON THE WIND, Dorothy Malone finally said good-bye to her sweet sister/wife roles and demonstrated an ability to play mantraps with the best of them. She and Gloria Grahame played the same sort of tramps--and for her efforts here in a very manipulative role, Malone won a Best Supporting Actress Oscar.<br /><br />The film she's in is not quite up to Oscar standards, but it is a strong enough melodrama under Douglas Sirk's capable hands. There's an almost noirish look to the explosive opening scene and it sets the tone for the rest of the sudsy fireworks in a story that has ROCK HUDSON, LAUREN BACALL, ROBERT STACK and DOROTHY MALONE as its headliners.<br /><br />Domestic squabbles among the inhabitants of a wealthy family with an oil background are the primary focus of the drama, with the accent on the strong supporting players, Stack and Malone. Both of them seize the opportunity with both hands and Stack, too, should have been awarded for his sterling job as the weak, alcoholic brother driven to desperation by his own wild motives.<br /><br />The nominal stars have less impressive work to do, but do it with their usual skill and conviction--Hudson and Bacall. They play their more sympathetic roles with quiet authority and understanding.<br /><br />The use of color is particularly striking (as it usually is in a Sirk film) and yet it doesn't preclude me from thinking of the film as a Technicolor film noir in the vein of LEAVE HER TO HEAVEN.<br /><br />Well worth watching with some interesting performances from the entire cast.",1 +6275,"The most succinct way to describe Ride With The Devil is with but one word: authenticity. I will not rehash what has already been said about this wonderous film, but I would like to say how much the historical research and painstaking attention to detail the crew no doubt went through was appreciated by this filmgoer.<br /><br />As a student of history familiar with the period and setting of this film, I must say that this production is one of the most accurate fictional films regarding ""bleeding Kansas"". Yes there were liberties taken on the actual events, as all fiction is apt to do. But the overall feel of the film is genuine. Authentic costumes, authentic attitudes (no PC hindsight here) even the actors look authentic.Even Jewel Kilcher (who has a small part in the film) looked like she stepped form a mid 19th century photograph.<br /><br />A few viewers I talked with have expressed their incredulity at the stylized dialog. They cannot believe that 19th century farmers would ""talk like poets"".<br /><br />What they don't realize is that in this age of verbal slobbishness, the American public public of the 19th century was a surprisingly literate and eloquent bunch. These people were raised on Shakespeare and the King James version of the Bible. The screenwriters reconstructed the most likely verbal styles of these people, judging from documentation of the time. The stylized dialog just adds to the magical atmosphere of the film.<br /><br />But in addition to a historical document, this film works on a visceral level as well. Beautifully photographed and performed, it harkens back to the days of the great western epics. The raid on Lawrence, Kansas, done so many times before in so many other, lesser films is portrayed with a sense of urgency that puts the viewer right in the midst of the action.<br /><br />Romance, adventure, moral and ethical conflict.This film has everything a discerning moviegoer could want. <br /><br />In a year that was dominated by overhyped garbage like American Beauty, this great artwork was buried by an indifferent studio system. But I am certain that Ride With The Devil will be given it's due in the coming years. Please rent this film. You will not be disappointed.",1 +4059,"I must warn you, there are some spoilers in it. But to start it off, I got ""Spanish Judges"" on February I think. It was mention it was the last copy, but as I see, it wasn't back-ordered. But either way, I have it. I thought it was good. I wanted to see this mainly because of the great actor, Matthew Lillard (I'm surprised no one on the reviews mention the scar) although it is kind of low budget, getting enough money to make this film would be worth spending. Man, what a good actor.<br /><br />The story it about a con artist known as Jack (Matthew Lillard) who ""claims"" to have merchandises called The Spanish Judges. If you don't know what Spanish Judges are or haven't seen the trailer for this and this is the first review you have read, I won't even say what they are. I figure it would be a big twist of no one knew what it was. He needs protection, so he hires a couple who are also crooks, Max and Jamie (Vincent D'Onofrio and Valeria Golino) as well as a crook that goes by the name of Piece (Mark Boone Junior). He has a girlfriend who won't even tell anyone her name because she's from Mars, as she said. So they (mainly Jack) call her ""Mars Girl"". Everything starts out fine, but then it turns to one big game. A game that involves some lust, lies and betrayal.<br /><br />There was some over acting in it (Matt and Valeria, as well as Tamara, were not one of them). There were some scenes they could've done better and the score could've been a little better as well. Some of the score was actually good. The theme they used for the beginning and the end (before the credits) was a good song choice, that's my opinion. The fight scene in the end could've been a little longer and a little more violent, but what can you do? One more comment on Matt: Damn, he plays a smooth, slick con man.<br /><br />I know this is a review, but I need to make a correction towards NeCRo, one of the reviewers: Valeria Golino is not a newcomer. According to this site, she has been acting since 1983. To me, and hopefully to others, she is well known as Charlie Sheen's Italian love interest in both the ""Hot Shots!"" movies. But good review.<br /><br />Although I think it's one of the rare films I've seen and it's really good (which is why I gave it 10 stars above), I will give the grade of what I thought when I first saw it.<br /><br />8/10",1 +8361,"Weak, fast and multicolor,this is the Valvoline's movie in fact you can see always this brand of oil in a lot of scene. The real protagonist are the cars,weak performances of Cage and Duvall. A intresting Angelina Jolie is a unlikely mechanic. For the lovers of dream car(LAMBORGHINI and FERRARI over all).",1 +13115,"An Avent-garde nightmarish, extremely low-budget ""film"" that has delusions of grandeur. Hard to sit through. I get the message that child abuse is wrong. Wow big revelation. I had no clue it was wrong before viewing this. Yes that's sarcasm. DON'T watch this ""film"" if you're offended by nudity of either the male or female gender. DON'T watch it if you're the least bit squeamish. DON'T watch it if you care about acting. On second thought just DON'T watch it period.<br /><br />My grade: D-<br /><br />DVD Extras:making the movie , the premiere,interview with Kristie Bowersock, deleted scenes, movie stills, Director's commentary, 2 versions of the teaser trailer, music video by The Azoic, & a classroom video experiment",0 +12377,"I first rented this film many years ago, and was completely enthralled by it. Just recently, feeling a strange need to revisit some of the way-too-few films that I've immensely enjoyed in my lifetime, I decided to give ""Erendira"" another look. And I'm glad I did, as I soon discovered that even the passage of time has not in the least dulled the shine of this film.<br /><br />The story is about a teenaged girl (Erendira, played remarkably by Claudia O'hana - in some respects she resembles Winona Ryder!) who accidentally burns down her grandmother's mansion after which the grandmother, played downright hypnotically by Irene Papas, forces the girl into a life of prostitution on the road to repay the damages. <br /><br />The viewing is at once fascinating and compelling - though, inspite of the basic premise, which deals with prostitution, is tastefully void of gratuitous steamy sexual content. The story revolves more around the interactions between the girl and her grandmother, and the various other colorful characters with whom they come into contact on their sojourn - which, by the way, is in the rough and tumble part of rural Mexico.<br /><br />The film is very atmospheric, arrestingly enigmatic with a decided dreamlike quality. It sometimes borders on the bizarre, but not to the point of, say, a David Lynch film. It's also worth mentioning that the film is very allegorical in nature, read the comments from previous viewers below...<br /><br />Often in the background you hear the sounds of a lone accordion, quiet and melancholy, adding just the right musical accents to highlight the Mexican setting. The cinematography of the rural places, many of which are in the desert, is quite superb.<br /><br />The film moves at a nice pace, neither too fast nor too slow, and after every scene I felt I had to rewind the tape and play it over again, just because it makes you want to do that. For me anyway, it really is that compelling.<br /><br />Hopefully you will see the film in its Spanish language version, with subtitles. I studied Spanish in high school as well as in college, and I was happy to be able to understand much of the dialogue. Por ejemplo: ""El mundo no es tan grande como pensaba."" (""The world's not as big as I thought"" - i.e., It's a small world.)<br /><br />This film somehow reminds me of stumbling upon a dusty old bottle of vintage wine, which, upon drinking, is immensely satisfying, however, you are left with some sadness upon realizing that there aren't more bottles just like this one.",1 +19402,"turned out to be another failed attempt by the laughable sci-fi channel. i am not sure who wrote the script, and interpreted the poem, but i am sure it was by some 17 year old teen who thought it would be awesome to a have a scoped crossbow in the movie. AAAAAAAH! when i saw that part, I lost all hope. Then...they set off for heorot in a what looks to be the ship that Christopher Columbus sailed in! when they reach Heorot, (which is supposed to be a Norse mead hall) the sci-fi group of idiots decided to make heorot look like a big stone castle. when i saw that part.. i wanted to scream. i really wanted this movie to be good, but sci-fi has yet to produce a good movie, so i don't know why i got my hopes up. Oh..and Grendel and his mother, are stupid also. (this comment is off topic about ""Grendel"")If anyone from the sci-fi channel is reading this..here is some good advice. NOT EVERY MOVIE YOU MAKE HAS TO BE ABOUT A BIG MONSTER THAT CAN RIP PEOPLE IN HALF, THATS NOT WHAT SCIENCE FICTION IS ABOUT! AND ALSO, STOP CASTING LOW-GRADE ACTORS LIKE STEPHEN BALDWIN TO BE IN YOUR FILMS! ITS NOT HELPING THE MOVIE, BUT MAKING IT WORSE!!!",0 +7889,"*SPOILERS*<br /><br />This is only the second pay-per-view I've given a perfect 10, the first being the 1991 Royal Rumble. It was full of exciting matches that weren't memorable, just disposable fun. And that's why I love it.<br /><br />The opening match between Razor and DiBiase, as well as Ludvig Borga vs. Marty Jannetty were the only low points. They were OK matches, but DiBiase deserved better in his final pay per view match. These days, a match like this would have run-ins and a bigger climax for Razor's first major babyface push. And Jannetty, fresh off a Intercontinental title run, could have had a better match with Borga. But I don't think anyone really cared. They just needed a Borga push on pay per view television.<br /><br />IRS and The Kid were great, as were Michaels and Perfect. I wish Perfect could have won, but Michaels lies down for no one. Notice how right after this, he left the WWF so he wouldn't have to job to Razor. Bret Hart had two great brawls with Doink (notice how everyone's best match is against the Hit-man) and then Lawler. Their rivalry was a classic; that's why that year's Feud of the Year was a no-brainer. How often do you see two legends win Feud of the Year this late in their careers?<br /><br />The Steiners-Heavenly Bodies match was one of the best of the year. Who knew the Bodies could hold their own against one of the best teams ever?<br /><br />Many say that the Undertaker-Giant Gonzalez match was a waste of time. But I loved it. Remember, what made the old WWF (as in, pre-WWE) great was the mix of athleticism and freak show. Is there a soul out there who didn't like Akeem?<br /><br />The main event wasn't bad, although nowhere near match of the year status. They put Lex Luger over well, but made a wise choice in having Yokozuna keep the belt. He was the first heel since Superstar Graham to hold the belt for more than two months. Nowadays, heels are champions all the time. But from the beginning of the WWWF through the WWF of the 90s, if you blinked, you missed a heel title reign.<br /><br />As an old school wrestling fan, this one and SummerSlam '88 are my favorites.",1 +21728,"This movie is a great example of how even some very funny jokes can go terribly wrong. i really expected at least something from this movie after seeing the add which was funny as hell but the movie wasn't half as good.<br /><br />The weird part is that the jokes are actually funny, the spoofs of the smoking ban, Jo Bole... etc. are genuinely good jokes but i don't know whom to blame this movie flop on.<br /><br />The prime candidates may be:- 1) The hammers ( actors) and hammeresses (actresses) and not even the funny kind 2) The director 3)The guy who cast the actors and/or the director Anyway if you are really really bored and i mean really see this movie, or else get a copy of each and every ad or teaser of this movie and laugh your butt of because those will be far funnier than the film.<br /><br />p.s the only saving grace of this film is mahesh manjrekar and the funny chappu bhai",0 +20311,"Roman Polanski has made many, many movies that are unexceptional. His fame bewilders me. Nothing stands out as a high point except Chinatown (I haven't seen 'Knife in the Water' or 'Tess'). Any contribution he's made to film concluded more than twenty years ago; his work is just embarrassing, safe and/or dull (The Pianist, Frantic, Oliver Twist, The Ninth Gate, Pirates).<br /><br />R's Baby must have signified the end of the establishment at the time it came out. It's lux-produced and fairly high concept for a 1968 'horror' movie (never show the baby). But this is just misconceived horror sap. Everything is arty to the point that the plot line becomes hopelessly clear very early (Um, thanks for that finale-destroying title), and on a clear day you can see the twist ending coming for days. It did not sustain my interest. I find that whatever this movie might have been, it is utterly derailed by the 1960's version of what femininity was. Farrow is such a chronic distracted, helpless waif/housewife. Her frailty is oversold... she's irritating in the extreme. There's no real ideas in it... nothing to consider except being the mother of the devil.<br /><br />The Dakota is barely exploited for it eerie potential.",0 +13529,"Reviews for this film were lukewarm at best while expectations were sky high: a big budget, tons of popular faces, a rather funny idea and a main actress everyone loves. The end result is a disaster. Alice Tremblay's supposedly humorous journey in fantasy world fails in every way to entertain it's audience (I didn't hear a single laugh throughout the entire presentation), going through it's page-thin story line and one-dimensional characters without a single spark, not a sign of the magic it wished it had. The 90 minutes of film here are sterile with clumsy direction and some good actors doing their best to come of as professionals in a feature that certainly couldn't seem that great an idea on the set, let alone on paper. 'L'Odyssée d'Alice Tremblay' is a collage of comic sketches, linked together with a (very) thin layer of good ideas. Avoid or boredom will haunt you.",0 +21351,"This was god awful. The story was all over the place and more often than not I was confused because of horrible editing. I felt no sympathy for anyone because their characters were not developed enough. They were extremely superficial people with no dimension. Cheesy, cheesy stereotypes with subplots that went nowhere. The stripper chick was just a distraction, even if she was decent looking. I don't know what this was attempting to be, but how shocked was I when they showed this trash on Sundance? I almost cancelled my subscription. You'd think a channel like that would show more quality films. There are much, much better gay and lesbian themed films out there. ""The Celluloid Closet"" is an excellent documentary. I thoroughly enjoyed ""Wigstock: The Movie"". I'm sure there are others that have slipped my mind at the moment, but what I'm trying to say is that this just wasn't worth it. If you catch it on TV, ok, but otherwise don't bother.<br /><br />There were maybe three or four shots that looked really nice (sad I can count them on one hand), otherwise the cinematography was pretty crappy as well. The lighting was way off in a lot of places. I think some of the effects were used to try and add to something that just had practically nothing going for it.<br /><br />I can't deny Johnny Rebel is pretty hot (without the blond hair of course). Too bad his acting did nothing for me. Stick with real porn, buddy.<br /><br />3/10.",0 +5210,"Katherine Heigl, Marley Shelton, Denise Richards, David Boreanaz. Even before I knew what this film was about, these names were enough to draw me in. Gorgeous, talented and popular, these are performers to look out for.<br /><br />Ok, where do I start. We already know what the film is about. Five beautiful girls being targeted by a 'romantic' serial slasher, a guy they all turned down at the school dance 13 years ago. His trademarks include subtle deaththreats disguised as valentine cards, maggot-infested chocolates and a bleeding nose. His weapon of choice: well, take a pick - axe, knife, electric powerdrill, bow and arrow, hot iron, etc. Ok, so basically it's a horror movie with a nice twisted sense of sexuality.<br /><br />Horror movies aren't supposed to be Shakespeare, but I'm not gonna go there. I love horror movies, but not all of them. This one, I adore. It's up there with some of my other favorites. It's funny, sexy and scary. The killer's mask is childishly creepy, and seeing cupid firing a bow and arrow at a victim is really freaky. The acting is topnotch: Denise Richards, Marley Shelton and David Boreanaz are a lot of fun. I really did wish to see much, much more of Katherine Heigl. I am one of her biggest fans and would love to see her doing some leading work soon. Jessica Capshaw is a very capable actress, and Jessica Cauffiel gets to do the ditzy blonde role she perfected in Urban Legend 2. The smaller parts were also good; Hedy Buress was a hoot ('bleedmedry.com') and that younger version of Denise Richards looked frightfully like her.<br /><br />Highlights: Every death scene had a particular distinction to it. The creepiest being the opening scene in the morgue. The hottub scene, while ludicrous, was well done. And the audiovisual maze was sinister. The soundtrack is great, with creepy music and some fine alternative tunes.<br /><br />Lowpoint: I felt as though the killer wasn't featured enough, we barely saw the mask, and it wasn't featured at all during the climax. I also thought the climax was really unfocused, but fun nonetheless.<br /><br />The twist at the end wasn't that big of a surprise, but I'm really glad that the filmmakers decided to spare us that whole 'explaining killer' routine.<br /><br />I don't like to tell people which movies they should see, but if someone asked me to pick a horror movie that I thought was really worth seeing, then Valentine would be it.<br /><br />My rating: 10/10 (Bullseye!)",1 +8965,"Richard Chamberlain is David Burton, a tax lawyer living in Sydney, Australia who is drawn into a murder trial defending five Aboriginal men accused of murdering a fellow native in Peter Weir's apocalyptic 1977 thriller The Last Wave. Taking up where Picnic at Hanging Rock left off, the film goes deeper into exploring the unknown and, in the process, shows the gulf between two cultures who live side by side but lack understanding of each others culture and traditions. Weir shows how white society considers the native beliefs to be primitive superstitions and believes that since they are living in the cities and have been ""domesticated"", their tribal laws and culture no longer apply. <br /><br />From the start, Burton is drawn deeper and deeper into a strange web of visions and symbols where the line between real time and ""dream time"" evaporates. Water plays an important symbolic role in the film from the opening sequence in which a sudden thunder and hailstorm interrupts a peaceful school recess to Burton's discovery that his bathtub is overflowing and water is pouring down his steps. As violent and unusual weather continue with episodes of black rain and mud falling from the sky, the contrast between the facile scientific explanations of the phenomenon and the intuitive understanding of the natives is made clear. Burton and his wife Annie (Olivia Hamnet) study books about the Aborigines and learn about the role of dreams in the tribal traditions. When he invites one of his clients Chris Lee (David Gulpilil) to his home for dinner, he is disturbed to find that he is the subject of an inquiry by Chris and his friend Charlie (Nadjiwarra Amagula), an enigmatic Aborigine sorcerer involved with the defendants. As Burton's investigation continues, his clients make his work difficult by refusing to disclose the true events surrounding the murder.<br /><br />After Chris starts to appear in his dreams, Burton is convinced that the Aborigine was killed in a tribal ritual because ""he saw too much"", though Chris refuses to acknowledge this in court. Burton, becoming more and more troubled by a mystery he cannot unravel, says to his stepfather priest, ""Why didn't you tell me there were mysteries?"" This is a legitimate question but, according to the reverend, the Church answers all mysteries. Burton knows now that he must discover the truth for himself and enters the tribal underground caves. Though we do not know for certain what is real and what is a dream, he comes face to face with his deepest fears in a haunting climax that will leave you pondering its meaning into the wee hours of the morning.<br /><br />In this period of history in which native Hopi and Mayan prophecies predict the ""end of history"" and the purification of man leading to the Fifth World, The Last Wave, though 25 years old, is still timely. The Aborigines are portrayed as a vibrant culture, not one completely subjugated by the white man, yet I am troubled by the gnawing feeling that we are looking in but not quite seeing. Weir has opened our eyes to the mystery that lies beyond our consensual view of reality, but he perpetuates the doom-orientation that sees possibility only in terms of fear, showing nature as a dark and uncontrollable power without a hint of the spiritual beauty that lives on both sides of time.",1 +11406,"Loved this film. Real people, great acting, humour, unpredictable. The characters were believable and you really connected with them. If you're looking for a film about slightly offbeat characters outside the mainstream of society and how they help each other, this would be a good choice.",1 +7085,"Okay, so I have come a long way from Houston by now, but whenever I see this movie, I am taken back to a little cowgirl's dream to one day ride the bull at Gilley's. (It burned down before I was of drinking age.)<br /><br />If you grew up in in East Texas, then you know this movie is an accurate depiction of contemporary life at that time. If you didn't then trust me and watch the movie. Either you will join the many who love it (and at the same time strangely repulsed), or at the very least, you can make fun of the red-necks. (There is plenty material for poking fun.) This movie doesn't try to be P.C. (what was that in the 80's) or hide the white trash element and it is honest to the time and place.<br /><br />Gotta be a 10 for me!",1 +21028,"I found the documentary entitled Fast, Cheap, and Out of Control to be a fairly interesting documentary. The documentary contained four ""mini"" documentaries about four interesting men. Each one of these men was extremely involved with his job, showing sheer love and enjoyment for one's job.<br /><br />The sad part, I must say, would have to be the subjects in which these individuals worked/studied. They were interesting for about five minutes, afterwards becoming boring and lasting entirely too long.<br /><br />The video was filmed in a very creative way though. I very much enjoyed the film of one thing with a voice dub over another. It played out excellent and also coincided nicely with the music.",0 +6760,"It is a story of Siberian village people from the beginning of 20th century till the 60ties. It is about passion and feelings, about Russian soul, and very romantic. This movie IS NOT action packed, it flowes slowely. In second part one can find great songs - Russian romances. It is much more better than Doctor Zhivago. The director of this movie moved to America and made Runaway Train for example.",1 +1227,"As the Godfather saga was the view of the mafia from the executive suite, this series is a complex tale of the mafia from the working man's point of view. If you've never watched this show, you're in for an extended treat. Yes, there is violence and nudity, but it is never gratuitous and is needed to contrast Tony Soprano, the thinking man's gangster, with the reality of the life he has been born to and, quite frankly, would not ever have left even knowing how so many of his associates have ended up. Tony Soprano can discuss Sun Tzu with his therapist, then beat a man to death with a frying pan in a fit of rage, and while dismembering and disposing of the body with his nephew, take a break, sit down and watch TV while eating peanut butter out of the jar, and give that nephew advice on his upcoming marriage like they had just finished a Sunday afternoon of viewing NFL football. Even Carmella, his wife, when given a chance for a way out, finds that she really prefers life with Tony and the perks that go with it and looking the other way at his indiscretions versus life on her own. If you followed the whole thing, you know how it ends. If you didn't, trust me you've never seen a TV show end like this.",1 +7510,"This is such a fantastic movie, a Western about a self-concerned man (Jimmy Stewart) going up to the Klondike for gold. On the way, he gets hassled by a local sheriff in Alaska (John McIntire, giving a wonderfully evil performance), whom he hassles back. McIntire threatens that he'll be a dead man if he ever comes back through his town, which is, unfortunately, the only way back to the States. The main chunk of the story is about the peaceful Klondike town of Dawson being turned upside down by new residents from McIntire's town. Ruth Roman, for instance, who has come with Stewart and his two companions (Jay C. Flippen and Walter Brennen, who plays Stewart's best friend), builds a saloon (a Hollywood front for a whorehouse) and tries to run the town's restaurant and hang-out place out of business. She paves the way for McIntire and his goons to come up, too. In 1953, Jimmy Stewart and director Anthony Mann made one of the peaks of the Western genre, The Naked Spur. The Far Country is just the tiniest bit less, and it contains 99.9% of what made that film so special without, of course, feeling like a cheap copy. Like The Naked Spur, The Far Country boasts beautiful, on-location cinematography. The landscape is gorgeous. Stewart gives one of his best performances (nearly equal to his biggest success of 1954, Rear Window). I suppose it could be considered cliche, as he starts out a selfish loner and learns how that kind of existence plays out in the end. Still, Stewart plays it so damn well, he makes this character very human. And the supporting performances are universally fantastic. In addition to those I've mentioned, the adorable French actress Corinne Calvet is very good. And I ought to single out Walter Brennen, as well. He seems to have specialized in playing best friends. His relationship with Stewart is very touching, since he is, at first, the only character who is able to bring out any humanity in the cynical man. The screenplay is very well written, and Mann's direction is impeccable. A masterpiece. 10/10.",1 +18182,"This is so incredibly bad. Poor actors. You can tell they're trying really hard to polish a turd, but we all know you can't. The writing is so obvious and facile, it's sad watching them try to sell it. The humor and pacing are so labored, it's hard to believe any of these good actors signed on for this.<br /><br />That said, it's so awful that we're having a hard time looking away from the screen. We just have to know where this trainwreck goes. But that's only because we caught it on TV. If we had actually PAID for this, we'd be disgusted. <br /><br />So it gets 2 stars for being at least amusingly/fascinatingly bad. And the incidental music (as opposed to the trying-too-hard indie soundtrack) is laughably reminiscent of an episode of Scooby-Doo... but not as good.",0 +17538,"When a movie like ""The Dukes of Hazzard"" brings in over $75 million it makes some incredibly sad statements about the condition of our own society. Either we are collectively too stupid to stay away from trash like this or maybe I'm just not realizing how many people this kind of no-effort trash will appeal to.<br /><br />Hollywood has had no incentive to make good movies since if it puts out trash then people will see it anyways since there is nothing else on screen. This is that. I walked out despite getting a free movie pass. The dialogue could not be dumber. The stunts could not be more over-the-top and outrageous. Perhaps this ""bigger that big"" image appeals to Texans but it didn't appeal to me nor anyone else in the theater. None of the ""big names"" were in this career-ending flick, except for Burt Reynolds, which says all you need to hear. Jessica Simpson -- don't make me laugh.<br /><br />I wouldn't even recommend this film for video, even if you were desperate. This was all about fooling the public to make enough money after opening day to equal or do better than it cost through marketing. They did despite the public being forewarned. Stupidity abound.",0 +9298,"My father, Dr. Gordon Warner (ret. Major, US Marine Corps), was in Guadalcanal and lost his leg to the Japanese, and also received the Navy Cross. I was pleasantly surprised to learn that my father was the technical adviser of this film and I am hoping that he had an impact on the film in making it resemble how it really was back then, as I read in various comments written by the viewers of this film that it seemed like real-life. My father is a fanatic of facts and figures, and always wanted things to be seen as they were so I would like to believe he had something to do with that.<br /><br />He currently lives in Okinawa, Japan, married to my mother for over 40 years (ironically, she's Japanese), and a few years ago was awarded one of the highest commendations from the Emperor of Japan for his contribution and activities of bringing back Kendo and Iaido to Japan since McArthur banned them after WWII.<br /><br />My father was once a marine but I know that once you are a marine, you're always a marine. And that is exactly what he is and I love and respect him very much.<br /><br />I would love to be able to watch this film if anyone will have a copy of it. And I'd love to give it to my father for his 94th birthday this year!",1 +11448,"""October Sky"" is a film that will steal your heart, fill your mind with vivid imagery, and lift your spirit. The tale of Homer Hickham and his dream of creating a rocket seem so simple at first, especially when the film is set in a mining town, where the future is as clear cut as the lumps of coal in the mine. But Homer cannot follow in his father's footsteps. With the encouragement of Miss Riley,(a friendly teacher), members of his father's staff, and his friends, Homer attempts to make his dream a reality.<br /><br />Yet as in any true to life story, there are many stops along the way. Director Joe Johnston lowers us into the coal mines, where we witness the chilling plight of miners stooped beneath a ceiling of rock. With lit helmets and bent posture, they resembled alien insectoids more than humans in the darkness. The hacking coughs of the miners and the blackened faces were a constant reminder of the danger the miners faced in their work.<br /><br />Contrasting the mine shaft's lugubrious load are the images of Homer and his friend's rocket launches. Underneath the blue bowl of sky, rockets are placed upon a pad and launched into the stratosphere...And nothing can match the scene when Homer sees Sputnik for the first time.<br /><br />Yet what makes the film so endearing is the relationship between the characters. Homer's father is a classic hardened man...but he has a soft side as well. We see that he does love his son, despite their many arguments. The love and support of Miss Riley is evident as well. Best of all, the film is uncomfortable. It doesn't tie everything up in a nice bow. It tears at you, lifts you up. It keeps an air of reality, which is important in a film like this.<br /><br />This film can be considered a complete work. At first, I was disappointed that the film did not continue with Homer's life. I didn't want it to end. Then I realized...that's what a good film does to a person. If it has done its job, you won't want it to end. And ""October Sky"" accomplishes just that.",1 +12811,"Did HeidiJean really see this movie? A great Christmas movie? Not even close. Dull, bland and completely lacking in imagination and heart. I kept watching this movie wondering who the hell thought that Carly Pope could play the lead in this movie! The woman has no detectable personality and gives a completely lackluster performance. Baransky was great as usual and provided the only modicum of interesting the whole thing. Probably her involvement was the only reason this project was green lighted to begin with. Maybe I'm expecting too much for a Lifetime movie played 15 days from Christmas but I sat through this thing thinking that with a different director and a recasting JJ with an actress that at least could elicit sympathy this could have been quite a cute little movie.",0 +21604,"Thomas Archer (Ron Eldard) has his child killed and his wife viciously attacked in a home invasion. Dr. Heller (Christopher Plummer) tries to help him through the post traumatic stress. Then Archer finds himself confronted with a man (Til Schweiger) bound and gagged to a chair. He is told this is the man who killed his child and attacked his wife and he can do whatever he likes to him. And there's a large assortment of instruments there to help him...<br /><br />Film is interesting at first (and shows real restraint in terms of blood and gore) but gets stupider by the minute and has some highly unlikely plot twists and turns. It all ends in a final twist that was so old and stupid that I was shocked anyone would actually think of using it anymore. How such talented actors like Eldard, Schweiger and Plummer got involved in crap like this is beyond me. This gets three stars for the acting but the stupid plot and truly unbelievable twists make this a chore to sit through.",0 +15285,"If there's one thing that annoys me most in seeing a bad film, it's seeing it done by experienced film-makers who ought to know better. This ""re-imagining"" of Planet of the Apes could have used some imagination, to say nothing of essential elements of character development. Nova, the girl in the original Planet of the Apes, was a better developed character than Daena in this version, for all that she does not say a single word. One certainly expected a lot better from Tim Burton, a man who has hitherto combined an incredible visual imagination with intelligence, wit and humour, all of which were notably absent from this production.<br /><br />There were problems in basic plot development. The first big mistake was allowing the humans to talk. This was the fundamental difference between apes and men that made *all* the difference in the original film. Even while he was mute, his ability to communicate was what marked out Heston's Taylor as being different from the other humans. In the current film, Mark Wahlberg encourages the (talking) human slaves to revolt, but there is no overpowering reason for them to have not revolted and reclaimed their emancipation already. They are dexterous tool-users and have the ability to communicate in order to form plans, something mute humans can't do. It needs no man to fall from the stars to save them. Indeed, since he comes from a technological civilisation and finds himself in a pre-technology era without (at first) any gadgets to help him, it is Wahlberg who ought to be at a disadvantage, not the humans who are used to living there.<br /><br />It was sad to see Helena Bonham Carter working so hard to generate some kind of spark between herself and that unresponsive brick wall Mark Wahlberg. Her best scenes were with the villainous Tim Roth.<br /><br />The humans were practically ignored until they were needed in the third act, at which point Daena started showing some actual interest in Davidson (Wahlberg), and a young boy suddenly changed from part of the background to a feisty gung-ho freedom-fighter. This was poor character development. (Estella Warren, in particular, looked as if she would have been capable of a great deal more than she was given in the script). Wahlberg's puzzlement at the end as to what these humans see in him was certainly shared by me, as he has scarcely interacted with the humans throughout.<br /><br />Creating the apes: half a plus point and two minuses: Ape make-up was excellent on the males, particularly Michael Clarke Duncan who has incredibly expressive eyes (which was why he was so good in The Green Mile), and the makeup design allowed him to use them fully. But the ape females looked like nothing on earth, neither ape nor human. The minuses were the ape jumps which looked about as realistic as Flash Gordon's rocket: jumping apes looked as if they'd just been fired from a catapult, they had none of the long-limbed grace of genuine apes. Secondly, the poor sound mixing - when the gorillas roar it is quite clearly dubbed from some animal, probably feline, making them sound ridiculous and unrealistic.<br /><br />In the original film, the various ""human"" things the apes do and say are handled as light relief (""I never knew an ape I didn't like."" ""Human see, human do!""). Here, the apes just talk matter-of-factly exactly as 21st Century humans do, and there is no humour in it at all. The only genuinely original idea was Ari writing with her feet.<br /><br />Nothing made me cringe more than the ""V-Ger from Star Trek"" moment near the end of the film. First of all, the apes had apparently been able to read Roman lettering in the distant past, for them to know the name of the Forbidden Zone in its partly concealed form. Secondly, the mysterious inscription giving the name is merely covered with sand which Wahlberg just brushes away, something any ape could have done centuries ago. This moment was, for me, far worse than the much-maligned ending of the movie.<br /><br />Things of that nature, however, are typical of most science fiction movies of today. Back in the '60s and '70s, they generally didn't have the budget to make convincing futuristic sets, but they dealt with genuinely original themes and ideas which were truly science fictional. I'm thinking of 2001: A Space Odyssey, the 1967 Planet of the Apes, THX1138, Soylent Green, Silent Running and the 1972 Solaris. The first Planet of the Apes even utilised the only scientifically valid and physically possible method of travelling forward in time. However, this film includes just about every bad science fiction cliché going: space storms, anomalies and worm holes straight out of Star Trek; the planets of the solar system and their moons apparently all visible together as large globes (in reality from any one planet, all other bodies, even their own moons, are just points of light); a conventional rocket powered shuttle travelling from Saturn to Earth in a matter of minutes instead of years; two-thousand year old equipment firing up and fully working the minute the hero presses the button. To say nothing of a conveniently bulletproof internal glass door. In a contemporary setting, you'd have to explain *why* it was bullet proof, but because it's ""science fiction"" you don't have to!<br /><br />Overall, Burton's most disappointing film.",0 +4902,"Over the years, we've seen a lot of preposterous things done by writers when the show just had to go on no matter what, keeping ""8 Simple Rules"" going after John Ritter died comes to mind, but this is probably the first time I cared. The idea of having ""That 70's Show"" without Eric or to a lesser extent Kelso is ridiculous. They tried to cover it up with a comeback of Leo and increasingly outrageous story lines, but it always felt like why bother when you don't have a main character anymore. It just didn't really connect, it was a bunch of unrelated stuff happening that most of the time wasn't even funny. The last season felt like the season too much for every single character, simply because Eric used to take a lot of screen time and now we'd be smashed in the face by how stale and repetitive the rest of the characters were. Focusing on the gimmick that is Fez was thoroughly uninteresting and the character would simply stop working, because the whole deal was that he'd say something weird from out of nowhere, and you can't say stuff from out of nowhere when every second line is yours. They also brought in the standard cousin Oliver, only this time it just wasn't a kid. Whenever you heard somebody knock on the door, you started praying it wasn't Randy, please let it not be Randy. The deal with Randy was that he'd do really awful jokes, usually as Red would say, smiling like an ass and totally screwing up delivery and Donna would be in stitches. I think more than half of the last season was Donna pretending to be amused. The problems had started earlier though: what once was a truly great show with an equally great concept that for once wasn't about a dysfunctional family slowly got into the territory of soap opera. Everybody started being in love with everybody, emotional scenes were dragged out at nausea, with just one usually lame joke placed somewhere to divert attention that we were watching ""As The World Turns"". I'm guessing this was character development, but come on that was written almost as clumsily as the moral lessons from ""Family Matters"". To be fair, the last episode, also because it had a cameo by Topher Grace (a cameo in his own show), was really good, even if not that funny either.<br /><br />By the way, yet more criticism on Season 8: what the hell was with the opening theme? Not only did they use the same joke twice (a character not singing), Fez scared the hell out of me. Dude, don't open your eyes that far. But the first five seasons or so,among the best comedy ever broadcast.",1 +10328,"Who knew they could be so funny?? Christopher Meloni and Janel Moloney are known more for their outstanding work in some of television's hottest dramas. (""Law & Order: SVU"" and ""The West Wing"") Put them together on the big screen and what you get is an engaging romantic comedy with plenty of laughs.<br /><br />The actors develop the story's ongoing relationship with impressive skill, leaving the audience bound to fall in love with Barry Singer (Meloni), despite the fact he's a standup comic who also happens to be a mean-spirited, sexist jerk.<br /><br />You'll be rooting for him even as he takes all his insecurities with the opposite sex and chases Thea (Moloney) halfway around the country in hopes of winning her heart. They have so little in common...but when Barry finally opens his heart, you'll wonder why Thea keeps running away.<br /><br />The Souler Opposite is a wonderful movie with an incredible cast and a gifted writer. Well worth your time.<br /><br />",1 +23807,"THAT'S certainly a strange way to promote a film upon which a great deal rested. And it seems like plain suicide on the part of the studio, given that (1) The feuds between the cast were well known long before the movie's release. (2) The feud between the Producer(Robert Fryer) and Director ( Michael Sarne) was also common knowledge. (3) The cast made no secret of their contempt for the film and made it public at every opportunity, with daily bulletins from the set gleefully reported by gossip columnists everywhere.<br /><br />And (4) The author, Gore Vidal hated it practically from day one. Nevertheless, that tagline just about sums it up. Raquel Welch does <br /><br />give a decent performance as Myra, and she looks lovely besides. John Huston is very funny as Buck Loner, the ex-Cowboy Star who runs a phony acting academy. Mae West, (in her first screen appearance since 1943) naturally rewrote her part to suit herself, and she is great as ''oversexed'' (and that's putting it mildly) ''Talent Agent'' Leticia Van Allen. Still, she must have wondered (after waiting so long for a good vehicle in which to return) how she ever ended up in this mess.<br /><br />Tom Selleck (in his film debut) is one of her ''clients''. John Carradine and Jim Backus, as Doctors, also amble in briefly. Rex Reed as Myron, Farrah Fawcett and Roger Herren, as the victims of Myra/Myron's sexual passion, are neither here nor there. The same goes for the script, which not only fails to focus on the basic plot of the book, but seems to head in at least three different directions at once. Although West's part was originally larger, she was reduced to a cameo role by the time Sarne was through with the editing. And, partly because of this, she seems to be in a different movie. Apparently, at some point, the Producers realized that Mae was going to be the film's big draw, and, unable to replace most of her cut footage, they rushed her back to the set at the end of filming for the second of her two songs, both of which come out of nowhere. The device Sarne used of throwing in old film clips of bygone stars to emphasize whatever points he was making, doesn't work at all. By the time the movie concludes, all a weary spectator can do is wonder what in the hell it was all about. Not surprisingly, just about everyone connected with the production felt the same way, and it died at the box office. A technically flawless DVD includes, (among other extras) separate commentaries from both Welch and Sarne, each of whom have completely opposite opinions of just what went wrong.No doubt it's home video re-release was prompted by a 2001'' Vanity Fair'' piece, which attempted (in great detail) to do the same thing. True, the structure of the novel made a screen adaptation a dubious undertaking, but, with Sarne at the helm of what was obviously a ''troubled'' production, it really never had a chance.",0 +18715,"If you hit your head with a shovel, write the script with your feet, you may come close to the intelligence level of this movie. There is nothing in this movie that hasn't been done a thousand times in other gangster flicks and done much better. Those who think ""Scarface"" was some kind of hero to be looked up to or saw ""Goodfellas"", ""Menace II Society"" or ""Dead Presidents"" and thought MMM ""That's the life for me!"" will like this movie. I thought I'd give the movie a chance, since the premise was perfect for a prequel. I should have known better after seeing Mario Van Peebles and Sean Combs were involved. Anyone above a 4th grade education, see the original with Pacino, a real actor, and be satisfied.",0 +21917,"I love the comics. Although I do have problems fully understanding the stories the visual style is unique with all its dirt, dust and decay. So I thought I knew what I was up for. Surprisingly I understood the main plot but some extremely poorly decisions where made for its visual style. <br /><br />I mean - really bad looking ""CG human actors""-in close ups? Why?! It did not work at all!! Horus - and the other Egyption gods - was successfully made in CG and very close to the comic version. <br /><br />I think with real actors this movie could have been a cult movie. <br /><br />What a shame.",0 +1729,"Often laugh out loud, sometimes sad story of 2 working divorced guys -- Lemmon a neurotic clean ""house husband"" and Matthau a slob sportswriter -- who decide to live together to cut down on expenses. <br /><br />Nicely photographed and directed. The script is very barbed -- that is, there's always more than one side to almost every line. Particularly funny scene involves 2 british sisters (Evans and Shelley) who seem amused by everything anyone says, but when Lemmon busts out his photos of kids and, yes, ex-wife-to-be, he has the girls sobbing along with him before Matthau can show up with the promised drinks!<br /><br />Very entertaining.",1 +1336,"At first, I thought the Ring would be a more than normal movie with it's ordinary plot. How surprised was I! Of course, the plot is simple - one girl is in love with two men - but Hitchcock brings it to us on a silver platter, with laughter and fear, with compassion and anguish. The way he depicts the popular crowds of the fair, the strength of the attraction of the girl to both men, the tragic elements that come together with techniques that open the mind to most of his greatest movies(North by Northwest, the Rope, etc.). The master did it great even before his thirties!",1 +14272,"""The Dream Child"" of 1989 is the fifth film in the (generally overrated) ""Nightmare"" series, and at the latest from this point on, the series became total garbage. The only good films in the series were Wes Craven's 1984 original, and the third part, ""The Dream Warriors"" of 1987. The second part was disappointing and boring, and it was the fourth part in which the formerly scary madman Freddy Krueger began to annoy with constant idiotic jokes. This fifth entry to the series has hardly anything to recommend except for (admittedly great) visuals, and one creepy scene, a flashback sequence to how Freddy Krueger came into existence. The rest of the film consists mainly of our razor-clawed maniac-turned-jokester yelling stupid one-liners, and the old formula of a bunch of teenage jackasses, who desperately try to avoid falling asleep, because good old Freddy awaits them in their dreams. Lisa Wilcox is back in the role of Alice Johnson, and a bunch of uninteresting crap, such as a super-dumb 'eerie' children's rhyme is added for no other reason than to have some sort of justification for making this superfluous and boring sequel... In Short: No originality, just a decline of the old formula, and an over-load of painfully annoying jokes. My (generous) rating of 3/10 is due to the great visuals, and especially to emphasize the difference to the terrible next sequel, ""Freddy's Dead"", which is awful beyond belief. In case you're not a hardcore Freddy Krueger enthusiast, ""The Dream Child"" should be avoided, and even if you are, this is more than likely to disappoint.",0 +19823,"Loaded with fine actors, I expected much more from ""Deceiver"" than was delivered. The plot is extremely contrived and manipulative. The many flashbacks only add to the confusion. Believability flies out the window and with the ending becomes unbearable and downright ridiculous. I would strongly advise anyone who likes their movie plots to be based on something that is at least possible to avoid ""Deceiver"" because you will be very frustrated. Maybe I am just not hip enough to get it, but my suspicion is that many others were totally confused by the story line and especially by the ending. Blurring the line between reality and lies simply does not work because the entire movie made no sense. - MERK",0 +21630,"Blue Monkey (1987) or 'Invasion of the BodySuckers' as it's known here in the UK was a pretty boring horror movie about an old man who gets bitten in a greenhouse by some mysterious toxic plant!!!! The man gets rushed to hospital, where this worm like creature comes out of his mouth, of course this transforms into this insect monster and proceeds to go on the rampage!! Despite Steve Railsback and John Vernon being in the movie, i found it to be boring, with a flat predictable storyline, un-interesting characters, cheap special effects and lack of action!!!! Horror fans don't really need to track this rare movie down, you wont be missing much trust me!!! I give this movie 2/10.",0 +19189,"Don't waste your time on this film. It could have been good, but the ending was one of the lamest I've ever seen. I seriously have to wonder how the people involved with the making of this film could've looked at that final scene and thought, ""yeah! now there's an ending!"" and patted themselves on the back about it. To me it seemed more like they just ran out of ideas! They built up the final scenes to have a cool twist, but instead just let the whole build-up fall flat on it's face. When the last shot faded to black and I heard the credit music starting I was in shock - I could not believe what I was seeing and that someone could even call that an ending. The best thing anyone could do with this film is rewrite the end and give it some substance. Seriously, I'd really love to get whoever came up with that one in a room, look them in the face and say - WTF??!!!!",0 +3169,"I bought the video rather late in my collecting and probably would have saved a lot of money if I bought it earlier. It invariably supersedes anything else on those ""Cosmo's moon"" nights. Cher and Olympia certainly deserve their awards but this is really a flawless ensemble performance of a superb screenplay. What? You don't know what a ""Cosmo's moon"" is?",1 +18916,"Some nice scenery, but the story itself--in which a self-proclaimed Egyptologist (Lesley-Anne Down) visits Egypt and, in the course of doing Egyptologist things in the most un-Egyptologistic of ways (e.g., flash photography in the tombs, the handling of old parchment, etc.), uncovers a black market turf war and somehow (in the span of two days, no less!) becomes that war's jumpsuit-wearing epicenter--is more puzzling than any riddle the Sphinx ever posed. Down is simply awful as the visiting British scholar (that she seems to know absolutely nothing about the culture of Egypt and even less about antiquities is the fault of the writers, certainly; but that she's annoying as all get out is her own fault entirely), and the rest of the cast, including Sir John Gielgud and Frank Langella, seem as downright confused by the proceedings as I was. In short, not what you'd expect from Schaffner (Planet of the Apes, Patton) and co.<br /><br />Worth watching for a laughably dated scene in which Down rails against all male scholars, blaming them for her failure as an academic, while bathed under the softest light Hollywood could muster. To top it off, she spends the next hour of the film shrieking and harried and running into the arms of any dude she can find. Wow, talk about your performative irony!<br /><br />*Note to would-be Egyptologists: take a year or two of Arabic in grad school. It'll really help out in the long run...",0 +19742,"This movie was lame, lame, lame. What a build up! What a let down. All form, no substance. A terrible waste of talent and time. Would not recommend it to my husband's dog, who will watch anything.",0 +16027,"Ron Howard directed this? The 1966 cartoon is charming, teaching a simple lesson to children using a simple plot. In this movie, Howard gives us a Whoville filled with greedy, manipulative, self-centered Whos. Jim Carrey is terrible, but I'm sure it's not his fault; I imagine the script called for the nastiest person imaginable, so Carrey channeled Tom Green and the result is movie magic. Much like Danny Devito's Penguin in Batman Returns, Carrey's Grinch is so thoroughly unlikeable that any degree of comedy that might be mined from his character simply evaporates. Where the 1966 cartoon featured a Grinch that we could all identify with, Carrey's Grinch is that angry, soulless old man that we've all seen at one time or another, sitting in a parked car muttering to himself or tripping toddlers at the supermarket with his cane. This Grinch is thoroughly bereft of any degree of humanity, humor, or insight whatsoever, and his redemption at the end of the movie rings false. The whole movie rings false: there is some stupid Christmas lighting competition, a failed attempt at explaining why the Grinch is such a jerk by digging into his childhood, and an indecipherable mystery as to why some of the Whos have that weird lip extension and some of them don't. Contrary to the 1966 cartoon, I would imagine children would find this movie tiresome, irritating, and filled with contradictory messages. Did we really need to see Slutty Smurf, aka Christine Baranski as Martha May Whovier? In addition, Ron Howard filled the cast with his untalented relatives. Throw in the requisite butt jokes, fart jokes, sex jokes, and other obligatory Carreyesque low-brow humor, and you have a movie that is about as far from the 1966 cartoon (or book that inspired it) as George W. Bush is from rational, lucid thought. Thumbs down on this big fat turkey.",0 +24497,"I wondered why John Wood was not playing Dr. Falken until I watched the film. BAD plot, bad science, bad acting and overall a bad film. Please don't watch this film. Rent the original ""War Games"" if you are feeling nostalgic.<br /><br />I didn't like the bending of the plot to beat-the-terrorist-threat idea either. In the first film W.O.P.R was built because Russia had 1000s of warheads pointed at the U.S.A. In this film the idea behind the computer was to kill terrorist in training before they are a threat. Politics aside, one of the good thing about the first film was the highlighting that even a stupid computer could grasp the idea of the pointlessness of war in the end. No such insight is offered in this film.",0 +14359,"I am a Motion Picture Production major at Wright State University in Ohio, and yesterday I was sadly given the opportunity to watch this god-awful film in class. We were informed by our professor that it would be very funny to us, but the reason we were watching it was because it was one of the first sound films - a complete disaster.<br /><br />The problem with early sound films was that Hollywood actors only knew how to do silent movies and they weren't good at memorizing lines. So producers and directors would look to the stage to get actors. Sounds like a great idea, right? Well, the kind of acting one does on stage doesn't show up too well on film. Most of the actors in ""Atlantic"" look and sound like they're acting in a play, which results in lots of hearty laughs at the over-acting. Another limitation of early sound film was the technology of microphones. You couldn't move the mikes like you can today, you had to keep them static or it would pick up the sound of air moving through. There was usually one mike used in any given scene in this movie. In one particular scene, there is a man sitting at a table. Someone walks right up to him and delivers their line, then walks away. Another actor comes up from behind him, delivers their line, then walks away. It goes on like this for a couple more people. The microphone is obviously right by the man at the table, making for a laughable actor carousel.<br /><br />Those are only technical problems. If you get into the story and direction, then it gets even worse. The story is a fictionalized account of what happened on the Titanic. The characters are unbelievable and pointless. A ""story"" about a man cheating on his wife and their teenage daughter has no place in the movie. It is barely resolved and leaves you wondering why it was there in the first place. A lousy attempt at high drama, the actors take long, pregnant pauses between lines many times. It is tiresome, and you can't wait for this 90 minute (feels like 180 at least) movie to get over with. I'm not going to talk a whole lot about the issue of racism at this time in our country, but it really offended me that there were only two blacks in the whole movie, and they were portrayed as animals. They both pushed past the women and children to try and get in one of the lifeboats. They were ordered to stop or be shot, and of course they didn't so they were shot. I was appalled.<br /><br />I give this movie a 2/10. I would have given it a 1/10 (the lowest rating possible), but I gave it an extra point just because it was one of the first sound films, and I tried to put it into context. If you want to see a good early sound film, check out Alfred Hitchcock's ""Blackmail"" that also came out in the year 1929. You will find that the best directors were able to adapt to new technology immediately.",0 +3302,"After not having much luck at selling his screenplays to the new movie industry during the first decade of the 20th Century, in 1908 playwright D.W. Griffith got the job that would make him a legend: he was hired by the Biograph Company as a director of movies. It wasn't really what Griffith had expected when he decided to enter the movie business, but he accepted the job, and in less than a year he became Biograph's most successful director thanks to his original approach to film-making and the wild inventive of his narrative. Many years later, he would direct ""The Birth of a Nation"" in 1915, the movie that would revolutionize film-making and make him one of cinema's first recognized authors; however, a lot of what would make him a great filmmaker can be found in the many short films he made for Biograph Company in the early years of his career. 1909's ""The Sealed Room"" is one of those, and also one of the few horror movies of that very first decade of the 20th Century.<br /><br />""The Sealed Room"" is a story set in the 16th Century in which a Count (Arhtur V. Johnson) has built a windowless room in his castle. It is a small yet nice and very cozy room, as it is meant to be used to enjoy the love and company of his wife, the Countess (Marion Leonard) in a more private way. However, the Count doesn't know that his wife is not exactly faithful, as she is infatuated with the Minstrel (Henry B. Walthall) at Court, with whom she is having an affair. As soon as the Count gets busy with his own business, the Countess calls the Minstrel and both lovers go to enjoy the Count's new room. When the Count returns, he discovers she is missing and begins to suspect, finally discovering the two lovers in his room; but instead of making a scene, he prefers to remain hidden as he decides that there is a better punishment for his unfaithful wife: to seal the windowless room with the couple inside.<br /><br />Written by Griffiths' regular collaborator Frank E. Woods, ""The Sealed Room"" takes elements from Edgar Allan Poe's ""The Cask of Amontillado"" and mainly Honoré De Balzac's ""La Grande Breteche"" to create a haunting Gothic melodrama based on the themes of treachery and sadism. Despite having a runtime of 11 minutes, Woods' screenplay develops the story in a very good way, and plays remarkably well with the horror elements of the story. While a melodrama at heart, Woods focus on the character of the Count and his sadism creates one of the best horror characters of these early era. ""The Sealed Room"" is definitely a very simple and basic story, but Woods handling of the dark and morbid thematic of its plot makes the story a very entertaining film that was very different than most Griffith's melodramas.<br /><br />In ""The Sealed Room"", Griffith uses his talents to experiment with tension and suspense in a different way than his usual. While he often played with editing to create thrillers that excited his audience, in this movie his focus was to create desperation and horror, playing with the inherent feeling of claustrophobia that the source stories had. It is interesting how the story starts as another of his melodramas and slowly the pacing becomes faster as the horror themes begin to dominate the plot, culminating in his great use of editing for the final scenes. Not being a movie where camera tricks are essential, what shines the most in ""The Sealed Room"" is Griffith's talent to direct his actors, as the legendary filmmaker manages to bring the best out of his cast with his usual natural style far removed from the staginess that was the norm in his day.<br /><br />As usual, the cast was comprised of usual collaborators of Griffith, starting with Arthur V. Johnson as the Count. Johnson gives a great performance and truly conveys the character's transition from loving husband to sadistic monster. His performance is not without a touch of overacting, but actually that adds realism to the character's exaggerated personality. As the Countess, Marion Leonard looks very good and is also very effective in her acting, conveying a natural charm that makes hard not to sympathize with her in her treachery. Finally, the legendary Henry B. Walthall appears as the handsome Minstrel, and while far from being one of his best performances, he manages to give a proficient acting that also adds a nice touch of comedy to the film. While not of real importance to the plot, it's nice to see other members of Griffith's stock company in the background, like his wife Linda Arvidson and a young Mary Pickford as nobles at Court.<br /><br />While not exactly a masterpiece, ""The Sealed Room"" is a notable exercise of editing to create suspense and tension like Griffith used to do in those days. The movie has very good set design and while of a very low budget, Griffith's care for details makes it look very convincing and works perfectly along with his directing style. The change of focus to horror makes it to stand out among other of his films from that era, and Johnson's performance as the sadistic Count makes it worth a watch. While Griffith will always be remembered for his highly influential (and controversial) ""The Birth of a Nation"", the early short films he made before it really give a good idea of the development of the techniques and the style that would make him a legend. Simple yet elegant, ""The Sealed Room"" is a fun movie to watch and one of the few horrors of the first decade of the 20th Century. 7/10",1 +1288,"This is one of those unfortunate films that suffered an even more sad, unfortunate death at the box office. I saw this film at a local art cinema,in revival form,shortly after it tanked in mainstream cinemas. It certainly deserves to be approached a second time (or even a third). Sandra B. takes it to the limit by doing spoken word & taking on some well known songs in this piece (her version of Hank William's 'I'm So Lonesome I Could Cry' could easily move you to tears). Maybe someday, audiences will be ready to take this film a bit more seriously (but not without some well placed laughs,too). The film moves at a brisk pace (thanks to some nice editing),so that some viewers will not find it stale & boring. Perhaps a revival is just down the pipeline.",1 +2874,"......... and you get Chori Chori Chupke Chupke. Don't get me wrong, this movie is much less explicit (or not even) than Pretty Woman, but it (was) a new topic for Bollywood. The topic was accepted but it is far from Jism, Murder, and Julie. To tell you the truth, the topic is presented in a very clean manner. But the plot has it's number of clichés. The beginning of the movie is presented in a very ""filmi"" way. There are some very little plot holes. The movie picks up once Rani has her miscarriage where you feel that you are watching something other than a typical movie. Otherwise the whole family sequence felt overdone in the beginning. The acting couldn't have been any better. Salman Khan sometimes impresses, and sometimes lets you down. Over here he gave one of the best performances. On top of that his role is written so well, that you applaud every time he solves a problem. Rani Mukherjee was adequate. Throughout the movie, you feel for her character the most, but she is overshadowed by Preity Zinta. Preity Zinta is picture perfect. Out of the three, she gives everyone a run for their money. Its surprising how she can be just as convincing when she is innocent. And trust me, Madhubala is far from your girl next door. This role is one of the reasons why I rate her high. The supporting cast are like the family you see in HAHK, where they have no significance to the plot yet I found them tolerable here. The songs are pretty nice. The title song is my favorite of them all along with Dil Tera Mera Dil (Hearts). Mehndi Mehndi (Henna) and Dekhne Walon Ne (Look at the World's Sight) are two song that fit the film perfectly. Preity's cabaret number, Diwani Diwani (Crazy), could've been shortened while No. 1 Punjabi came across boring though it had good dancing. Otherwise the movie is definitely worth a watch.",1 +7201,"to communicate in film essential things of life - like what is life, does it have a meaning? - is sheer impossible. Of course possible answers to these questions are demonstrated in every film (story), but communication needs a direct appeal to consciousness. This happens if the input from the senses overrules the ""input"" from our mind, i.e. our thoughts. Few directors know how to communicate essential things. Tarkovsky, is one. His ""Stalker"" shows images of existence, communicates life as it shows itself and yet escapes your mind. I think De Zee and De Graaff do the same.",1 +5859,"This is a extremely well-made film. The acting, script and camera-work are all first-rate. The music is good, too, though it is mostly early in the film, when things are still relatively cheery. There are no really superstars in the cast, though several faces will be familiar. The entire cast does an excellent job with the script.<br /><br />But it is hard to watch, because there is no good end to a situation like the one presented. It is now fashionable to blame the British for setting Hindus and Muslims against each other, and then cruelly separating them into two countries. There is some merit in this view, but it's also true that no one forced Hindus and Muslims in the region to mistreat each other as they did around the time of partition. It seems more likely that the British simply saw the tensions between the religions and were clever enough to exploit them to their own ends.<br /><br />The result is that there is much cruelty and inhumanity in the situation and this is very unpleasant to remember and to see on the screen. But it is never painted as a black-and-white case. There is baseness and nobility on both sides, and also the hope for change in the younger generation.<br /><br />There is redemption of a sort, in the end, when Puro has to make a hard choice between a man who has ruined her life, but also truly loved her, and her family which has disowned her, then later come looking for her. But by that point, she has no option that is without great pain for her.<br /><br />This film carries the message that both Muslims and Hindus have their grave faults, and also that both can be dignified and caring people. The reality of partition makes that realisation all the more wrenching, since there can never be real reconciliation across the India/Pakistan border. In that sense, it is similar to ""Mr & Mrs Iyer"".<br /><br />In the end, we were glad to have seen the film, even though the resolution was heartbreaking. If the UK and US could deal with their own histories of racism with this kind of frankness, they would certainly be better off.",1 +10990,"A surprisingly effective thriller, this.<br /><br />David Duchovny and Michelle 'Ensign Ro' Forbes are a successful, professional couple, he a writer, she a photographer. Forbes is desperate to move to California and, in an act of compromise, Mulder agrees to the move on the condition that, along the way, they visit sites of historical interest concerning famous serial killers. His idea: he writes the words, she takes the pictures, with the end result a bestselling coffee table book that will set them up for life. To help finance the trip, they decide to car share and advertise the fact. As their bad luck would have it Brad Pitt sees the advert and, shortly after killing his landlord, he and his girlfriend, Juliette Lewis, meet the writer couple and begin their cross country trek. Inevitably, mischief ensues.<br /><br />Pitt is outstanding as the genuinely chill inspiring Early Grayce and is capably backed up by Lewis playing her customary white trash character that seems to be her default setting. Duchovny and Forbes make for a convincing double act too and, as events spiral out of control, you as the viewer are sucked into their plight and can feel the tension ratcheting.<br /><br />Intelligent, sinister and beautifully shot, this deserves recognition beyond its current status. A top movie.",1 +7221,"I saw this movie years ago on late night television. Back then it went by the title of ""Stairway to Heaven"". Even as a young boy, I remember being deeply moved by the story and astounded by the visual effects of the court trial (those who have seen it know what I'm talking about). Such imagination! A perfect blend of romance, drama, humour and fantasy, this movie is right up there with the greatest classics ever made: Citizen Kane, Casablanca, Gone with the Wind. This movie is rated extremely high by IMDB voters and rightly so - over 51% voters rated it 10 out of 10; over 84% rated it 8 or higher out of 10. I was surprised it was not listed in the top 250 films until I realized so few have seen/rated this movie, compared to those on the list. What a pity. I hope this movie gets released on DVD for Region 1 (North America), so that 1), I can purchase it, and 2), others discover this hidden treasure.",1 +17452,"Oh my GOD this was so bad! The story was weak - at best - and the animation was flat and lifeless - even childish. This film takes itself far too seriously...unless of course they meant to be funny. I saw this last week at the London Sci-Fi Festival and the entire audience was laughing at every scene. I think my favourite was 'shouldn't you be studying medicine at Oopsalof'! And I also think they were trying to see how many times they could cram in the character Nicalo's only line 'we will be together...it is our destiny.' I'm sorry but after the first time, the words lost all meaning.<br /><br />And what was with the apple?<br /><br />I recommend this as a lesson to Americans: You cannot animate, so please don't try. You only embarrass yourselves.",0 +19831,"This straight-to-video duffer is another nail in the coffin of Rick Moranis's career. As is the Disney tradition, quality is sacrificed in the name of a quick cash-in; this is a lazy retread with Moranis accidentally shrinking himself and a few relatives so they can repeat all the best scenes from the original movie. Instantly dated visual effects and crummy dialogue abound in this cheesy lamer, which did nothing but make me pine for the days of 'The Incredible Shrinking Man', when this kind of thing was done properly. Shockingly, this is directed by top cinematographer Dean Cundey, who should either stick to the day job or pick better material next time.",0 +9109,"An Insomniac's Nightmare is the story of a man's plunge into insanity. Having chronic Insomnia, Jack is plagued by hallucinations; causing him to try and determine what is real and what isn't.<br /><br />We find out interesting things about Jack near the end, and think that by the time the movie is over we will have a ""happily ever after"" Hollywood ending. Wrong. This is New York City, the place where nobody sleeps.<br /><br />Tess Nanavati (Writer and Director) has herself a good film in 'An Insomniac's Nightmare'. A talented filmmaker and writer (she made this film right after her High School Graduation), she has real potential and will be one to watch in the upcoming future.<br /><br />As I watched this short film I was constantly uncomfortable; between the music, bleak scenery, and realistic portrayal of an insomniac by Dominic Monaghan (as Jack), I desperately wanted to turn this off at times just to escape from it.",1 +21221,"I don't quite get the rating for The Amati Girls and I think I was REALLY kind giving it a 4 out of 10. What could otherwise have been a wonderful story with actually a set of more or less decent actors became a total farce in my eyes. There are so many clichés in that flick, the women's hair is just awful and most of the scenes are more than unrealistic or seem fake. There's no real passion in this movie but a bunch of actors over-acting over any limits that it hurts. It's not funny enough to be a comedy, it's too fake-sad to really touch, so in my eyes it's just not good. Watching it I couldn't believe how something like that made it to my TV set in my living room in Switzerland. But.. maybe it still was OK and it just got lost in translation? Who knows. Definitely one of the oddest movies I've ever seen and this certainly not in a good way! Sorry.",0 +22321,"Gorgeous bodies, gorgeous colors and camera work, pretentious dialog, banal plot. The name of the prima donna, Camilla, and the eponymous flowers that appear frequently, are enough to remind us of the plot similarities from Dumas' novel La Dame aux Camelias, the movie Camille starring Garbo and (I think) Robert Taylor, and last but not least Verdi's opera La Traviata. Beautiful, not-too-virtuous young ladies, social outcasts for one reason or another, loved, split up, reunited just in time to die of tuberculosis in the last scene... One forgives banal plots and stupid unrealistic dialog in opera, but why waste Hayak, Don Sutherland, a beautiful rendition of LA in the 30s, a deus ex machina earthquake that conveniently kills the other woman, and all that beauty on this mediocre turkey where there isn't even any beautiful singing?",0 +23869,"If you've ever wanted to see a film that stresses style over substance, this is for you. To me, Son de Mar is beautiful to SEE, but there's precious little substance, unless mawkish, melodramatic, manipulative love yarns turn you on. This may be one of those famous 'chick flicks' you've heard so much about. <br /><br />We're about half-way through this film before anything really happens: Ulises (Jordi Molla) goes out to sea looking for tuna, and doesn't come back, leaving his wife Martina (Leonor Watling) and son to fend for themselves. Then, in a furious six minutes of screen time, they bury Ulises, Martina gets married again, and her son grows into mid-childhood. This rapid transposition is jarring, to say the least, and very sloppy: after 40 minutes of more or less hanging around, we're suddenly into a full-blown melodrama, all in six minutes. I think this is called wayward narrative pacing.<br /><br />Five years later, Ulises (as in the wandering superhero Ulysses; get it?), returns to his 'Penelope' (Watling) only to find she's married to Sierra (Eduard Fernandez), an inexplicably wealthy guy (what does he DO to earn all that dough?) who inexplicably keeps crocodiles as pets. When Martina, in great anger, questions Ulises about his absence, he tells her that he'll take her to the island of Sumatra someday and she'll understand EVERYTHING.<br /><br />And here's the thing: he DOESN'T take her to the island of Sumatra. The reference just dies somewhere in the script. He DOESN'T really explain where he was and why he ignored his wife and child for five years. He DOESN'T acquit himself as an honourable guy, and the movie DOESN'T fill in the plot holes that are staring at us for at least half of the film. I can only assume that director Bigas Luna wants us to fill in the story lines with the mystical clues (fish, reptiles, the sea) he offers through breathtaking cinematography and evasive dialogue. It just doesn't work. The narrative 'arc' on this film ends up looking more like a wobbly clothesline.<br /><br />I'm sure Jordi Molla is a good actor, but I just couldn't buy his Ulises as any kind of hero (which is what the original Ulysses was supposed to be). With moist sensuality, he spouts a short stanza of identical poetry from Virgil roughly 2,000 times and each and every time it excites Martina to explosive orgasm. This guy should be rented out to reinvigorate stale marriages. I'm sure Virgil would be impressed. He didn't get laid that often, as I understand it. <br /><br />This poetic 'device' figures prominently in the film, and I had no choice but to assume it was a gender reversal of Ulysses' famous 'siren song' (i.e. beautiful maidens singing seductively to far-off sailors, who were doomed if they answered the, well, siren call). If this is what Bigas Luna is up to, you can see the problem -- he's offering convoluted symbolism in a snatch-and-grab attempt at High Art. Once again, it just doesn't work, at least in my eyes.<br /><br />Watling is a beautiful and magnetic young actor, but she gives us a character here who doesn't seem to have much intellectual or even romantic depth. It's beyond me how she could desperately fall in love with a guy who sports a for-rent sign on his face (as in vacant), oily 1960s-style hair that looks more like seaweed, and one of those trendy 21st-century 'beards' (you know, four days' growth, no more, no less). He's SUPPOSED to be a dreamy kind of guy (I think), but those eyes of his suggest he might be suffering more from overexposure to a preposterous script. <br /><br />But, don't despair, this film is great to look at. Just don't try to connect the dots on the red herrings or think too much about what you're hearing in the way of dialogue. You can do a lost of fast-forwarding on this film (particularly in the first 40 minutes) and you really won't miss much.",0 +14510,"Notorious for more than a quarter century (and often banned), it's obscurity was its greatest asset it seems. Hey, it's often better to be talked about, rather than actually seen when you can't back the ""legend"" up with substance.<br /><br />The film has played in Los Angeles a couple of times recently, and is available on home video, so that veil is slowly being lifted. While there is still plenty to offend the masses, it is more likely to bore them, than arouse much real passion. Except for a gratuitous and protracted XXX sex scene between a pair of horses (""Nature Documentary"" anyone?), there follows nearly an hour of a dull arranged marriage melodrama. <br /><br />Once the sex and nudity begins, it is a nonstop sequence involving masturbation, a looooooooong flashback to an alleged 'beauty and the beast' encounter, and a naked woman running around the mansion (nobody, even her supposedly protective Aunt, seems to even think of putting some clothes on her!). On video, I guess you can fast-forward thru the banality, but it's not really worth the effort. The nudity doesn't go beyond what is seen in something much more substantive such as Bertolucci's THE DREAMERS.<br /><br />Try as one might to find some 'moral' or 'symbolism' in the carnality, I doubt it's worthy of anyone's effort. Unfortunately, for LA BETE, now that you can more easily see the film, the notoriety of something once 'forbidden' has been lifted. And this beast has been tamed.",0 +6921,"While browsing the internet for previous sale prices, I ran across these comments. Why are they all so serious? It's just a movie and it's not pornographic. I acquired this short film from my parents 30 years ago and have always been totally delighted with it. I've shown it to many of my friends & they all loved it too. I feel privileged to own this original 1932 8mm black and white silent film of Shirley before she became popular or well known. After reading the other comments, I agree that the film is ""racy"". Big deal! I only wish it was longer. It seems that I must be the only person who owns one of these originals, for sale at least, so I wonder how much it's worth?",1 +3050,"Enjoyed catching this film on very late late late TV and it kept my interest through out the entire picture. This wonderful creepy, yet mysterious looking English home, with evil looking decorations and weired furniture and rooms that make you wonder just why anyone would want to rent this home or even own it. There are four(4)Tales concerning this house, and each resident of the home meets with all kinds of problems. You will notice the beautiful lake and pond around the home and also the sweet singing of birds, but don't let that fool you, there is horror all over the place. Peter Cushing,""Black Jack"",'80 gives a great performance as one of the person's living in the home and even Christopher Lee,""Curse of the Crimson Altar"",68 and his little daughter, Chloe Franks,(Jane Reid) make a wonderful exciting story together, his daughter for some reason loves to read WITCHCRAFT BOOKS! If you love creepy, horrible and mysterious films, with lots of surprises, this is the FILM FOR YOU!!!!",1 +23294,"Words fail me.<br /><br />And that isn't common.<br /><br />Done properly this could have been great, funny spoof B-movie sci-fi, but sadly, it was not to be. Rarely in the field of drama have so many competent actors struggled so vainly with such a dogs-breakfast of a script. I can only endorse the previous reviewer's comments - go clean the bathroom. In fact do ANYTHING except watch this film.<br /><br />Positives: Lucy Beeman's nose. Negatives: Everything else.<br /><br />Most apposite line: ""This isn't going anywhere"".<br /><br />If only every plastic surgeon could meet with such a fate.",0 +13002,"I saw the 10p.m. showing and I must say that this movie was nothing special. Although I did not leave the theater wanting my time back (as I don't actually pay for movies anymore) I didn't really find any redeeming qualities.<br /><br />There were a few lines and such that made me chuckle, but mostly the film seemed to consist of rampant fan service to the younger (in mind more than age as this film is rated R) male audience. The fan service seemed out of place and rather distracting as well. I know you all want to hear Samuel L. say his infamous line, but let's be honest, it's a whole lot of hype for very little pay off. The only truly horrible part of the film was the CG, which looked very digitized and did not mesh well with the live action on the screen.<br /><br />Now I am a reasonable man, I knew going into the theater that I wasn't going to be seeing ""Casablanka,"" and I am at least thankful that this film is an original (albiet inane) idea and not some re-make or franchise spin off. However to be honest, if you are not a part of the cult following you are probably better off spending your money elsewhere and seeing the film either in a second run theater in a few weeks or renting it in a few months.",0 +23306,"I personally hated this movie because it was predictable, the characters were stereotypical ,and the whole idea was a rip off of ""The Cutting Edge"", and ""Cadet Kelly"". <br /><br />The main character is a snotty girl who gets shipped of to a place where she doesn't belong. The whole place hates her, and to make things worse there is a hot guy that seemingly doesn't like her ( well duh the whole damn school can't stand you). Amazingly she finds a way to fit in and make everyone to like her plus, gets the guy to fall head over heels in love with her. Then comes the choice, where she must choose between figure skating and hockey. She chooses hockey then she goes to the figure skating nationals,and gets to be on the Olympic team. No real surprise there.<br /><br />This whole movie was so damn predictable You knew what was going to happen before you even saw it. This was so awful I nearly puked, and by the time I was finished watching it, I had an awful headache and the urge to shoot myself for watching such crap. Don't watch this unless you are under ten, or actually like crappy tween movies.",0 +18838,"Where to start? OK, don't compare this film to fight club for a start - ridiculous. If it was even a patch on fight club, the violence, blood, gore etc would be much more evident and realistic. Secondly, this film is no football factory - which is so much more real (and Danny Dyer makes Nicholas Nickelby look like an embarrassment). Fair enough, the storyline is quite decent and the fight scenes are well choreographed - with a decent ending i might add. But the film on the whole is poor, seriously poor. As people have been mentioning the accents should not spoil a film - i disagree - either a simple casting error, or a lack of effort in coaching the voices caused the film to be irritating all the way through - it was obvious from scene one some American/Geordie was playing the role. Don't get me wrong, good looking guy, who looks great with a skin head - but no not a football hooligan. I could go on forever about how ridiculous the football scene was - the 'fake steward' situation. Also, when the GSE are going to play United up north, they go on the train expecting only 3 of them - doesn't make any sense - this a real organisation of gangsters and thugs, which is portrayed in the film to be some mickey mouse cult of about 5 people. In terms of accuracy - did West Ham and Milwall not play for the last couple of years they have been in the Championship together? Hmm, ten years OK. And I'm sure 'Bother' would be able to just waltz into a Milwall firm pub. Basically, a very poor film which people will like if they have little knowledge of real football, and hooliganism. If you do actually love football and are intrigued by the underworld of hooliganism,, you will simply feel as though this film has insulted your intelligence. Ross George",0 +312,"Here's my first David Mamet directed film. Fitting, since it was his first, as well. <br /><br />The story here is uneven and it moves along like any con movie, from the little cons to the big cons to the all-encompassing con. It's like ""The Grifters,"" but without that film's level of acting. (In that film, John Cusack was sort of bland but that was the nature of his character.) The acting here is very flat (I sometimes wondered if the bland acting by Crouse was supposed to be some sort of attack on psychoanalysis). At least in the beginning. It never gets really good, but it evolves beyond painfully stiff line reading after about ten minutes. Early in the film, some of Lindsay Crouse's lines -- the way she reads them -- sound as if they're inner monologue or narration, which they aren't. With the arrival of Mantegna things pick up.<br /><br />The dialogue here isn't as fun as it should be. I was expecting crackerjack ring-a-ding-ding lines that roll off the tongue, but these ones don't. It all sounds very read, rather than spoken. Maybe Mamet evolved after this film and loosened up, but if not, then maybe he should let others direct his words. He's far too precious with them here and as a result, they lose their rhythmic, jazzy quality. What's more strange is that other than this, the film doesn't look or feel like a play. The camera is very cinematic. My only problem with ""Glengarry Glen Ross"" was that it looked too much like filmed theatre, but in that film the actors were not only accomplished, but relaxed and free. Everything flowed.<br /><br />I wouldn't mind so much if it sounded like movie characters speaking movie lines -- or even play characters speaking play lines -- but here it sounds like movie (or even book) characters speaking play lines. It's a weird jumble of theatre and film that just doesn't work. That doesn't mean the movie is bad -- it isn't, it's often extremely entertaining. The best chunk is in the middle.<br /><br />It's standard con movie stuff: the new guy (in this case, girl) Margaret Ford (Lindsay Crouse) gets involved in the seedy con underworld. How she gets involved is: she's a psychiatrist and one of her patients, Billy is a compulsive gambler. She wants to help him out with his gambling debt, so she walks into The House of Games, a dingy game room where con men work in a back room. I'll admit the setup is pretty improbable. (Were they just expecting Crouse to come in? Were they expecting she'd write a cheque? Was Billy in on it? One of these questions is definitely answered by the end, however.)<br /><br />And from here the cons are start to roll out. I found the beginning ones -- the little learner ones -- to be the most fun. We're getting a lesson in the art of the con as much as Crouse is. <br /><br />We see the ending coming, and then we didn't see the second ending coming, and then the real ending I didn't see coming but maybe you did. The ball just keeps bouncing back and forth and by the last scene in the movie we realize that the second Crouse walked into The House of Games she found her true calling.<br /><br />I'm going to forgive the annoying opening, the improbable bits and the strange line-reading because there are many good things here. If the first part of the movie seems stagy, stick with it. After the half-hour mark it does really get a momentum going. If you want a fun con movie, then here she is. If you want Mamet, go watch ""Glengarry Glen Ross"" again -- James Foley did him better.<br /><br />***",1 +15538,"For your own good, it would be best to disregard any positive reviews concerning this movie. This flick STINKS. Now, I like (at least in theory) low budget horror movies, but this one makes the worst mistake a low budget flick can make: It takes itself WAY too seriously. And, unfortunately, that's not it's only problem.<br /><br />It's the story of the murderous Beane clan of the British Ilses transposed to modern times. An interesting premise, but there are two things that are immediately perplexing about this film once you start watching it.<br /><br />#1- Why is the biggest name on the CD box Jenna Jameson? She's a below average looking woman who can't act, and she has a minor role. ANSWER: She's apparently a well known porn star (as you no doubt read in other reviews), so I guess this is a ""cameo"" appearance for her. She's giving the film much needed ""name recognition"", it seems. Her top billing isn't any indication of her talent, though, it's an indication of how UNtalented the rest of the cast is.<br /><br />#2- How can film makers be so stupid to think Canada can be passed off as Ireland? It doesn't even remotely look like Ireland. And the house that the guests/victims stay in is this great big North American wood frame Edwardian thing. They should have skipped the whole Beane theme and developed a story that took place in N.A. Also, if you're going to make a movie that takes place in Ireland, it's probably best to have more than one character with an Irish accent (and that was a REALLY REALLY REALLY BAD Irish accent.) Now,this wouldn't have been so bad if the director wasn't trying to make the next ""Night of the Living Dead"", but it seems he was. Too bad. He could have had some fun with it. In fact, some of the scenes weren't far from being unintentionally comedic as they were.<br /><br />Like the infamous gutting scene, were the woman is chained to the table, stripped naked, and then sliced open and eviscerated. That's funny, you ask? Well, in the deleted scene version, the mutant killer pulls out mile after mile after mile of intestines. It's actually funny after awhile. And what self respecting cannibal eats intestines, anyway? Do we eat the intestines of cows and chickens? Heck no, we eat hams and ribs and drumsticks. Oh well.<br /><br />Some of the other cast who were annoying: the whiny, creepy Howard Rosenstein. I'm not sure, but I THINK he was supposed to be cast as a STUD. In fact, he's as big a loser and goof ball as his name would imply. Which would explain why the character played by the equally annoying Gillian Leigh fell for him.<br /><br />I checked Gillian Leigh on her link on IMDb, and apparently it's important to know that she graduated high school with honors. I can't decide if it's more amusing or pathetic to know that only a couple years after graduation, the honor student is doing nude soft-core porn scenes in a shower with a guy named Howard Rosenstein. Wonder if her former classmates have seen this movie? If they have, hopefully they'll get the message: AVOID THIS FATE! GO TO COLLEGE!!! I could go on and on, but why. If you like gore, you'll find something redeeming in this flick, but not much more.",0 +2751,"My family and I have viewed this movie often over the years. It is clean, wholesome, heartbreaking and heartwarming. Showing us the compassion between two families of two countries thousands of miles apart and by the most uncanny of coincidences, it's almost as if the hand of God had to be intervening.<br /><br />5 yo Jodelle Micah Ferland who plays Desi the heart stricken little girl, does a magnificent job of acting her part, and for me she was the Priam choice for the lead role.<br /><br />All in all, a 10 out of 10. There are no downsides to this sweet human story. Children of all ages will tearfully, then joyfully watch this and it will bring the viewing family together with smiles and good feelings.",1 +22098,"Let this serve as a warning to anyone wishing to draw attention to themselves in the media by linking their name to that of a well-loved and well-respected, not to say revered author, in order to draw attention to their home-movies out on DVD.<br /><br />Hyped to the skies by its obviously talentless makers, in fact lied about only to be revealed, finally, as ludicrously inept in every department, the fans of Wells and of his book have been after the blood of its Writer-Producer-Director since it appeared on DVD.<br /><br />Many good points have been made by the other comments users on this page. Particularly the one about using this as a teaching aid for Film School students, since this ""film"" does not even use the basic grammar of scripting, editing, continuity, direction throughout its entire 3 hours running time. It is possible the Director did show up for the shoot. Certainly there was no-one present who knew even remotely what they were doing.<br /><br />An ongoing thread continues to evolve on this IMDb page which should at least furnish the watchers of this witless drivel with a few laughs for their $9.00 outlay.<br /><br />Much was promised. Absolutely nothing was delivered. Except ""Monty Python Meets ""War of The Worlds"" with all the humour taken out.<br /><br />Indefensible trash. Just unbelievable.<br /><br />There are REAL independent film-makers out there to be checked out. People who actually try to work to a high standard instead of flapping their gums about how great their movie is going to be.<br /><br />People could do worse than keep an eye on Brit film-maker Jake West's ""Evil Aliens"" for example.",0 +15939,"Well, I like to be honest with all the audiences that I bought it because of Kira's sex scenes, but unfortunately I did not see much of them. All sex scenes were short and done in haphazard manner along with all the weird and corny background music just like all other B movies - it just doesn't look much like two people having sex. There is a tiny bit of plot toward the end - Kira's new lover is a killer. Whoa!!! how shocking!!! Why don't we nominate this movie for Oscar Award? I can't imagine how bad the movie would look like if it were R-rated (Mine is imported from UK, rated 18). Conclusion? Put it down and walk away, so yon won't end up with being a moron like me.<br /><br />Score: 2/10",0 +20665,"This was an absolutely terrible movie. Don't be lured in by Christopher Walken or Michael Ironside. Both are great actors, but this must simply be their worst role in history. Even their great acting could not redeem this movie's ridiculous storyline. This movie is an early nineties US propaganda piece. The most pathetic scenes were those when the Columbian rebels were making their cases for revolutions. Maria Conchita Alonso appeared phony, and her pseudo-love affair with Walken was nothing but a pathetic emotional plug in a movie that was devoid of any real meaning. I am disappointed that there are movies like this, ruining actor's like Christopher Walken's good name. I could barely sit through it.",0 +24554,"You have to admire Brad Sykes even if you don't particularly want to, a man who churns out budget horror after budget horror to less than enthusiastic receptions. But keeps on doing it all the same. Even the half-hearted praise than surrounds his Camp Blood films is given grudgingly and I'm as guilty of this as anyone. Brad normally manages to throw something interesting into the mix, a neat idea, a kooky character, whatever, but without the funds to take it further than base level, he relies on the audience to cut him some slack and appreciate it for what it is and what it could be. Joe Haggerty gives a spirited and very funny performance as Ebenezer Jackson and its a credit to Sykes that he can sense that this oddball turn is going to work within the framework of the film. Coming to a multiplex near you, in a parallel universe, somewhere.",0 +6769,"As a matter of fact, this is one of those movies you would have to give 7.5 to. The fact is; as already stated, it's a great deal of fun. Wonderfully atmospheric. Askey does indeed come across as over the top, but it's a great vehicle for him, just as Oh, Mr Porter is for Will hay. If you like old dark house movies and trains, then this is definitely for you.<br /><br />Strangely enough it's the kind of film that you'll want to see again and again. It's friendly and charming in an endearing sort of way with all of the nostalgic references that made great wartime fare. The 'odd' band of characters simply play off each other as they do in many another typical British wartime movie. It would have been wonderful to have seen this film if it had been recorded by Ealing studios . A real pity that the 1931 original has not survived intact",1 +7353,"Mild Spoilers<br /><br />In the near future, Arnold stars as Ben Richards, a wrongly convicted man coerced into playing 'The Running Man', a deadly TV game show where people have to keep moving to try and escape brutal deaths at the hands of the 'Stalkers'. Of course, people are expected to die eventually and its up to Arnold to prove the system wrong.<br /><br />I haven't read the Stephen King book, but this is a great film regardless, one of Arnold's best. He does what he does best in the action man role, delivering death with unforgettable one-liners. Classics are probably the 'He was a real pain in the neck' after strangling a guy with barb wire, and 'He had to split!', referring to whereabouts he just chain sawed someone vertically. Dawson is perfectly irritating as the TV presenter, and all the 'Stalkers' are suitably camp. The action is violent, but its an action film. That's the point. The film is fast paced, and at 90 minutes it doesn't overstay its welcome. <br /><br />With Starsky and Hutch's Paul Michael Glaser at the helm, and made in the wake of the success of The Terminator, previously this film was probably seen as just another mindless action vehicle for Arnold, and very far fetched. But today, anyone who watches a lot of TV could see how the film is getting closer to reality. I wouldn't be surprised if I turn on the TV in the 'near future' and see a show not to far from this.<br /><br />On that depressing note, I must however recommend 'The Running Man' to anyone who likes the 80s, Arnold, ridiculous acts or violence or just a good action film. 9. 5 / 10",1 +12898,"The ""Wrinkle in Time"" book series is my favorite series from childhood. I have read and re-read them more times than I can count over the last 35+ years. The characters, with all their virtues and flaws, are near and dear to my heart. This adaptation contained very little of the wonderful, magical, spiritual story that I love so much. To say I was disappointed with this film would be a great understatement.<br /><br />If you have never read the book(s) I imagine you will enjoy the movie. The acting is passable, the special effects are well done for a made for TV movie, and the story is interesting. However, if you love the books, avoid this movie at all costs.<br /><br />I found this statement at the Wikipedia page of the novel: ""In an interview with Newsweek, L'Engle said of the film, 'I expected it to be bad, and it is.'""<br /><br />I, like another reviewer here, feel the need to read the book again to dispel this movie from my mind.",0 +20768,"The Great Ecstasy of Robert Carmichael is bad film in every way. The script, the dreary pace, the lack of depth in any character, the pointless sub-plots, the dreadful acting, the needless climax all make this possibly the worst film I've ever seen. I found nothing likable, enjoyable or intellectually stimulating in any way.<br /><br />I imagine the film makers thought they were making something clever and dark, with its moody lighting, long protracted silences and vaguely haunting classical soundtrack. If so, they failed utterly. It just bored me, and I wish I had never watched it.<br /><br />Avoid at all costs.",0 +23142,"I question its importance to Queer Cinema as it seems to be more about having a homosexual encounter via violent behavior than making any clear statements regarding homosexuality and violence.<br /><br />Three tales are tangled together in a rather sloppy manner. I found myself trying to untangle the messy narrative in the first 15 minutes, that alone didn't sit well with me. Weak plot points were endlessly repeated as though we might not have gotten it the first 10 times.<br /><br />There was a feeling of padded dialog throughout the film. More like a 45 minute Boy's Brief short rather than a fleshed out full-length film. It had a certain erotic flair, male nudity and sex appeal but overall the sum did not equal its parts.<br /><br />The 1st part: Boxer/Stalker storyline was the strongest and yet it too felt like it had been pulled thin. Bob has been following Tim for four years and only now is he confronting him? I felt as though their cat-mouse game was not developed enough to merit its conclusion. We needed more information about them and less Parking Lot/Locker scenes with Tim relentlessly saying ""What do you want?"" <br /><br />The 2nd part: Danny wants his buddy, Tony, to beat him up while he jacks-off. Tony doesn't seem to mind, but he doesn't even appear interested in exploring the implications of his homo erotic hobby -- not even after they do it in the nude. This tale lacks the all-important transition from ""I'm a straight boy smacking my guy friend around for fun"" to ""I think I might be gay and hitting him because I'd like to spread his ass and do him S/M style."" A very important thing to leave out.<br /><br />Clearly these stories each could have conveyed their points in half the time. The 3rd part with the man and woman slapping each other around adds to that thought. Furthermore, it was unnecessary and added nothing to the film. Yes, the actors did a fine job under the circumstances and the four male leads were very sexy. The make-up (bruises and cuts) however was on par with a grammar school talent show.<br /><br />There wasn't enough meat to this story to have any impact on the gay politic. The film made no statement, squandered time, and is not engaging or worthy enough for thoughtful investment. Its fatal flaw is its amateurish approach, that makes it ultimately impossible to take seriously.",0 +19794,"Kol, space prisoner on space death row, manages to hijack a space shuttle and escape to the woods of America where he, along with some new found friend try to escape from the 'Alienator"" a female cyborg killing machine. Made one year after the best movie of Fred Olen Ray's career, ""Hollywood Chainsaw Hookers"", this one can't help but feel like a bit of a letdown. Just as low-budget as that earlier film, but not nearly as fun as I had with it. None of the actors really stood out at me. The film is alright for the undiscriminating viewer during a rainy Saturday afternoon, but that's pretty much all it's good for.<br /><br />My Grade: D+ <br /><br />Where i saw it: Showtime Thriller",0 +5940,"Youth, sexuality, and the French countryside -- one of the more unique films you're ever going to see. If you can see it that is, no mean feat considering how hard it is to find copies of it (a combination of scarcity and censorship.) It's sometimes erotic, sometimes disgusting, and occasionally funny. A trifle boring also in the middle, but all in all you can't call yourself an aficionado of bizarre film until you've seen this one at least once.",1 +23227,"Before seeing this movie, I was expecting a fictional drama based loosely on ideas from the book; instead, it's the book, interrupted with dramatic scenes illustrating the different ""illnesses."" That didn't bother me much, but it hindered my enjoyment of the film. One story or even two or three long stories with excerpts from the book interspersed through the movie would have been preferable, in my opinion. If you're going to base a movie on a psychology text, you've got to find a more interesting (and preferably accurate) text than this one. The film drags during parts where it's little more than a video encyclopedia of 19th century sexual psychology and would be utterly intolerable if it weren't sexual in nature (because ""sex = interesting"" for most of us, even me). Luckily, there are several stories with actual character development that pull us in.<br /><br />But, disappointingly, Krafft-Ebing's theories of sexuality went unchallenged, for the most part. I was hoping it would use stories to show how the imperfections of his archaic view of psychology which is still held by many to this day.<br /><br />So, in the end, what do you have? A detailed catalog of a few fetishes and orientations, with some mildly interesting stories showing the trials and tribulations of a few ""sexual deviants"" before they are cured. For most of the film, the film moves with the crawling speed (and mood) of a wake. And, as an obviously low budget film, the cinematography and acting are not exactly top tier. Although I *was* pleased with the music, costume and interior design.<br /><br />I felt this film's subject was right up my alley, and I still feel it's a below average film. It deserves a 3/10; a 4/10 if I were feeling extremely generous. I can't imagine anyone enjoying this if they didn't already have an interest in sexual fetishism.",0 +19526,"I saw this movie two weeks ago at the ""festival des nouvelles images du Japon"" in Paris. Though i wasn't expecting much from it, i have to say i've been disappointed just like many people in the audience... if i wanted to sum up how i felt, i'd say i've been comparing it to princess mononoke and nausicaa from the beginning to the end. Of course it's silly. But i couldn't help it. The stories are quite different, but the worlds pictured are very much alike. And from this point of view, ""a tree of palme"" definitely can't stand the comparison with Miyazaki's masterworks. Even if it's quite good technically, boredom remains... in the end its complete lack of originality makes me advise you not to care to watch it. I rated it 2 out of 10 (a bit harsh, i guess it deserves 3 or 4)",0 +5102,"If you enjoy romantic comedies then you will find this tale of two 30 year old singles who fall in love during the American League pennant race satisfying. On the other hand, if you are hanging around waiting for Kill Bill Volume 3 or Sin City 2 then you probably should stay away. The plot contains the obligatory guy meets girl's friends, girl meets guy's friends, and guy meets girl's parents scenes. There is even a guy meets girl's pet dog scene. That's all par for the course in a movie like this. However, what I liked about it was that the plot delved into the decision making process people make as they begin to realize that their romantic interest is not perfect and is in fact a bit quirky. The plot centers around answering the questions; how much quirkiness is too much and how much love does it take to trump those quirks? It is interesting to see the characters work that out because deep down (if we admit it) we all have quirks. Barrymore does a very good job in her role and Fallon sorta surprised me -- he's good as well. I rate it a 7 out of 10 as a romantic comedy. Add one point if you are a baseball fan or romantically involved with one. Add another point if you are a Red Sox fan and subtract two points if you are a Yankees fan.",1 +8665,"In what could have been seen as a coup towards the sexual ""revolution"" (purposefully I use quotations for that word), Jean Eustache wrote and directed The Mother and the Whore as a poetic, damning critique of those who can't seem to get enough love. If there is a message to this film- and I'd hope that the message would come only after the fact of what else this Ben-Hur length feature has to offer- it's that in order to love, honestly, there has to be some level of happiness, of real truth. Is it possible to have two lovers? Some can try, but what is the outcome if no one can really have what they really want, or feel they can even express to say what they want? <br /><br />What is the truth in the relationships that Alexandre (Jean-Pierre Leaud) has with the women around him? He's a twenty-something pseudo-intellectual, not with any seeming job and he lives off of a woman, Marie (Bernadette Lafont) slightly older than him and is usually, if not always, his lover, his last possible love-of-his-life left him, and then right away he picks up a woman he sees on the street, Veronika (Françoise Lebrun), who perhaps reminds him of her. Soon what unfolds is the most subtly torrid love triangle ever put on film, where the psychological strings are pulled with the cruelest words and the slightest of gestures. At first we think it might be all about what will happen to Alexandre, but we're mistaken. The women are so essential to this question of love and sex that they have to be around, talking on and on, for something to sink in.<br /><br />We're told that part of the sexual revolution, in theory if not entirely in practice (perhaps it was, I can't say having not been alive in the period to see it first-hand), was that freedom led to a lack of inhibitions. But Eustache's point, if not entirely message, is that it's practically impossible to have it both ways: you can't have people love you and expect to get the satisfaction of ultimate companionship that arrives with ""f***ing"", as the characters refer over and over again. <br /><br />The Mother and the Whore's strengths as far as having the theme is expressing this dread beneath the promiscuity, the lack of monogamy, while also stimulating the intellect in the talkiest talk you've ever seen in a movie. At the same time we see a character like Alexandre, who probably loves to hear himself talk whether it's about some movie he saw or something bad from his past, Eustache makes it so that the film itself isn't pretentious- though it could appear to be- but that it's about pretentiousness, what lies beneath those who are covering up for their internal flaws, what they need to use when they're ultimately alone in the morning. <br /><br />If you thought films like Before Sunrise/Sunset were talky relationship flicks, you haven't met this. But as Eustache revels in the dialogs these characters have, sometimes trivial, or 'deep', or sexual, or frank, or occasionally extremely (or in a subdued manner) emotional, it's never, ever uninteresting or boring. On the contrary, for those who can't get enough of a *good* talky film, it's exceptional. While his style doesn't call out to the audaciousness that came with his forerunners in the nouvelle vague a dozen years beforehand, Eustache's new-wave touch is with the characters, and then reverberating on them.<br /><br />This is realism with a spike of attitude, with things at time scathing and sarcastic, crude and without shame in expression. All three of the actors are so glued to their characters that we can't ever perceive them as 'faking' an emotion or going at all into melodrama. It's almost TOO good in naturalistic/realism terms, but for Eustache's material there is no other way around it. Luckily Leaud delivers the crowning chip of his career of the period, and both ladies, particularly Labrun as the ""whore"" Veronika (a claim she staggeringly refutes in the film's climax of sorts in one unbroken shot). And, as another touch, every so often, the director will dip into a quiet moment of thought, of a character sitting by themselves, listening to a record, and in contemplation or quiet agony. This is probably the biggest influence on Jim Jarmusch, who dedicated his film Broken Flowers to Eustache and has one scene in particular that is lifted completely (and lovingly) in approach from the late Parisian.<br /><br />Sad to say, before I saw Broken Flowers, I never heard of Eustache or this film, and procuring it has become quite a challenge (not available on US DVD, and on VHS so rare it took many months of tracking at various libraries). Not a minute of that time was wasted; the Mother and the Whore is truly beautiful work, one of the best of French relationship dramas, maybe even just one of the most staggeringly lucid I've seen from the country in general. It's complex, it's sweet, it's cold, it's absorbing, and it's very long, perhaps too long. It's also satisfying on the kind of level that I'd compare to Scenes from a Marriage; true revelations about the human condition continue to arise 35 years after each film's release.",1 +21439,"What can you say about a grainy, poorly filmed 16mm stag film, where the best and most attractive performer is a German Shepherd? Nothing that would be positive. Avoid this travesty at all costs. In any case, it would be difficult to find, since bestiality remains a taboo and illegal subject in the USA. I strongly suggest IMDb to re-visit their weighting formula for establishing ratings, since an 8.8 rating for this piece of fecal matter is absurd! I am, by no means, a prude and have spent many hours enjoying the classic porn movies of the 70's & 80's; but this is inferior product even by the looser standards of the (then illegal) stag loop.",0 +20268,"When I borrowed this movie from a friend (thankfully I did not buy it) on the package (which truly looked bad and ugly) was printed ""The ultimate vampire horror"". After watching it I thought that the marketing campaign was probably more expensive than the film itself. The ""story"" begins when a teenager (surprise!) is chased by some vampire/zombie-creatures.<br /><br />Lighting, sound and everything reminded me of my first attempt to make a holiday-video on a ten year old VHS-system if not worse. I gave the movie a 2 out of 10 and only because the promo-T-shirts looked kind of cool. I don't want to dis' film-students or splatter-movies generally but I've seen Braindead and I've seen a 20-dollar-budget movie from students that was ten times better than this crap.",0 +7763,"I just purchased and viewed the DVD of this film. The DVD transfer is from last year, 2001. This 1988 film is really a great little film. Overlooked by most people. I saw it in the theater in 1988 and have loved it ever since. I love the opening shot of Pittsburgh (not Baltimore, as another user commented). Makes Pittsburgh look like one of the most beautiful cities in the world! And I must say, the tour of Pitts on the garbage truck with Nicky is a very scenic, interesting one! Tom Hulce, as everyone else has said, gives a remarkable, wonderful performance. The DVD is a good transfer, with no extras, but a widescreen format. I recommend it to those who love the movie.",1 +6091,"In all my 60 years of age, I have learned that when we watch a movie there is an identification (whether we want it or not) implicit with an specific character.<br /><br />Sometimes because the character executes certain gesture, sometimes because the character speaks determinate word, or sentence that we use or that we would like to use in determinate situation.<br /><br />The movie in question, should be seen by this point of view. Who now find a parking space in a mall,downtown, or in the street - taken by a car whose driver can't remember to think that he is not the only driver in the world?<br /><br />Who hasn't the urge to ""rubber out"" the ill mannered spat?<br /><br />Haven said that I ask: - Did you identify with DELLA (played by Kim Bassinger)? If your answer is: YES!, then try not to find absurd details comparatively with life's reality in the movie, because you'll certainly find the movie ridiculous.<br /><br />Abstractions made, you will see that the movie has moments of surprise, such as: 1- In the sequence in which Della grabs the box of tools in the trunk (does that box contains a gun, and does she haves the guts to use it?); 2- In the sequence in which Terry dies whilst falling; 3- In the sequence in which Della gets attracted by Chuckie's ""mermaid's call"".<br /><br />If you have already seen the movie, or if are planning seeing, keep in mind that there are ""realistic"" movies, ""fiction"" movies, ""political"" movies, and movies in which you can ""wash your soul"" To exemplify the last one, we can quote: ""Tropa de Elite"".<br /><br />According to newspaper's , there was unanimous applause when BOPE officials take certain attitudes. (As I have seen the movie in DVD, I could not ascertain the audience's reaction) <br /><br />As for the direction part (Susan Monford), interpretations (Kim Bassinger, Lukas Haas, Craig Scheffer, etc. Edition (William M. Anderson 'Dead Poets Society', 'Green Card' exceptional edition, 'Robocop 2', etc. It is well situated in context. In a scale of 1(Awful) to 10(Master Piece), I rate ""When She Was Out"" a 7(Regular).",1 +4404,"This was one of those wonderful rare moments in T.V. that I wished I'd captured forever on VHS. Won't it ever air again? <br /><br />It was so creative and I remember it was aired once a week and the wait for the next episode was excruciating. I want to see it all again. I want to buy it. I want what I can't have. Not even on EBAY. <br /><br />So, having ranted enough it was, by far, one of the best series the 80's put out. It should be considered a classic but is lost in space. At least this website and Wikipedia mention it. Sob.<br /><br />It was utterly appealing, funny, flirtatious, and original. Maybe not like Sherlock Holmes original, I actually think Quintin is far more attractive and has a better chance with his leading lady than the stiff and chalky Holmes ever could.",1 +8241,"Aileen Gonsalves, my girlfriend, is in this film playing a secretary at the main character's bank. She has a lovely scene with Roshan Seth in a restaurant. There's more information on her website at >Having stated my personal interest in the film, I have to say that I think it is a beautiful movie - moving, funny and beautifully filmed.",1 +7882,"I enjoyed this film far more than anything had led me to anticipate; from reading other comments here, I suspect it benefits enormously from being seen on a full-size screen in the cinema, in the company of a cheerful and enthusiastic audience. I was lucky enough to have that experience, borne up on ripples of laughter from all around, and had an immensely good time with this undemanding comedy.<br /><br />For it is as a comedy that it shines, if it shines anywhere at all. The music is nothing special -- in fact, I hadn't realised it *was* a musical, and was very surprised when the assembled ancestors burst into half-spoken lyric -- but I do have to admit that the half-threat, half-promise of 'Oh, what I'll do...' has proved far more catchy than it ever seemed at the time, as it's still going round and round in my head!<br /><br />The plot, such as it is, largely pivots around the past history of the eponymous Francesca, a sixteenth-century portrait sporting a distinctly anachronistic hairstyle and fur-coat. Her idea on the sanctity of marriage don't quite jibe with those of her distant descendant, the Countess Angelina, and one can almost hear the storyline creaking at the seams under the strain of the Production Code in order to ensure that the heroine arrives unsullied in her much-delayed marriage-bed with the right man...<br /><br />The romance is scarcely earth-shattering, and in fact the first few scenes, played pretty well straight, verge on the tedious. But where script and film really come to life is in the battle of the sexes that follows. The impudence of Douglas Fairbanks Jr's courtship of Betty Grable's married Angelina is equalled only by Betty-Grable-as-Francesca's pursuit of him in turn, culminating in complete role-reversal in the hilarious fantasy sequence where she -- literally -- sweeps him off his feet. This is probably the comic climax of the plot, although the consequences of the Colonel's understandable confusion are worked out with a deft touch in the remaining two 'acts' of the operetta-structure, and the spectacle of Fairbanks' blissful, bemused awakening is more or less worth the price of admission on its own.<br /><br />Grable is entirely convincing in establishing her two contrasting characters, wisely gets almost all the (limited) singing opportunities, and shares the honours where the swathes of quotable dialogue in the various verbal duels are concerned. But in the field of unspoken reaction she is really outclassed by her male supporting leads; Fairbanks in particular is an absolute treat in a number of wordless sequences whose set-up and humour is worthy of the silent screen.<br /><br />This film is too uneven in style to be a classic, varying from sparkling repartee to hackneyed tedium. But at its best it is quite honestly very funny indeed, and brought a round of spontaneous applause and laughter across the auditorium at the end as the lights went up. Out of tune with its times, it may have failed to draw contemporary audiences -- but, on this showing, really didn't deserve to be disowned by both Grable and Preminger, the (uncredited) director. This is no masterpiece, but a thoroughly entertaining minor work, and I for one found myself grinning in remembrance all the way home.",1 +15793,"Once again a film classic has been pointlessly remade with predictably disastrous results. The title is false as is everything about this film. The period is not persuasively rendered, and the leads seem way too young and too vapid to even be criminals. Arthur Penn's film had style, humor, a point of view, and was made by talented people. Even if the 1967 version didn't exist this would still be an unnecessary film. The 1967 version strayed from the facts, presented a glamorized version of Bonnie and Clyde, but it was exciting, and innovative for 1967, and it had some outstanding performances that allowed you to care. This 1992 remake seems culled from the original film rather than the truth as known and the actors in this version are callow, unappealing, and not the least bit interesting. By all means skip this one and hope the 2010 version will be better. Could it possibly be worse?",0 +1911,"I wasn't expecting much, and, to be honest, I didn't like this film the first time around but watching it again and I realised that it's kinda cool. Sure, it's a one joke film but it's a funny gag. <br /><br />Someone posted that it could be better written and it could be. I think this film had the potential to be a over-the-top My Cousin Vinny. But with a horror host instead of a lawyer. Sadly it's a wasted opportunity. With just a bit more writing it could be a classic. The kids are underused there's no reason why they should latch on to Elvira. Apart from the obvious reasons. It would have been great to see their relationship flourish. I know it's a comedy but it's little differences that separate the good films from the brilliant.<br /><br />Elvira herself is always fun and engaging. Not to mention flirty. Every time she smiles you will too. It's hard to knock a film when the main character is so charming. And it really is her charm, don't let her looks fool you into thinking that she's some sort of tart. Well she is. But she's a nice one. The sort of person you'd let look after your kids. Wouldn't let her cook for them, though...<br /><br />I'd recommend giving it a go. <br /><br />Just don't expect too much.<br /><br />She's more than just a great set of boobs. She's also an incredible pair of legs.",1 +23987,"After buying the DVD in a Bargain Bin due to the impressive amount of features listed on the cover, I popped it in the DVD player and everything looked good. Nice animated menus and a whole lot of extra features...but when I played the movie itself, what a let down. It is the worst thing I have ever seen and I have seen some bad movies in my time. The comment that praises the movie here at IMDB is actually from the people who made the film. So Don't Believe It unless you like to waste your cash!",0 +14615,"The End of Violence and certainly the Million Dollar hotel hinted at the idea the Wenders has lost his vision, his ability to tell compelling stories through a map of the moving picture. The Land of Plenty seals the coffin, I'm afraid, by being a vastly unimaginative, obviously sentimental and cliché'd film. The characters are entirely flat and stereotyped, the writing, plot and direction are amateurish, at best. For the first time in quite a while, I was impatient for the film to end so I could get on with my life. The war-torn delirium of the uncle, the patriotic abstract gazing at the sky at the conclusion...it all just struck me as being so simple and pathetic, hardly the work of a filmmaker who once made some compelling magic on screen. What happened? The days of experimentation, perceptive writing and interesting filming possibilities are long behind him, I'm afraid. Let's hope he finds his inspiration again... At the Toronto film festival, which is where I saw the film, Wenders was there to introduce it. Completely lacking in humility, he offered us the following: ""I hope...no, wait...I KNOW you're going to enjoy the next two hours."" I'm afraid he couldn't be more wrong...",0 +15783,"A terrible amateur movie director (no, not Todd Sheets), his new friend and sister explore a cave. The friend and sister fall in and get rescued. Meanwhile a gang of horribly acted girls are defending their 'turf'. Whatever the heck that means. This film and I use the term VERY loosely is so bad that it's.. well bad. The humor is painfully unfunny, the ""action"" merely sad. Now I've seen some atrociously awful 'horror' films in my time & failed to grow jaded in my approach to watching low-budget films, yet I still weep openly for anyone who choose to sit through this. ONLY for the most hardened maschocists amongst you. but the rest run away FAST!!<br /><br />My Grade: F",0 +17812,"This movie is now my gauge against which all other movies will be compared...as in, ""was it as stupid as Revolver?"" I too was in the Toronto International Film Festival audience last night where a room filled with over 2000 people walked out in an eerie silence after being absolutely dumbstruck by 2 hours of sheer nonsense. Jason Stratham would have been amazing if only he had a purpose. Within the first 10 minutes he's given a proposition by Andre 3000 and Big Pussy (of Soprano's fame) which makes NO SENSE AT ALL! Then there's some shooting and then there's Ray Liotta wearing embarrassing bikini briefs, then there's some animation, Ray Liotta's naked butt, lots of shooting, teeth gnashing, art house wanna be pretensions and more of Liotta's embarrassing body that elicited laughs at every showing...which I'm not quite sure was the reaction he was looking for...not 5 times anyway. Everyone in this movie thinks they're smarter than the average bear and Guy Ritchie thinks he's Yogi Bear incarnate. The story lines might have went nowhere but the posturing was outta sight! The only way this movie could have been worse is if Madonna herself was in it.",0 +15923,"I usually like comedy movies. I really enjoy them. But I don't really get the point of ""Envy"". I mean, it has a dull content/topic, and it's not really funny.<br /><br />Although the acting is generally good, it's not enough for the movie to get at least a bit interesting. Stiller and Black don't show all their talent in this movie.<br /><br />So, if you're about to rent a comedy, I suggest you definitely don't go for this one. Unless you want to get bored, and I can see I'm not the only one with this opinion, because even Jack Black apologized for it (take a look at Trivia).",0 +13340,"I just saw this film on DVD last night, and decided to check out the reviews this morning. It seems that ""I, Robot"" has polarized the critical viewing community here on IMDb (and given rise to a lot of insults and name-calling, too).<br /><br />I find this somewhat surprising, as this film is not great (or even good), but neither is it terrible (or even really bad). What this film really is, is...depressing. Depressing that the US film-goer population is so ready to lap up insipid, clichéd re-heats, and acclaim them as spectacular new works. This film as ""retread"" written all over it, from the plot line (an uneasy mix of Asimov and modern-day uber-action) to Smith's character (a smart-mouthed cynic with a backbone of titanium), to the special effects (that borrowed from Matrix and a few others).<br /><br />""I, Robot"" is, sadly, quite possibly the perfect action movie for today's audience: superficial plot, insipidly snappy dialog, and lots and lots of adrenaline. Smith is mediocre, but we already knew that (he seems to be Hollywood's latest unsuccessful attempt to create a black Bruce Willis). The story has lots of holes in it, of all sizes, but I don't think most people drawn to this film are critically-minded enough to notice. Perhaps a blockbuster by today's standards, but very B-movie compared to true winners.",0 +2359,"Bette Davis' electrifying performance is such that it is hard to remember the other female players. They were as perfect in their parts as Davis was in hers - they just didn't have as much to do. Some of the reviewers felt that the book was so much better - it was but to give the film it's due, to condense a 600 page book down to 83 minutes is no mean feat. The first part of the book didn't even make it to the screen - it told of Phillip's childhood, then moved to Germany and Paris, where Phillip had gone to try to make good as an artist. It also chronicles his first romance - with Fanny Price, who kills herself when she realises Phillip cannot return her feelings of love. It is a wonderful book but rambling and I think that anyone who does not think too highly of the film should read the book and will realise how good the film is.<br /><br />After realising that he will only ever be a mediocre painter, Phillip Carey (Leslie Howard) comes back to England hoping to take up medicine. When out at a tearoom he meets a sullen waitress, Mildred (Bette Davis). Even though she has no interest in him and basically treats him like dirt, Phillip is obsessed. It is so hard to watch his efforts at trying to find any civility in this vicious shrew. In one scene she promises to meet him in a second class railway waiting room, when they almost miss each other, she berates him with ""why would I wait in a second class waiting room when there is a first class one available"". You just want to shake him. The only time she is pleasant to him is when she tells him she is going to marry another man, a coarse sales- man, Emile Miller (Alan Hale). With Mildred out of the picture, he meets Nora (Kay Johnson) a lovely woman, who writes romantic novels under a male pseudonym. She jokes about the popularity the books enjoy among servants (in the novel he had seen Mildred reading them.) Nora gives Phillip all the love and confidence he needs but he is incapable of returning her love. When Mildred returns (Miller didn't marry her and she is having a baby), of course he takes care of her and helps her with the baby (in the film it is treated as an object - always called ""baby"", never given a name or gender) - she repays him by running off with his best friend.<br /><br />At the hospital he meets Sally Athelny (Frances Dee) who is visiting her sick father. He begins to visit her home and for the first time in his life gets a sense of family. Then surprise! surprise! Mildred returns like a bad penny and surprise! Philip takes her in. But he has changed and feels only disgust when she tries to show gratitude the only way she knows how. Then follows one of the most vicious, verbal fights on film with phrases such as ""you cad, you dirty swine"", ""I only kissed you because you begged me"" and ""when you went I wiped my mouth, I WIPED MY MOUTH""!!! In the book a lot of Mildred's stock phrases such as ""you're a gentleman in every sense of the word"", ""I don't mind"", and ""Mr. High and Mighty"" were associated with prostitutes and when Phillip meets her for the first time he is struck by that.<br /><br />The end of the film shows Phillip (being truly free of Mildred in the only way possible) now free to love Sally. Again in the book Sally tells Phillip that she thinks she is having a baby but that just makes him more sure of his love. That ending, like Mildred's ""sickness"" could not be in the film - even a pre-code one.<br /><br />Kay Johnson was always called on to play sensible, believable women - which she played to perfection as she was obviously sensible herself. Her Nora was the woman Philip should have stayed with. Frances Dee was one of the most beautiful of screen ingenues. She was obviously being groomed for stardom with some roles that proved she was not just a pretty face (""The Silver Cord"" and ""Blood Money"") but when she married Joel McCrea her career started to peter out. Her Sally did not push her talent to the limits. Apparently Leslie Howard was not very helpful to Bette Davis on the set - he was annoyed that an English actress was not given the part. He used to throw her her lines ""whilst reading a book off camera"". He did start to take an interest when a newspaper reported ""the kid was running away with the picture""!!!<br /><br />Highly, Highly Recommended.",1 +20701,Kurt Thomas in one of the series of gymnast olympic stars turned movie stars movies that mercifully only includes one other..Mitch Gaylord in American Anthem...at least that one had Janet Jones..this one has...um... a gymnast using his martial arts and his gymnastic skills to save a european country from dictatorship..sure it could happen.. on a scale of one to ten.. a 0,0 +3502,"Let's begin with that theme song sung by Christopher Cross. The song is ""If you get caught between the moon and New York City."" It's a great theme and song even after all these years, it never gets tiring. It really is a great song about New York City as well. Anyway, the great Dudley Moore CBE stars as a spoiled drunken millionaire who is engaged to Jill Eikenberry's character in the film. Jill would later star on LA Law. Anyway, he is served by his wonderful British butler, Sir John Gielgud OM who won an Academy Award for his performance in the film as Best Supporting Actor. Arthur falls in love with Liza Minnelli's character who is perfect in this film besides her performance in her Oscar winning role in Cabaret. No, Liza doesn't get to sing. She plays a diner waitress. Anyway I love Geraldine Fitzgerald as the Bach matriarch of the family who decides the family's fortune. Anyway, she is fabulous and should have gotten an academy award nomination herself for Best Supporting Actress. Barney Martin best known as Jerry's dad on Seinfeld plays Liza's dad. He's great too. The movie was well-written, acted, and delivered to the audience who wanted more of it.",1 +24003,"Alright normally i am not as harsh on sequels especially if the first film is done well and was ultimately a good movie. As for 1999 i feel that one of the top five films was Cruel Intentions. It had everything a great movie should have except for an original story, being adapted from a novel it was still damn good. On to Cruel Intentions 2 which was supposed to actually just be the opener for a series based on the film called manchester prep. Which must not have happened. Actually after seeing this trifle of a film i can understand. Before the thing started i was like at least the writer and director Roger Kumble did this one also. Well 1 minute into this movie i was disappointed. It starts off with a rehash of the opening of the original with a different twist sebastian instead of putting the shrinks daughter's naked picture on the net he puts the schools principals wife in the school directory naked. This would have been alright if the lady was not like 50. And basically the rest of the movie is a wannabe carbon copy of the original. Which i understand the if there is nothing wrong with it leave it the way it was. But you can not do that with a movie. This actually being a prequel i gave it a chance just to see how they turned out like they did in part 1. But with Sebastian being more or less just a prankster and Kathryn being a herself and turning sebastian into the sexual predator he was in the real story, this movie had no foundation to it. Whoever did the casting on this thing was way off. They could have at least tried to get people who looked like the original cast but no, they just hired a bunch of not even really good looking actors. I am using this term although i dont know why. They for sure didnt do any in this movie.<br /><br />All this movie is a bunch of one liners that dont even match the wit that the original had, well some of them did but that was just because they were from part 1. Another bad point was in part one you could understand the need for them to act out for attention because there was no involvement from teir parents this one had them in it and they were poorly used, as if to show why the kids are like this. It didnt work though. The best thing though about the original was that the cast had chemistry they took you into this world. The on screen tension that was there made the film what it was. This thing Really ruins the experience of the first one stay way from this.",0 +16227,"I bought this video at Walmart's $1 bin. I think I over-paid!!! In the 1940s, Bela Lugosi made a long string of 3rd-rate movies for small studios (in this case, Monogram--the ones who made most of the Bowry Boys films). While the wretchedness of most of these films does not approach the level of awfulness his last films achieved (Ed Wood ""classics"" such as Bride of the Monster and Plan 9 From Outer Space), they are nonetheless poor films and should be avoided by all but the most die-hard fans.<br /><br />I am an old movie junkie, so I gave this a try. Besides, a few of these lesser films were actually pretty good--just not this one.<br /><br />Lugosi is, what else, a mad scientist who wants to keep his rather bizarre and violent wife alive through a serum he concocts from young brides. They never really explained WHY it had to be brides or why it must be women or even what disease his wife had--so you can see that the plot was never really hashed out at all.<br /><br />Anyways, a really annoying female reporter (a Lois Lane type without Jimmy Olsen or Superman) wants to get to the bottom of all these apparent murders in which the bodies were STOLEN! So, she follows some clues all the way to the doorstep of Lugosi. Lugosi's home is complete with his crazed wife, a female assistant and two strange people who are apparently the assistant's sons (an ugly hunchbacked sex fiend and a dwarf). Naturally this plucky reporter faints repeatedly throughout the film--apparently narcolepsy and good investigative journalism go hand in hand! Eventually, the maniacs ALL die--mostly due to their own hands and all is well. At the conclusion, the reporter and a doctor she just met decide to marry. And, naturally, the reporter's dumb cameraman faints when this occurs. If you haven't noticed, there's a lot of fainting in this film. Or, maybe because it was such a slow and ponderous film they just fell asleep!",0 +15238,"Exceedingly complicated and drab. I'm a bright guy, but this was just too much for a tired brain. It would really benefit from a few early clues as to who these people are and what they are doing. Probably better for the US market. GC himself hinted that this alone did not supply his Oscar and you can see why.<br /><br />Still the sand dunes are pretty. The nail pulling is nasty. The attorneys drunk dad is a mystery. The cricket is good to see.<br /><br />Very difficult to write the required ten lines on this, despite it being over 2 hours long. Thank heavens they shortened it. Admittedly we don't get to the pictures much, but the last film we saw, Walk the Line, was 10 times better and I don't really like Johnny Cash. My wife says George still looks good with the beard and a few extra pounds so there's that.....am I nearly there yet ?<br /><br />How about now",0 +14192,"""Igor and the Lunatics"" is a totally inept and amateurish attempt at a crazy-hippie-cult-killing-spree horror movie. Apparently even nearly twenty years later, Charles Manson was still inspiring overenthusiastic but incompetent trash-filmmakers. This is a typical Troma production, meaning in other words, there's a lot of boring and totally irrelevant padding footage to accompany the nonsensical plot. There's a bit of random gore and gratuitous nudity on display which isn't bad but it's all so very pointless and ugly that it becomes frustrating to look at. ""Igor and the Lunatics"" is so desperate that it's even using a lot of the footage twice, like the circle saw killing for example. The incoherent plot tries to tell the story of a hippie cult run by the drug-addicted and Charlie Manson wannabe Paul. One of Paul's lower ranked disciples, named Igor, becomes a little bit too obsessed with the Bible stories and drug orgies and gradually causes the entire cult to descent further into criminal insanity. Just to illustrate through a little example exactly how crazy Igor is: he tears the heart straight out of the chest of a really sexy black hitch-hiker girl! There's an annoying synthesizer soundtrack and some truly embarrassingly lame pseudo-artistic camera tricks, like slow-motion footage and lurid dream sequences. Maybe there's one sequence that more or less qualifies as worthwhile for trash fanatics and that' is when a poor girl is cut in half with a machete. For no particular reason, the camera holds the shot of the blade in the bloodied stomach for fifteen whole seconds.",0 +10657,"Fairly good romantic comedy in which I don't think I've ever seen Meg looking any cuter. All the players did a good job at keeping this a lively romp. Of course, in the real world no genius mathematician would even glance at some grease monkey, but that is why I love romantic comedies....one can just totally forget reality and have a good time. Nice film. Damn, Meg is a babe, eh?",1 +15841,"If you haven't seen this yet, I say just move on, take a walk in the park, don't waste your time. Neither the scenario nor the acting is worth your money. *Spoilers*- I can't decide which was worse: The movie itself or Baldwin's hairstyle? Ellen Pompeo's acting talent is very questionable I hope she can improve it over time. The storyline is just unbelievable. Loose cannon American cop fighting criminals in Europe on his own?? Infamous Slavic mafiosi protected by only two hunks??? An emotional art teacher leading a ruthless gang??? Spanish police executive dumber than a sack of hammers??? Give me a break. There's only one good thing about this movie, though: At least, the production costs must be lower than ""Ocean's 12""'s which was as meaningless and over the top as this one.",0 +18002,"irritating, illogical flow of events. pretty much every joke is so simple that it can hardly be regarded as one. no wonder the cinema was empty and people actually walked away, yes away. I stayed, since I was enjoying a wonderful ice-cream with nuts during the whole movie.",0 +2497,"Until the 1990s there had never been a film based upon Jane Austen's ""Emma"". Then two came along in the same year, 1996. Or, if you count 1995's ""Clueless"", which updates Austen's plot to a modern American high school, three in two years. <br /><br />The main character is Emma Woodhouse, a young lady from a well-to-do family in Regency England. She is, financially, considerably better off than most Austen heroines such as Elizabeth Bennett or Fanny Price, and has no need to find herself a wealthy husband. Instead, her main preoccupation seems to be finding husbands for her friends. She persuades her friend Harriet to turn down a proposal of marriage from a young farmer, Robert Martin, believing that Harriet should be setting her sights on the ambitious clergyman Mr Elton. This scheme goes disastrously wrong, however, as Elton has no interest in Harriet, but has fallen in love with Emma herself. The speed with which Emma rejects his proposal makes one wonder just why she was so keen to match her friend with a man she regards (with good reason) as an unsuitable marriage partner for herself. This being a Jane Austen plot, Emma turns out to be less of a committed spinster than she seems, and she too finds herself falling in love, leading to further complications. <br /><br />Today in 2008 Kate Beckinsale is a Hollywood star, but in 1996, despite being only a year younger, was not nearly as well-known internationally as Gwyneth Paltrow. She is, however, just as convincing as Austen's well-intentioned but often wrong-headed heroine. Beckinsale seems to have a gift for classical roles- she made a delightful Hero in Kenneth Branagh's version of ""Much Ado about Nothing""- and I sometimes find myself wishing that Hollywood could have found more suitable roles for her rather than wasting her in turkeys like ""Pearl Harbor"" or ""Underworld"". <br /><br />I preferred Jeremy Northam to Mark Strong as Emma's love interest Mr Knightley, largely because he came closer to my own conception of the character as a gentlemanly, chivalrous older man, in some ways more of a father-figure to Emma than a lover. (His surname is probably meant to indicate his gentlemanly nature- nineteenth-century gentlemen liked to think of themselves as the modern equivalent of mediaeval knights with their elaborate codes of chivalry). Strong tends to downplay the question of the age difference (he is 37, she 21) and makes Knightley more of a passionate lover and less of a wise mentor than does Northam. Samantha Morton (another actress who would go on to bigger things) is perhaps closer to the Harriet of the novel than was Toni Collette.<br /><br />This was the more small-scale of the two versions, being made for television rather than the cinema, and the sets and costumes seem less lavish and there are fewer big names among the cast. Costume drama, however, is generally something that British television does well, and this version can certainly hold its own with the cinema version; both are entertaining and well-made versions of Austen's novel. 7/10",1 +14045,"When I first started watching this movie I was looking for some kind of subtle metaphors but it soon dawned on me that this movie was indeed about people on a train. The interactions between people are like those you can see any day on the street and when in occasion there is a slightly more interesting situation the dialogue becomes stilted and boring. Its not that I don't get how this film is trying to portray the way people interact, it's just that in this film they are very boring. If you want to see and analyse these kinds of relationships you'd be best to actually go out and buy a train ticket and look at the people on the train with you. It is realistic but you wouldn't go to a movie to watch a film about you sitting there watching the movie.",0 +10845,"This film reinvents the term ""Spring Breakumentary."" Hans, the fat one of the group, displays his talents as this generations Chris Farley. Johnny Kansas, ""the King of the $1 bet,"" shows he's not in Kansas anymore by consistently upping the stakes. Kyle's laugh is truly infecting, and offers a little eye-candy for the ladies as well (as does Matt). The dwarfs, while having their moments, did not do justice to the Mexican hat dance like it deserves. And last, we have our protagonist, Ed. He gives hope to all of us bumbling, stumbling, gangly, pale folk who are still searching for that special someone. And that hope, is a little place called Cabo San Lucas. While this blockbuster just missed the theaters, this is a must rent, as we can all relate to one of these Spring Breakumentarions.",1 +14756,"'Baptists at Our Barbecue' is the best film ever made. Now, that I got your attention with that horribly inaccurate statement that should be a hanging offense if spoken, let me begin my short overview of this tacky, offensive, pretentious and boring hunk of junk I guess you could consider a movie. First of all, the low budget of this stinker is totally obvious based on the very poor and inexperienced direction of Christian Vuissa, and the tacky, overly preachy, whiny and stilted screenplay by F. Mathew Smith. I really despise the fact that it sends a very pro-Mormon, and sort of anti-every other religion message. Yes, the story is about a small town half full with Mormons and half full with Baptists. It shows all the main and role-model characters being Mormon, and being so nice and perfect, yet they are being picked on by the evil, conniving and very judgmental Baptists. It shows how beautiful Mormons are and how cold-hearted and ignorant Baptists are, instead of showing a little solidarity like would be appropriate and realistic. I'm a part of neither religion (I'm actually an atheist), but this offended me, along with another countless amount of Baptists most likely. It shows the Baptists as being very unopened and unwelcoming to the Mormons, and the Mormons being very accepting, when again, in reality there is a mutual like/dislike between them. Sorry, I didn't mean to go off on a rant.<br /><br />Another aspect of 'Baptists at Our Barbecue' I didn't much care for, was the acting. The performances are very amateurish and unnatural, especially from the female lead Heather Beers. Miss Beers stumbles her way through her part without any passion or feeling for her role, and I wasn't too much impressed with Dan Merkley, who's the main character in this lackluster of a motion picture, but I have to say he's way more talented or shows more talent in this film then Heather Beers. Whoever played the town sheriff was awful also. Although there is maybe a tiny laugh deep within the film, it is full of clichés. For example, the main character, Tartan (Merkley), finds solace with a Native American who always gives him the best advice on things relating to a tribal way of life - how cliché is that? To make the situation even more of a pathetic cliché, Tartan buys the poor, lonely heathen a puppy dog. Ugghhh! <br /><br />If you want my advice, stay as far away from 'Baptists at Our Barbecue' as you can. I saw it on the shelf and thought it would be a cute and interesting little indie about religion. All I got was a, well, piece of crap. Grade: D-<br /><br />my ratings guide - A+ (absolutley flawless); A (a masterpiece, near-perfect); A- (excellent); B+ (great); B (very good); B- (good); C+ (a mixed bag); C (average); C- (disappointing); D+ (bad); D (very bad); D- (absolutley horrendous); F (not one redeeming quality in this hunk of Hollywood feces).",0 +7672,"I could never remember the name of this show. I use to watch it when I was 8. I remember staying up late when I wasn't suppose to just so I could watch this show. It was the best show to me. From what I remember of it, it is still great. This showed starred Lucas Black making him the first boy I ever had a crush on. I am from the country, therefore boys with an accent have no appeal to me, but for him I would definitely make an exception. Which after seeing Crazy in Alabama, Friday Night Lights, and Tokyo Drift you should see why. He is a great actor and has been since he was a kid. I miss this show and wish it would come back out. If anyone ever sees where they are selling the season please email me. kywildflower16@hotmail.com",1 +16242,What can I say about Seven Pounds...well I watched on a flight from Seattle to Tokyo and as that flight was long and boring the movie definitely didn't help. Will Smith's character Ben Thomas is almost completely unlikable even with his redemption in the end. The movie's two hour plus run time wastes most of the screen time with random garbage that just strings the plot along as slow as possible. In the movies defense Rosario Dawson's character adds a little life to the film although not much. I don't understand how anyone could actually cry during this film when all I wanted to do was turn it off. Also Will Smith kills himself with a jellyfish at the ended proving that killing yourself with a jellyfish is the stupidest way to die.,0 +2476,"To me there is something so appealing and nostalgic about low-budget sci-fi. As a kid in the 50s thats all there was. In 1957 I saw ""The First Man Into Space"" in a movie theater with my Dad. It had Marshall Thompson starring and some other poor slob who got the title role. It is also about a space mission gone bad where the astronaut turns into a grizzly killer. Scared the Good & Plenty right out of me. The memory of those heebie-jeebies still lives within me. The Incredible Melting Man is almost a re-make only in full glorious color...that is wherever the scenes were well-lit. Just gotta love it for what it is......a little over an hour of darkly lit scenes, disgusting noises, and that eerie music. Bravo !",1 +7930,"Alright, I have to admit that I have never seen ""Rhoda"" and only one or two episodes of ""The Mary Tyler Moore Show."" Even though I don't know anything about this duo of comedic talent, I still liked this movie a lot.<br /><br />Mary goes back to work. Rose tries her luck at being a comedian. Rhoda struggles with a photography career. And Meredith...what exactly does she do again? These three stories that we follow over two hours are amusing and entertaining in their own way. When the two long time friends reunite, it only makes the film better. <br /><br />I was surprised about how good the writing was. The little jokes thrown in by Mary and Rhoda were funny. The script itself was very well put together.<br /><br />I had seen Moore and Harper in other movies over the past few years and thought that they were very good. But I had no idea that they worked this well as a team. While both actresses do their share to fulfill the title of this movie, they never seem to let me down. (During the run of this movie.) Joie Lenz and Marisa Ryan play their roles okay but nothing great. The rest of the cast like Jonah, Cecile and....everybody else also works well together.<br /><br />Being that this is a reunion, you would expect for a fan of either show to enjoy this. From a non-fan I still enjoyed this little get-together. Good story lines for each character and the two main characters is what makes this film very good. (The newer version of the MTM theme song doesn't hurt either.)",1 +2254,"I like the movie. Twisted Desire had Jeremy Jordan,one of my favorite and one of the cutest actors ever. Melissa Joan Hart is a good actress. I've seen most of her movies but all of Jeremy Jordan's. The thing i dislike about Twisted Desire is when ""Nick"" gets arrested and ""Jennifer"" rats him out. Twisted Desire is my second favorite movie. My first is The Goonies. But i still love Jeremy Jordan.",1 +5749,"Undoubtedly one of the great John Ford's masterpieces, Young Mr. Lincoln went practically unnoticed at the time of its initial release, no wonder because the year was 1939 when many of the greatest movies of the whole cinema history had been released, including the most mythical Western in the history of the genre, John Ford's milestone Stagecoach and many others, such as Gone with the Wind, The Wizard of Oz, Mr. Smith Goes to Washington which took the Oscar in the only category Young Mr. Lincoln was nominated for, which is Original Screenplay. <br /><br /> It continued to be the most underrated Ford's film for many years ahead destined to gradually fade away in the shadow of other John Ford's masterpieces, but by the end of the 1950s American and European film critics and historians took a hold of a note written by legendary Russian director Sergei Eisenstein about the Young Mr. Lincoln where he praised it and acknowledged that if he would only have had an opportunity to direct any American film ever made till then, it would be definitely John Ford's Young Mr. Lincoln. Impressed by such an undoubted preference from Eisenstein, critics began to see the film again but only with a bit different eyes and film's reputation has been increasing ever since. <br /><br /> It was far not for the first time the life of one of the most legendary American presidents was brought to the screen. Right in the beginning of the 1930s Griffith did it in his Abraham Lincoln and the same year as Ford's film, MGM released John Cromwell's one called Abe Lincoln in Illinois. Curiously enough both of them were based on a very successful Broadway Stage Play released in 1938 and written by Robert Sherwood. <br /><br /> As far as John Ford's films are concerned, we can easily find many references to the life and deeds and even death of mythical Lincoln's figure in several of director's works, such as 1924 The Iron Horse or 1936 The Prisoner of the Shark Island, the second one, just as Young Mr. Lincoln, utilizes as the main musical theme the favourite Lincoln's song - Dixie.<br /><br /> The screenplay based on a previously mentioned Stage Play and Lincoln's biographies was written by Lamar Trotti in collaboration with John Ford himself, which was quite a rare thing for Ford to do but final result was simply superb - a script combining elements of the Play with several historical facts as well as myths and legends about the beginning of Abraham Lincoln's life and law practice culminating in a hilarious but mostly heartbreaking trial scene, which is the film's highest point and main laugh and tears generator, where Lincoln defends the two young brothers accused of a murder and have to devise a manner to help their mother too when she is brought before the court as a witness and where the prosecuting attorney (played by Donald Meek) demands her to indicate which one of her sons actually committed the murder obviously obliging her to the making of an impossible choice of condemning to death one and letting live the other.<br /><br /> Overall it's a very touching, heart-warming and even funny film with simply magnificent performance from Henry Fonda in his supreme characterization of Abraham Lincoln and with overwhelming richness of other characters no matter how little or how big they are incarnated from the wonderful and intelligent screenplay and conducted by the ability of John Ford's genius at one of its best deliveries ever. A definite must see for everyone. 10/10",1 +996,"This movie isn't as bad as I heard. It was enjoyable, funny and I love that is revolves around the holiday season. It totally has me in the mood to Christmas shop and listen to holiday music. When this movie comes out on DVD it will take the place of Christmas Vacation in my collection. It will be a movie to watch every year after Thanksgiving to get me in the mood for the best time of the year. I heard that Ben's character was a bit crazy but I think it just adds to the movie and why be so serious all the time. Take it for what is it, a Christmas comedy with a love twist. I enjoyed it. No, it isn't Titanic and it won't make your heart pound with anticipation but it will bring on a laugh or two. So go laugh and have a good time:)",1 +12325,"There are very few movies that are so funny as this one. I was lucky enough to watch this movie at a theater ""reserved"" for movie buffs like me, so it was not so embarrassing sitting there laughing till my jaw was completely sore and my shirt sleeves were all wet from drying my eyes...<br /><br />At times the story was a bit ""slow"", but that is perhaps for the best - a bit of rest in-between the rolling amongst the aisles (I nearly fell out of the seat...) was most welcome.",1 +15220,"Sondra Locke stinks in this film, but then she was an awful 'actress' anyway. Unfortunately, she drags everyone else (including then =real life boyfriend Clint Eastwood down the drain with her. But what was Clint Eastwood thinking when he agreed to star in this one? One read of the script should have told him that this one was going to be a real snorer. It's an exceptionally weak story, basically no story or plot at all. Add in bored, poor acting, even from the normally good Eastwood. There's absolutely no action except a couple arguments and as far as I was concerned, this film ranks up at the top of the heap of natural sleep enhancers. Wow! Could a film BE any more boring? I think watching paint dry or the grass grow might be more fun. A real stinker. Don't bother with this one.",0 +4704,"The whole point of making this film, one of the earliest and best international color releases of cinematic opera, was to make it more accessible to the masses. And it succeeded admirably in doing so. The general public would not sit still for a love story about two young exotic lovers in ancient Egypt if played by the typical 300 pound over 40 tenor and soprano with the vocal equipment to sing the glorious music properly. Hence the visual substitution of the beautiful principals (a young Loren, handsome Della Marra, and a slinky Ms. Maxwell)who make the story much more believable, giving those not familiar with the plot or the music a better chance at being wooed into the lovely arias who otherwise might not be. Altogether, an enchanting introduction to one of Verdi's great works. I remember seeing this when I was in junior high school and it certainly awakened my interest in opera, a form with which I was then not well acquainted. I still regard this film fondly and would recommend it highly to those who might appreciate the great music accompanied by better than average visuals. Luciano Della Marra was a standout as Radames, and unfortunately for audiences did not appear in any other films.",1 +14100,"Otherwise it is one of the worst movies I've ever seen - and I mean ever. My wife and I were both bored out of our minds within 10 minutes. Not to mention being boring, it is entirely unbelievable. Women (non-lesbian) don't bathe together - nor do they ""accidentally"" kiss. Brothers and sisters don't live together well into their 30s and run around swing dancing together and engaging in footraces in central park. Men don't find out their wife and sister romantically kissed the night before the wedding and then never discuss it with said wife. Absolutely ridiculous.<br /><br />Heather Graham is possibly the worst actress in films today. She smiles when she should be crying and vice versa. The only movie she has ever been good in is Boogie Nights - and that is because she wasn't acting.<br /><br />I cannot stress enough how bad this movie was.",0 +19214,"Why watch this? There is only one reason and that is for the greatness of John Saxon. I love his acting. My most favorite appearances by him are in Nightmare On Elm Street 1,3, and 7 as Nancy's father a cop, Black Christmas as a cop, and From Dusk Till Dawn again as a cop. When I was rummaging through my local mall video outlet I came across the film Zombie Death House and I quickly tossed it back but before moving on I noticed that John Saxon was not only an actor in this film but for the first time that I have ever heard of a director. This intrigued me (Also the cheap $9.00 price tag) and I and I had to have it. Upon coming home I realized that this film did not live up to Saxon's other work even his acting, which may have been muddled by the added pressures of directing. But it was not just him the other actors sucked too. It seemed as if they had all been pulled out of a recent porno shoot and told now guys you really have to act. The film even looks of 80's porn quality. I cannot in good faith recommend this film to casual viewers, but if you are an obsessed fan of the 80's who missed out on the culture that came from that era by being born to late, or a fan of crap films than this one is for. Also if you dig John Saxon as I do.",0 +15550,"Evil Breed is a very strange slasher flick that is unfortunately no good.The beginning of the film seems promising but overall it's a disaster.The dialogue is pretty bad but not near as bad as the acting.The acting is brutal and unbearable.Most of the characters deliver there lines horribly and even if that is on purpose the method doesn't work because the characters become annoying.Some of the kills are innovative but it took far too long to get to them.After about a half hour through the movie we get the first death (other than in the beginning)and then almost every other character is smoked within the next five minutes.The movie then turned into sort of a spoof with ridiculous looking characters,unrealistic karate like fights,and a scene in which a man gets his intestines pulled out of his a*sscrack.None of it is funny it's just plain ridiculous.The film then becomes ultra gory and ultra pointless.Most of the characters are clichéd even for slasher standards and are as solid as butter left on the counter for 5 days.Evil Breed isn't even laughably bad therefore it fails in it's main task.Watch Texas Chainsaw Massacre,Just Before Dawn,or See No Evil for a real slasher.",0 +16745,"With Goldie Hawn and Peter Sellers in a movie you figure this one won't go wrong. But what can I say? This was a horrible misfire. The movie is about Peter Sellers as an older gentleman who suddenly finds himself in a relationship with a really strange young not to mention attractive hippie in Goldie Hawn. The movie is incredibly disjointed and I did not understand anything about it. Peter Sellers and Goldie Hawn are very funny people but this movie does not prove it.<br /><br />That song about arabella Cinderella' is pretty cool, but that is it. I only recommend this movie to people that like to watch an extreme novelty movie, this is almost the definition of one. I guess this movie more than anything else is a sign of the times, in terms of it's definite experimentalism and all around unconventionality, the problem is the quality is completely shot and the writing, not to mention the direction is just so out there. <br /><br />Peter Sellers in particular is very hit and miss, he will go from Dr. Strangelove and Being There throughout his career, to dumb movies like this and the Magic Christian, which was very similar to this one in context and style, but that movie did have a few funny moments. This one is senseless, and I am sad that someone as great as Peter Sellers was in this movie. Not recommended for anyone.",0 +8059,"Heart pounding erotic drama are the words that come to mind when I think of ""Secret Games"". It becomes more erotic as the film goes along and at one point blew me away! I didn't expect the delightful scene I was about to encounter. The ""call girl"" has her first customer and what a customer! One of the most erotic lesbian scenes I have ever seen. The husband should have listened to his wife and perhaps she wouldn't have gone on this erotic journey. It turned out to cost them in the end but, it was one exciting ride! GO SEE THIS MOVIE!!!",1 +17402,"i didn't even bother finishing the movie because i was so bored i thought i was going to pass out i was watching it in the movie theaters and me and my friends just got tired so we got up and left to another movie if i ever have to sit through 2 min. of that movie again i think I'm going to shoot myself...and i do know the whole entire movie because my friend told me what happened at the end and i wasn't surprised at all i mean who didn't know she was going to do the right thing and let him be happy i mean for real you would have to be a complete idiot not to know that. i know i didn't miss anything and if somebody ask's me to see that movie i would say ""over my dead body"".",0 +15250,"Wha-BAM! Someone surely had fun devouring a whole truckload of acid-mushrooms and then subsequently scripting this crazy excuse for a motion picture! Writer Howard Cohen expands the ""Sword & Sorcery"" concept with a couple of extra S's, like Sex, Silliness, (more) Sex and Sheer Stupidity! This isn't just a movie, this is every juvenile pervert's dreams & fantasies come true! ""Deathstalker"" has it all: blood, violence, trolls, female mud-wrestling, attempted rape, successful rape, life-sized pigs (!), awful hairstyles, hideously oiled muscular bodies, multi-sexual orgies, gay warriors, tournaments-to-the-death, delirious witches, dismemberment, laughable villains and boobs, boobs, BOOOOOOOOOBIES!! ""Deathstalker"" literally wipes the floor with its obvious role-model ""Conan: The Barbarian"" when it comes to terms of cheesiness and sheer flamboyance. The story is, evidently, of minor importance. Lone and gay (only he doesn't know it yet) warrior Deathstalker goes on a mission, as commanded by an annoying witch, to gather the three notorious elements of creation or something like that. On his journey he combines forces with a troll-turned-human, a fighter who's even gayer than he is and - last but not least - a luscious lady who doesn't really seem to be a big support of the concept of bras. Together they head for the kingdom of the ultimately evil Munkar where they'll participate in a warriors' tournament and conquer no less than two out of three elements. Munkar is bald guy with half a spider's web tattooed on his skull and an impressive harem that would even make the wealthiest oil sheik jealous. Okay, granted, ""Deathstalker"" is a pretty damn awful and at some times even unendurable movie. The fight sequences are lame and the costumes and make-up effects are downright pitiable. For a moment, when beholding the opening sequence, I actually feared I was watching ""Troll; the Prequel"". The monsters look incredibly cheesy and the complete opposite as menacing, but it's undeniable entertainment if you're in an undemanding mood. I presume this isn't a favorite amongst feminists, as the overall portrayal of women is somewhat um discriminating. Most of the gals exclusively serve as eye-candy in the harem. They're allowed crawl over the floor naked and play around in the mud, but strictly forbidden to open their mouths. The two ""leading"" ladies (Barbi Benton and Lana Clarkson) are ravishing but - in all honesty - if it wouldn't be for their continuously exposed racks, they would hardly be worth mentioning, either.",0 +11758,"Having lived in Ontario my whole life, in the same town that Marlene Moore grew up in, I've heard stories of her from my parents, grandparents and family members. So when I found out that they would be filming a movie about her, and that the beginning would be shot on my street, and her house quite close to mine I was excited.<br /><br />If you read the book Rock a Bye Baby, which is about Marlene Moore you get quite the different image of her as a person, she was considered awkwardly beautiful by people who really had the chance to know her with the exception of her own family who frequently abused her as a child, with the exception of one of her brothers. Also, if you live in my area and are intelligent enough to listen to those around you who knew her from school you'd find out that she was truly wounded before she even set foot in an institution, she was always defensive and what would seem like an unwillingness to learn in a school environment was actually embarrassment over the fact that she was unable to.<br /><br />Marlene did not deserve the life she was given, with the lack of help she desperately needed to receive. It was the government and the people around her that aided further in her death by not attempting to understand her needs and why she did what she did. I still find myself angered that she was put in jail for self-defense from a man who tried to rape her. As her brother once said, ""They didn't know what to do with her so they locked her away and it killed her."" I believe in that with all my heart.<br /><br />Rest in peace Marlene, you deserve it so much.",1 +8886,"The charm of Otto Preminger's grandiose, visionary film noir is that it has ambiguous intentions, betraying the gloomy essence of the central character, who is still vexed by living in the shadow of his criminal father. Dana Andrews' driven, vindictive cop is shown as an outsider, irrational and destructive, who maybe can change because he might've found a good woman to look after him. The troubled man reclaims himself with his own tangled impression of rectitude. The distressing mood permanently circuited into the latter half of the story by screenwriter Ben Hecht reverberates in Andrews' tense performance as Preminger saturates the film in a relevantly prosaic substance of style. We don't just see and hear the city at night; we feel it because Preminger lets us see and hear even the most peripheral and distant factors of it.<br /><br />Dana Andrews furnishes a complex character unfolded through his streaks of violence and the hatred that always infests him. As the plot develops, he is secretly entangled in situational snares, yet he is renewed by the outward acts that can be seen in the vintage noir protagonist's visceral facial expressions before he executes them.<br /><br />This reflection of a specific phase in the development of the genre is an engrossing, feral and shady film noir that is set in the double-dealing climate of the underworld, where the hero is so estranged that he is always swelling with rage, and even though he loses his rational resistance, occupational principle, and ethical limits, he's still a good cop. Preminger just winks at telling a social-conscience drama about a corrupted community within the sprawling cityscape, rather keeping the thriller riding on Andrews' shoulders as an existential journey of personal ramifications about a man with an Oedipal fixation who is becoming disconnected though with the ever-shrinking influences of the law on his side and an undying perception of right and wrong.<br /><br />The production companies in the early 1950s pussed out on the social-problem picture, and rather made ""low-budget, low-risk thrillers"" such as this, apparently in an attempt to evade the conniptions of conservative critics and social busybodies. But there is an expressionistic matter-of-factness to Preminger's inimitable approach. He injects each scene with a sense of everyday drama as a backdrop for the plot. Each supporting character must pull their own weight by doing something interesting, but none of them are cartoons or depressing comic reliefs. To him, every character thinks they're the star, as per the straight-from-the-shoulder self-assertion of Karl Malden as a missionary police inspector and a veteran waitress at a lunch counter. It is those who are the stars---Andrews and Gene Tierney, both anguished by their futile attempts to subdue their emotional intensity---who don't want to be.",1 +23044,"Do not waste your time watching this! Unless you want to study it for all the wrong things you shouldn't do to make a good film. I am not one to usually review a movie, but this one is personal. I wasted precious time which they cannot give back. I feel compelled to write this report to warn others not to waste their time watching this crap. If this was a student project, i would have to say not bad, but only for the first 15 min... after that it gets annoying. the screaming, the bad audio, the bad video (a good camera man could have made it much better). and yes, whats with the Blair-Witch effect? no budget? I was hoping it was going to get better, but it doesn't. Now how the hell did it deserves a 4? 2 is more fair but 1 for wasting my time! I have said my peace.",0 +7484,"You've never seen anything like it. Once the coup begins, it's the most dazzling, edge-of-your-seat thriller you'll ever see -- even though you know the outcome. And it's all real, because it's a documentary -- amazing. <br /><br />By the time it was over, it was on my Top 10 list of All Time Great Movies.<br /><br />Disregard the slobbering right-wing fanatics. Everyone I know who has seen this film gives it the 4-star rating. Even if you don't care about politics or about Venezuelan politics, you will find yourself nerve-racked and -- believe it -- on the edge of your seat.<br /><br />It's a roller-coaster ride.",1 +22936,"I had the distinct displeasure of seeing this movie at the 2006 Vancouver International Film Festival. I have been attending this festival for over 5 years, and I have certainly seen some poor movies on occasion. However, 'First Bite' has reached a brand new low in film. In spite of being shot in beautiful locations, with the occasional, exquisite close up of fabulous food, the movie contorts an excessive number of plot twists and stilted characters until I was practically begging for it to end.<br /><br />The lead actor, David La Haye, completely failed to show any character development throughout the movie, portraying a pompous chef from beginning to end. Additional sub-plots, such as eating disorders, were developed so poorly and completely did not fit within any context that the movie had shown up to that point.<br /><br />A theme of mysticism was used as a poor attempt to conceal a movie that achieves nothing, goes nowhere, and completely disappoints.",0 +3441,"Several years ago the Navy kept a studied distance away from the making of ""Men of Honor,"" a film based on the experiences of the service's first black master chief diver's struggle to overcome virulent racism. Ever eager to support films showing our Navy's best side the U.S.S. Nimitz and two helicopter assault carriers, with supporting shore installations, were provided to complement this engrossing tale of a young sailor's battle with uncontrollable rage. Some of the movie was shot aboard the U.S.S. Belleau Wood.<br /><br />Antwone Fisher wrote the script for Denzel Washington's director's debut in which he stars as a Navy psychiatrist treating Fisher, played effectively and deeply by Derek Luke.<br /><br />Fisher is an obviously bright enlisted man assigned to the U.S.S. Belleau Wood (LHA-3), a front line helicopter assault platform. Fisher can't seem to avoid launching his own assaults at minimal provocation from his fellow enlisted men. Sent to the M.D. as part of a possible pre-separation proceeding, Fisher slowly opens up to the black psychiatrist, revealing an awful childhood of great neglect and shuddering brutality.<br /><br />The story develops as Fisher cautiously but increasingly trusts his doctor and gets the courage to pursue a love interest, an enlisted sailor named Cheryl, played by a stunningly beautiful Joy Bryant.<br /><br />Fisher reluctantly engages with the doctor by asking long simmering questions but soon realizes he must seek the answers, however painful, in order to grow and move away from conflict-seeking destructive behavior.<br /><br />While all the main characters are black, this story transcends race while unflinchingly showing the evil of exuberant religiosity and concomitant hypocrisy in foster family settings. Viola Davis, a versatile actress seen in a number of recent films, is a picture of sullen immorality but is nothing compared to foster mom, Mrs. Tate (Novella Nelson), who in short but searing scenes would earn - if it existed - the Oscar for gut-churning brutality.<br /><br />Films about patient-therapist interaction follow a certain predictability (all that transference and counter-transference stuff) but the earnestness of Fisher and his doctor/mentor is realistically gripping. It's a good story, well told. Period.<br /><br />While set in the Navy, ""Antwone Fisher"" is not in any real sense a service story as was ""Men of Honor,"" an excellent movie that dealt with crushing racism directed against a real person. Nor is it truly a film about blacks. It's about surviving terrible childhood experiences and, as Fisher says, being able to proclaim in adulthood that the victim is still ""standing tall."" The persecutors shrink in size and significance as a brave and strong young man claims his right to a decent life with the aid of a caring doctor.<br /><br />My only quibble is that Washington is a lieutenant commander but is addressed as commander. With all the Navy support people listed in the end credits, someone should have told Director Washington that his character, like all naval officers below the rank of commander, is addressed as ""Mister."" Not a big criticism, is it? :)<br /><br />I don't know why this film is playing in so few theaters. It deserves wide distribution. Derek Luke may well get an Oscar nomination.<br /><br />8/10.<br /><br />",1 +9647,"My mom took me to see this movie when it came out around Christmas of 1976. I loved it then and I love it now. I know everyone makes fun of Barbra's hair in this one, but I think she looks and sounds great! ...And I seem to remember a number of women who copied that permed look at the time! Also, the bath tub scene between Streisand and Kristoferson is just so sexy! The music is great as well. This is the groovy 70's Babs at her best!",1 +11341,"Although I agree that it's a good but not great movie, for many of the reasons other posters have mentioned, I still enjoy it. One reason is the music: I'd call attention to the very cool appearance by the Candoli brothers -- Conte and Pete -- in a well-staged scene in the nightclub. These guys were two of the best jazz trumpeters of their day, and they manage to convincingly boggle the mind of Jimmy Stewart by playing an hysterical trumpet duet, one trumpet in each of Stewart's ears. The Candolis really did play that well, too, though I suspect the actual music for that scene was dubbed later by the two of them. I don't know much about George Duning, who gets the credit for the music (other than that he seems to have worked with the Three Stooges on more than one occasion), but the casting of the Candoli brothers as jazz-playing warlocks was a real nice touch.",1 +4070,"Love the TV show. Was hooked first time I saw it. Wish I was there acting in with them. It touches reality when you love someone and you are thinking that you want to spend the rest of your life with, then at a turn of events that you meet someone else and that person is more of who you want to be with. You are in a situation were you have to choose one or the other. Someone is going to get hurt, there's no stopping that. Making the decision is hard but, do you want to go on being unhappy when you could have been. Why go on and live a life that you thought that you wanted or thinking you are doing the right thing and you both be unhappy. That other person isn't going to wait a life time waiting, they have a life a well. Making the decision that you really want will be better in the end. Making the best of what you have is a good thing a well. Money, cars, houses, etc....don't make you happy, having the one person that you really want to be with to share it with does.",1 +6460,"A noted cinematic phenomenon of the late eighties and early nineties was the number of Oscars which went to actors playing characters who were either physically or mentally handicapped. The first was Marlee Matlin's award for ""Children of a Lesser God"" in 1986, and the next ten years were to see another ""Best Actress"" award (Holly Hunter for ""The Piano"" in 1994) and no fewer than five ""Best Actor"" awards (Dustin Hoffman in 1988 for ""Rain Man"", Daniel Day-Lewis in 1989 for ""My Left Foot"", Al Pacino in 1992 for ""Scent of a Woman"", Tom Hanks in 1994 for ""Forrest Gump"" and Geoffrey Rush in 1996 for ""Shine"") for portrayals of the disabled. Matlin, who played a deaf woman, is herself deaf, but all the others are able-bodied. <br /><br />This phenomenon aroused some adverse comment at the time, with suggestions being made that these awards were given more for political correctness than for the quality of the acting. When Jodie Foster failed to win ""Best Actress"" for ""Nell"" in 1994 some people saw this as evidence of a backlash against this sort of portrayal. My view, however, is that the majority of these awards were well deserved. I thought the 1992 award should have gone to either Clint Eastwood or Robert Downey rather than Pacino, but apart from that the only one with which I disagreed would have been Hanks', and that was because I preferred Nigel Hawthorne's performance in ""The Madness of King George"". In that film, of course, Hawthorne played a character who was mentally ill. <br /><br />""My Left Foot"" was based upon the autobiography of the Irish writer and painter Christy Brown. Brown was born in 1931, one of the thirteen children of a working-class Dublin family. He was born with cerebral palsy and was at first wrongly thought to be mentally handicapped as well. He was for a long time incapable of deliberate movement or speech, but eventually discovered that he could control the movements of one part of his body, his left foot (hence the title). He learned to write and draw by holding a piece of chalk between his toes, and went on to become a painter and a published novelist and poet. <br /><br />Life in working-class Dublin in the thirties and forties could be hard, and the city Jim Sheridan (himself a Dubliner) shows us here is in many ways a grim, grey, cheerless place, very different from our normal idea of the ""Emerald Isle"". (Sheridan and Day-Lewis were later to collaborate on another film with an Irish theme, ""In the Name of the Father""). Against this, however, must be set the cheerfulness and spirit of its people, especially the Brown family. Much of Christy's success was due to the support he received from his parents, who refused to allow him to be institutionalised and always believed in the intelligence hidden beneath a crippled exterior, and from his siblings. We see how his brothers used to wheel him round in a specially-made cart and how they helped their bricklayer father to build Christy a room of his own in their back yard. <br /><br />The film could easily have slid into sentimentality and ended up as just another heart-warming ""triumph over adversity"" movie. That it does not is due to a number of factors, principally the magnificent acting. In the course of his career, Day-Lewis has given a number of fine performances, but this, together with the recent ""There Will Be Blood"", is his best. He is never less than 100% convincing as Christie; his tortured, jerky movements and strained attempts at speech persuade us that we really are watching a disabled person, even though, intellectually, we are well aware that Day-Lewis is able-bodied. The other performances which stand out are from Fiona Shaw as his mentor Dr Eileen Cole, from Hugh O'Conor as the young Christy and from Brenda Fricker as Christy's mother (which won her the ""Best Supporting Actress"" award). <br /><br />The other reason why the film escapes sentimentality is that it does not try to sentimentalise its main character. Christy Brown had a difficult life, but he could also be difficult to live with, and the film gives us a ""warts and all"" portrait. He was a heavy drinker, given to foul language and prone to outbursts of rage. He could also be selfish and manipulative of those around him, and the film shows us all these aspects of his character. Of course, it also shows us the positive aspects- his courage, his determination and his wicked sense of humour. Day-Lewis's acting is not just physically convincing, in that it persuades us to believe in his character's disability, but also emotionally and intellectually convincing, in that it brings out all these different facets of Christy's character. His Oscar was won in the teeth of some very strong opposition from the likes of Robin Williams and Kenneth Branagh, but it was well deserved. 8/10",1 +18735,"A group of human looking aliens going to Earth to eat crash land on a planet of prehistoric beasts instead where they all eat physcedelic mushrooms and act retarded. Padded with footage from ""Planet of the Dinosuars"" and horrible jokes this is definitely one to miss. The acting is atrocious as well, and while this isn't as bad as ""Chickboxer"" (what movie can be?) This is still pretty awful repugnant stuff. It's 90 minute running time feels like an eternity and you will likely be cursing life so do yourself a huge favor and just move on, skip this crappy film, there's nothing to see here.<br /><br />The film-makers try to resell this turd as a MST3K style making fun of the movie they made a decade before, and it works to an extent it's still nothing that watchable though, Ariauna Albright is hot, but Lilith Stabs has a pretty unattractive speaking voice.<br /><br />My Grade: D- <br /><br />DVD Extras: Joke commentary, 17 Behind the scenes featurette; 7 minute Into the black featurette; Jessica Mills reporting; Stills gallery; and original trailer",0 +20240,"Whoa nelly! I've heard a ton of mixed reviews for this...but one of my go to hardcore horror reviewers really found it to be disappointing. Man was he right on the nose! This movie was acted by pure amateurs. They HAD to have done one take, maybe two on each scene, the movie seemed soooo rushed. The script was also poor....they had lines that tried to be unique but failed. Miserably. ""Get your meathooks off of me!"" Oh man, I hate it when movies try to do that. It happens all the time with comedies...but, with a horror movie and with below average actors....the results are incredibly pathetic. The lines and scenarios were all very predictable. But what made me feel so negative towards this movie was, again, the damn acting. It was awful. Besides by the little Asian guy who worked the booth. I thought he was great.<br /><br />The movie is about 5 stupid dumbsh!t tourist who are on a vacation in Asia. They end up at the wrong place and fall into the hands of a mafia run sex/slaughterhouse. Sounds like a cool story. But watching someone with a bad case of diarrhea is probably more fun and intense to watch. The only reason this is considered horror is because of the killing. There wasn't a trace of suspense.<br /><br />I like many other horror fans were dying to get their bloody little mitts on this. But unfortunately with a HUGE capital U, the movie was incredibly disappointing. I did enjoy the ankle break and the blood effects. The flabby chicks were also so so.<br /><br />Everything about this movie screams amateur. This is Ryan Nicholson's first feature length, and for the most part he failed. There's no denying he has a sick sense of humor and taste for horror. I pray his next movie doesn't play out like another B horror flick...unless he tells us that's what it's gonna be. Even after this disappointment I'm willing to give Ryan another shot. From what I've seen of him, he's a true, dedicated man to the genre. Good luck next time, because this was bad news.",0 +22426,"Confounding melodrama taken from a William Gibson story, produced by John Houseman and directed by Vincente Minnelli! Richard Widmark heads up posh, upscale rural nervous asylum, where his loose wife battles with self-appointed queen bee Lillian Gish, and Widmark himself gets the straying eye for staff-newcomer Lauren Bacall, who is putting her life back together after the death of her husband and child. Facetious and muddled, set in an indiscriminate time and place, and with a ""David and Lisa"" love story hidden in the plush morass. Widmark and Bacall do have some good chemistry together, but this script gives them nothing to build on. For precisely an hour, most of the dialogue concerns what to do about the drapes hanging in the library (this thread isn't used as symbolism, rather it's a red herring in a non-mystery!). The picture hopes to show the loggerheads that disparate people come to when they're working in the same profession and everyone thinks their opinion is right, but unfortunately the roundabout way Minnelli unravels this stew is neither informative, enlightening nor entertaining. ** from ****",0 +10431,"""Fear of a Black Hat"" is a superbly crafted film. I was laughing almost continuously from start to finish. If you have the means, I highly recommend viewing this movie It is, by far, the funniest movie I have had the pleasure to experience. Grab your stuff!",1 +4832,"Before I watched this tv movie I did not know much about one of my favorite actresses. After watching it, I realized how sad Lucille Ball's life really was. It had it's great moments too, but I didn't realize how sad it was. This movie was very good and told the story of the beloved Lucille Ball very well. I highly reccommend it.",1 +2004,"Rented the movie as a joke. My friends and I had so much fun laughing at it that I went and found a used copy and bought it for myself. Now when all my friends are looking for a funny movie I give them Sasquatch Hunters. It needs to be said though there is a rule that was made that made the movie that much better. No talking is allowed while the movie is on unless the words are Sasquatch repeated in a chant. I loved the credit at the end of the movie as well. ""Thanks for the Jeep, Tom!"" Whoever Tom is I say thank you because without your Jeep the movie may not have been made. In short a great movie if you are looking for something to laugh at. If you want a good movie maybe look for something else but if you don't mind a laugh at the expense of a man in a monkey suit grab yourself a copy.",1 +21382,"This is a low-budget ""Scream"" style movie. ""Maddy"" is a new worker at a conspicuously-unnamed office, where she meets and starts a relationship with her co-worker ""Chris"". During a hot tub-party, Chris and his friends convince Maddy they belong to a ""Murder Club"" where everyone has killed someone for kicks. When Maddy loses it and kills someone for real, hijinks ensue.<br /><br />The film looks good, and there are the requisites for this genre and budget level (nudity, gore, maybe a few cameos from slightly bigger stars than the cast), but, after the credits roll, you'll ask yourself why you spent 80 minutes of your life watching it.",0 +8126,"I have to start by telling you how I came across this movie.It was winter time in Alaska around the year 1990.A friend of mine from Australia was staying with me and my girl friend in a shoe box of an apartment.Winters in Alaska can be a bit brutal and most people stay indoors,drink heavily and watch anything that comes on the television.I had found this movie outside of a thrift store laying in a snowbank and right away new it was a treasure.It is quite possibly the best worst movie ever.We spent the next two weeks watching this movie and drinking like fish.We watched it so many times in fact that we would sometimes turn the television on its side or upside down for a more full filling effect.It is a true gem.The laughs will come nonstop and the memories last forever.If you see this movie for rent in a video store,steal it.You won't regret it!",1 +23469,"This movie is about a cop (Ching Wan Lau) trying to catch a super-clever thief (Ekin Cheng) who blackmails an insurance company headed by a Kelly Lin. Basically, whatever plans the cop tries the thief somehow knows them beforehand. This movie, covered by handsome lead actors, beautiful lead actress and good camera shots of Hong Kong scenes, really has no substance at all. It's all flash, and the flash quickly becomes dull too. I lost all interests a third of the way into the movie, and there is no redeeming quality after that, except for the cinematography, which looks good. Only consider seeing this movie if you can do so for free. Also, consider stopping watching the movie 20 minutes into the movie because it's all the same to the end: BORING. 6/10",0 +24655,"This is shallow hedonism and/or social commentary wrapped in a tragic tale about a jealous young woman's scheme to drive apart her father and his fiancée. Is it incest or just a view through the eyes of a daughter with an Electra complex? Who cares? All of the characters, except for Anne (Deborah Kerr) are vacuous and vile. Seberg is poor (I agree with the ""boys with breasts"" comment of an earlier review). The plot plodded. This predictable material was sufficient for about 30 minutes of film that unfortunately was stretched over an hour and a half! If you want to see great gowns and jewels on the Riviera, I recommend ""To Catch a Thief"" - in which you will get the added bonuses of an entertaining story and likable characters. <br /><br />I like for films to entertain me. I personally don't really care where a film is set. Whatever the time or place, I want a good story - comedy or drama. I also want to see some enjoyable characters. It doesn't hurt if I can relate to them. Poor Deborah Kerr gives a typically good performance, and so does David Niven in a despicable role.<br /><br />The ""2"" rating is solely for Kerr and Niven, and for the cinematography - the rich color scenes and the murky, foreboding black and white scenes. Unfortunately, all the great cinematography in the world cannot salvage a poor story with un-enjoyable characters. A sow's ear is still a sow's ear. Consequently watching this mess was a serious waste of my time.",0 +18025,"The sects that capitalise on this film are well known for their claim to take the 'message' of the bible without any alteration or extra-biblical influence. The existence of this film is solely due to the fact that there is no such thing.<br /><br />If you want to know what the born-again branch of Christianity were harping on about in the seventies just look up the word 'rapture' in a dictionary of cults and sects. It's quicker than sitting through this waste of celluloid.<br /><br />Poor acting, uneven sound quality and a script that could just as easily have been written by Jack T Chick (paranoid Christian conspiracy theorist for those not familiar with the Evangelical scene). You could not really put this into the 'so bad it's good' category so its only audience are either those with a pamphlet collection looking to branch out or the extremely paranoid.",0 +21150,"This DVD appears to be targetted at someone who will just put it on and play it in an endless loop in the background. It's organized as a series of music videos of the Grand Canyon set to various pieces of Tangerine Dream music.<br /><br />Unfortunately, the TD music is dull, and the transfer to DVD looks rather blurry and dim. Too expensive a DVD for what it is.",0 +21814,"I felt like I was watching the Fast and the Furious again, but with different actors and a little bit different plot. I will say the cars in the film are very cool. So, if you like fast cars, then you will probably find this movie mildly entertaining. I also liked Nadia Bjorlin because I've seen her from Days of our Lives. She is a really good singer, but too bad they gave her such lousy songs to sing in this movie. I mean songs about cars; not exactly what you would here on the radio. Since it is a Hollywood film, you have to give this story a little lee way, but in real life I don't think any average joe would come across such a hot girl as Nadia Bjorlin who can drive a race car, fix a car engine, and be a lead singer. It's just all very silly.<br /><br />Another side note, any one willing to wager 25 million on a car race is a nut. But it was kinda of cool at the end when Natasha stops right before the finish line and screws Michael over. Priceless.<br /><br />FINAL VERDICT: This movie is for car freaks. So, if you like fast cars, then I'd recommend this.",0 +24252,"Lucky me! I got a sneak peak at this pathetic little shot-in-Texas 'horror' flick from Artisan Entertainment a week before it hit video shelves and let me tell you...I've rarely laughed so hard in my life as I did watching this atrocious megabomb fly off the rails and steal the title of 'worst killer clown movie ever made' from the insufferably stupid Full Moon fiasco KILLJOY (I'm sure many of us horror fans have suffered through that one!) From all indications, it was shot on DV, and it doesn't really 'look' all that bad quality-wise for digital, but boy does it ever fail miserably in every other area where it counts!<br /><br />The story (slight and cliche as it is) goes as follows... An executive (Ken Hebert, who also scripted and co-produced with the director) takes skeptical co-worker Tracy (Amanda Watson) and horny married couple Mark and Susan (Hank Fields and Chris Buck) along on a weekend getaway to a (yawn) secluded cabin `12 miles' from the nearest town. On the way there, they pick up a bitchy/slutty hitchhiker (Melissa Bale) in a bar and end up at their destination where a nightly campfire tale about a murderous clown stalking the very same wooded area comes true when each of the profanity-yackin, pot-smokin friends' disappears one-by-one, with only mutilated doll parts left behind to tell the tale of their fates.<br /><br />The killer clown doesn't even show up in the film until near the end and it looks nothing like the demonic depiction of it on the video box (aside from being morbidly obese). It basically spends an hour prancing around in the woods, chopping up wood and blabbing nursery rhymes. I cannot say enough bad things about the cast, especially the two guys and the hitchhiker chick, who either deliver their insipid dialogue with a bare minimum of enthusiasm or overact at the most inappropriate times. Doesn't really help that the script is completely and utterly devoid of suspense, originality, intelligence, general coherence or humor. I could go on for days on how inept this film is, how many continuity errors there are and how amateurish the whole production is, but I'll just nod off by pointing out the whole package is quite a riot in that Boy-This-Sucks kind of way.<br /><br />Also noting that the film has been released here in the US as S.I.C.K. (SERIAL INSANE CLOWN KILLER). It's currently catalogued under its (original title) of GRIM WEEKEND.<br /><br />Score: 1 out of 10",0 +4285,"The season finale sent mix messages, I felt feelings of joy, and also feelings of being lied to and deceived. Roseanne tells all her viewers that the entire season nine was a lie because her husband, Dan, had died. She also admits the family never won the lottery, and what season 9 was a lie just being how she wished or wanted it to be. I'm still confused about when she said Becky ended up with David, and Darlene with Mark because Becky and Mark admit to being pregnant. So I believe that is just how she wanted it to be, but it wasn't. So the season finale was good, but sent mixed feelings. I will always be a fan of the show. :)",1 +12832,"My dad is a fan of Columbo and I had always disliked the show. I always state my disdain for the show and tell him how bad it is. But he goes on watching it none the less. That is his right as an American I guess. But my senses were tuned to the series when i found out that Spielberg had directed the premier episode. It was then that I was thankful that my dad had bought this show that I really can't stand. I went through his DVD collection and popped this thing in when i came home for a visit from college. My opinion of the series as a whole was not swayed, but I did gain respect for Spielberg knowing that he started out like most low tier directors. And that is making small dribble until the big fish comes along (get the pun, HA,HA. Like Spielberg did. It's like Jesus before he became a man. Or thats at least what I think that would feel like. Any ways if your fan of Columbo than you would most likely like this, even though it contains little of Peter Falk. I attribute this to the fact this is the start of the series and no one knew where to go with it yet. This episode mainly focuses on the culprit of the crime instead of Columbo's investigation, as many later episodes would do.",0 +17325,"Whether you watch the regular version of this monstrosity or the MST3K version, you can only be impressed by the utter GALL that went into this production. The filmmakers insult the viewer's intelligence from one end to the other and obviously couldn't care less that they are doing so.<br /><br />Everything about it is rock-bottom cheap. Even the 1950s car in the flashback sequence to that era looks like it was hauled out of a junkyard.<br /><br />The ""hobgoblins"" are, as you probably know, ""realized"" with badly-crafted hand puppets and stuffed toys; when a person is supposed to be attacked by them, it's clear the toy is being held by the victim to his or her own body. When the critters scurry away from the two security guards, this is shown (or rather, not shown) by the camera aiming UP at the guards as they look down and turn their heads as if watching the hobgoblins scurrying past. It's reminiscent of the scene in the film ""Tangents"" where two people are standing in the ruins of a future world, surveying the wreckage, and we aren't shown any of it. Budget constraints alloyed with utter incompetence generally mean you won't have anything worth showing, so why try? The ""sets"" were utterly laughable. ""Club Scum"" was an obvious diner; the house appears to have been a vacant house --probably for rent or sale-- which the production company got hold of for an hour or two to do the shoot. The ""spacecraft"" is something I would have been ashamed to build when I was a model-making 10 year-old.<br /><br />The motivations of the characters make no sense-- Kevin gets denigrated by his worthless ingrate of a girlfriend because he hasn't made her ""proud of him."" I'm sure this was intended to make their reconciliation oh so touching at the end, but any guy with real self-respect would have told her to go to hell and left her. Nick is supposedly back from 2 months of Army training (yeah, nice regulation haircut, Nick,) and seems bent on proving that our country is being defended by sadistic, moronic animals who are sex maniacs. Kyle is a phone-sex freak in red shorts who dreams of a night with a spandex-clad dominatrix type, but he's so effeminate that he's more likely gay than not. One of the girls is a prude and the other is a sleaze.<br /><br />And the hobgoblins? At the end they all head back to the vault where they've lived for 30 years. Why? Who knows? Who cares? Watch this film and be amazed at how primitive film-making in our modern age can be when you have an idiotic script, incompetent direction, actors who are so bad they'd be rejected from a high school theater production, and sets worthy of Edward D. Wood, Jr.",0 +11679,"Offside is the story of teenage-girls who tried to sneak in the stadium to watch final world cup qualifying soccer match in Tehran that may lead Iran to the 2006 world cup in Germany. Females are forbidden to go to stadium by law in Iran, although many of them dress like boys and sneak in. Stadium guards search every one at the entrance to make sure no one carries fireworks and of course; no girl gets in.<br /><br />Like most of Panahi's work, his armature cast's performance was superb. You actually think that you are watching a documentary. The dialogs between the girls and the privates were executed delicately and astonishingly believable. The film depicts the interactions between captives and the drafted guards who themselves are serving mandartory away from their family and friends in a funny sort of way. At the end, the audience realizes that there is not such a difference between the girls and the guards who were just following orders.",1 +16717,"This movie is an idiotic attempt at some kind of action thriller. A tour bus on its way to Las Vegas is attacked by a group of white trash hijackers driving dune buggies. They drive them out into the desert and then steal all of their valuables. The plot changes constantly. One minute they are looking to kidnap a rich ranchers daughter, the next they are looking for a collectible stamp worth 90,000 dollars. The dialogue is horrible.<br /><br />Please don't watch this movie.",0 +7911,"I cherish each and every frame of this beautiful movie. It is about regular people, people we all know, who suffer a little in their life and have some baggage to carry around. Just like all of us. Robert DeNiro, Ed Harris and Kathy Baker breathe life into their portrayals and are all excellent, but Harris is especially heartbreaking and therefore very real. You would swear he really is a trucker who drinks so he won't have to feel anything. Baker as his put-upon sister also has some delicate moments - when DeNiro gives her flowers in one scene, it seems like she was never given flowers before and probably wasn't. Very worthwhile.",1 +17066,This movie only got a 1 because you can't give a zero! if you have a weak tummy AT ALL don't watch. animal rights people you don't want to watch either. it makes people vegetarians i swear i witnessed it happen! the only cool parts are the case and the fact that its a true story. its really really super creepy that this guy worked at ADT while he killed people! still feel safe when you punch in that little code? i don't! He had access to every code in Kansas!!!!!! I hated the movie it was not scary it was mentally scaring! Do your self a favor and don;t rent/buy this movie i think it cost about $20 to make that INCLUDES their OVER paid actors!!!!,0 +22089,"Okay, first off, Seagal's voice is dubbed over for like 50% of the film... Why? Because apparently there were rewriting the script and story as they were shooting and they need to change his dialogue for story continuity as they have multiple versions. From the very beginning, you just scratch your head because the overdubs are not only distracting, but they make no sense.<br /><br />That said, the story still sucked and doesn't make any sense at all. When I got the the end, I was just scratching my head cause the movie was so pointless and the ending didn't even make sense.<br /><br />Avoid like the plague. This movie made me stop watching Seagal straight to video movies cause they just get worse and worse.",0 +2153,"I have always like this great baseball movie! It has a good cast including two tremendous actors and two of My favorites Danny Glover and Christopher Lloyd! Also in this movie is Ben Johnson, Brenda Fricker, Big Tony Longo, Tony Danza, and Matthew McConaughey! Also Jay O. Sanders and Dermot Mulroney! The film has great special effects and acting from all of the film's actors! The baseball scenes are all realistic! The music by composer Randy Edelman is very good and it fits the film very well! Some of the actors who reminded Me the actual baseball personalities. Stoney Jackson's Ray Mitchell character reminded Me Royce Clayton, McConaughey's character reminded Me of Steve Finley, and Jay O. Sanders's commentator in My opinion resembled how Al Hrabosky looks today. This is a fantastic movie for non and Baseball fans and I strongly recommend this film!",1 +4550,"I'm not a writer or an critic...I'M just a student that has seen this movie few minutes ago....AND I want to thank people that worked on creating this movie!It is not the best or the most.... but it touched my heart...why???i would like to understand it myself...it is easy and accessible..it is a movie that makes you feel good after a bad day without any regret about the time wasted on watching it!It is about love and caring, about the life that we have but we miss it sometimes because of material stuff .......Look at all the time that we have but we miss it....why a fu*k do we do that???We need to live like were dying ...care about every second and remember:if we do good things-good things come back to us!HAppiness is real...and it has a special taste in New York...i love this town and the world the we live in!!!!thank you very much for the movie and sorry for my mistakes(English is my second language)...",1 +19636,"When I saw this at a shop I thought it looked really good and original. Like Wolfs Creek meets Texas chainsaw massacre, and I mean it only cost three quid (around $6). To be honest I don't think it was even worth that.<br /><br />It seemed like the directors- the 'butcher brothers' couldn't decide whether wanted to do a artsy sort of horror or a gory slasher horror. It ended up with a cliché ridden gory sadistic hour and fifteen minutes with all the characters being one dimensional and you couldn't care less what happened to them but to try to make the audience care about the characters they added a useless monologue at the end and the beginning of the film which to be perfectly honest wasn't needed.<br /><br />The only good part really was the middle/end- I won't ruin it for you. But that was the only ""good ""part.<br /><br />Overall a pointless watch. It felt like a two hour film but was in fact only 75 minutes. If you want an artsy film-don't bother. If you want a slasher movie- don't bother- The film moves so slowly with nothing ever happening.",0 +1113,"Canadian director Vincenzo Natali took the art-house circuit by storm with the intriguing and astonishingly intelligent Cube, which is my personal favourite SF film of the 90s. It framed the basic conceit of a group of strangers trapped in a maze shaped like a giant cube, shot entirely on one set, and took this idea in fascinating directions. <br /><br />I've been eagerly awaiting Natali's follow-up, and although its taken five years for him to mount another project, I'm delighted to say it was worth the wait. Cypher is a fascinating exploration of one man's place in the world, and how through a completely logical chain of events, finds himself in a situation beyond his control.<br /><br />I don't want to reveal too much about the plot, because one of the joys of Cypher is the different avenues it takes us down. It is so refreshing in this day and age to see a SF film that has more than one idea in it's head. Cypher is such a film.<br /><br />Morgan Sullivan (Jeremy Northam), one of the blandest people to ever walk the planet, is hired by the company DigiCorp. They send him to different parts of America to record different seminars. To his bewilderment, they are unbelievably boring. Covering topics as mundane as shaving cream and cheese.<br /><br />While Morgan is waiting for one seminar, he runs into Rita Foster (an impeccably cast Lucy Liu), the definition of an ice maiden. She gives him the brush-off, but there is something to her he finds irresistible. That's not too surprising considering the dry marriage he is in. <br /><br />When Rita turns up at another one of Morgan's seminars, she tells him his life is not what it appears. And I'm not saying anything more about the plot. To do so would cheapen the impact the rest of the film has on us, as well as the tortuous path that's so much fun to follow.<br /><br />As with Cube, Natali shows quite a talent for encompassing seemingly ordinary people, taking them out of the familiar, and basically seeing what will happen when they're thrust into the unknown. And Cypher follows similar patterns. But it's not a carbon copy of Cube. It has it's own inspiration.<br /><br />Cypher is a film that has more in common with conspiracy thrillers and paranoia stories. One of the great things about Cypher is the way these themes creep into the story without your knowledge. When Morgan realises his false identity is a piece of a much larger puzzle, it's as much of a shock to us as it is to him.<br /><br />One thing that distinguishes Cypher from Cube is how much more polished it is. Where Cube was confined to a minimalist setting and a shoestring budget with a cast of unknowns, Cypher is also on a low budget, but Natali economises it as much as he can, allowing him to broaden the horizon, and launching Morgan on an amazing journey through the labyrinth of his own identity.<br /><br />Natali's direction is exceptional, with a deft hand on the reins. There are some amazing camera angles from above, such as the enormity of the DigiCorp building as a vast, robust office block in conjunction to the insignificant speck that is Morgan standing outside. All the colour appears to have been bled out of the picture, which compliments the tone of the film perfectly as a modern day film-noir.<br /><br />The acting is uniformly excellent throughout. Jeremy Northam is a sympathetic figure from his loveless marriage to questioning his own identity. His performance is excellent because it's so modulated. He literally seems to transform right before our very eyes. From a clinical, spineless wimp to a confident man who will do anything to preserve his new identity.<br /><br />David Hewlett puts in a welcome appearance who made such an impact in Cube. He resides in a secret silo that looks like it was borrowed from Men in Black. His scene is one of the best because it's an exercise in carefully calculated suspense and paranoia. He is a supposed expert in identifying double-agents, and it's a fantastic piece of writing, brilliantly acted by Hewlett. All he has to do is look at Morgan, and we're drawn into his complex mind game.<br /><br />But it's Lucy Liu who's the scene stealer here. Too often she is cast in films where her potential is not utilised to full effect. But in Cypher, she is finally given a character that fits her like a glove. Rita is an aloof, guarded femme fatale that Liu inhabits with relish. I perked up every time she appeared because she is always in control, and can reduce a room to silence by the power of her icy stare alone.<br /><br />Things come to a very gratifying end, that doesn't conclude on an ambiguous note the way Cube did. But Morgan deserves his happy ending. After he's been put through the ringer like this, I cheered for him in the final scene. It's a perfect final moment because it comes as a ray of sunshine after a gloomy 90 minutes.<br /><br />Cypher succeeds on all counts. Engaging, shocking, always entertaining, it's everything that Total Recall wanted to be but wasn't. And it comes as a refreshing antidote to the overwhelming and inexplicable Matrix.<br /><br />A fine follow-up from Natali. And now I'm a committed fan of the man. Superb stuff!",1 +11192,"A woman, Mujar (Marta Belengur) enters a restaurant one morning at &:35 unaware that a terrorist has kidnapped the people in said restaurant & is making them act out a musical number in this strange yet fascinating short film, which I only saw by finding it on the DVD of the director/writer's equally fascinating ""Timecrimes"". It had a fairly catchy song & it somehow brought a smile to my face despite the somber overall plot to the short. I'm glad that I stumbled across it (wasn't aware it would be an extra when I rented the DVD) and wouldn't hesitate at all to recommend it to all of my friends.<br /><br />My Grade: A-",1 +2635,"The Sentinel is a movie that was recommended to me years ago, by my father, and i've seen it many times since. It always manages to entertain me, while being effectively creepy as well. The flashback scenes are what really made it for me. Cristina Raines's father running around all creepily, with the two creepy woman, always manages to send chills down my spine. it's your typical good vs evil thing, but at least it manages to be entertaining. The ending I consider to be one of the finest in Horror history. It has plenty of shocks and suspense, seeing Burgess Meredith do his thing as Chazen, had me on the edge of my seat. The Sentinel has the perfect build up of tension. We are never fully comfortable whenever Allison is on screen. We know something terrible is always awaiting her, and that made things all the more tense. This movie is often neglected among horror fans, but I personally think it's one of the better one's out there, and it certainly has enough for all Horror fans, to be satisfied.<br /><br />Performances. Cristina Raines has her wooden moments, but came though in a big way for the most part. She's beautiful to look at, and her chemistry with Saranadon felt natural. Chris Sarandon is great as the boyfriend, Michael. He had an instant screen presence, and I couldn't help but love him. Martin Balsam,José Ferrer,John Carradine,Ava Gardner,Arthur Kennedy,Sylvia Miles,Deborah Raffin,Jerry Orbach,Richard Dreyfuss,Jeff Goldblum and Tom Berenger all have memorable roles, or small cameos. Burgess Meredith is terrific as Chazen. He looks like a normal old man, but what we find out, is absolutely terrifying. Eli Wallach&Christopher Wlaken do well, as the bumbling detectives. Beverly D'Angelo has one chilling scene, that I won't spoil.<br /><br />Bottom line. The Sentinel is an effective Horror film that Horror fans, sadly tend to neglect. It will give you the thrills and scares you need to be satisfied. Well worth the look.<br /><br />7/10",1 +13191,"I actually have a fondness for Christopher Lee, but this just wasn't up to his other performances... and he was one of the better actors.<br /><br />The film does not live up to its premise. It's not that scary, it's overly melodramatic, and it draaaaaags. Every time I thought, ""Oh, HERE comes the good part"" the good part never quite arrived.<br /><br />The Evil Ones aren't at all convincing. Most of the other characters were also lacking in depth.<br /><br />Perhaps if I'd been in the proper frame of mind, I might have enjoyed some MSTie-fication at this film's expense, but.... Naaahhh... Didn't really seem to be worth the effort. It wasn't really very good, it wasn't really very bad, it was just mediocre.",0 +15060,"I watched this movie last week sometime and had the biggest laugh i've had in a long while. The plot of the film is pretty dumb and convoluted in a badly crafted way. The only plus to be found anywhere in the film are Corey Savier's impressive abs. Alexandra Paul (i think that's her name) is horrendous as the preacher's wife who has a history of depression. Ted McKenzie is gross and his character's a twit on top of it all. And as if the fact that you think she's having sex with her son isn't enough, they throw in needless sax solos at every opportunity! The end and climax of this film is absolutely abysmal and also laughable. I mean who the hell wants to carry the child of a con who tried to make you think he was your son and that you were having an incestuous relationship with him!",0 +11148,"Some saying about 'The Play is the Most Important Thing', or something like that, is attributed to that old Bard of Avon, himself, William Shakewspeare. if it wasn't old Will, it may well have been our own, super-veteran film Director, Mr. Raoul Walsh. There are a large number of his films that would support this hypothesis. None are more appropriate than GENTLEMAN JIM(Warner Brothers, 1942).<br /><br />The Film also racks up another award, being named as Errol Flynn's favourite of his own starring vehicles. It clearly gives on screen evidence that would easily lead viewers sitting in the darkened theatre, or viewing it on their home TV or DVD, to conclude same.<br /><br />To be sure, the story is a semi-serious Biopic, which takes a portion of factual material and blends it with a liberal dose of the old imagination to bring us a very satisfying, albeit somewhat fictionalized(what Biopic isn't?)occurrences.<br /><br />The casting is excellent, as it makes good use of the natural athleticism of our lead, Mr. Errol Flynn. Though not a Swashbuckler, a Western or a War Picture, this GENTLEMAN JIM is perhaps the starring role that was the best fit for the rugged Australian.<br /><br />Errol was a member of the Australian Olympic Boxing Team in either 1928 or 1932. His training and skills in the 'sweet science'are clearly in evidence throughout the film and especially in the ""Big Fight"" for the World's Heavyweight Boxing Championship with the great John L.Sullivan,Himself.(played in expert fashion by Ward Bond) The cast reads like a duty roster of Warner Brothers' resident supporting players. It features Alan Hale as Jim Corbet's father, a Livery Wagon operator*. His two brothers are Harry and George (Pat Flaherty and James Flavin), the two 'blue collar' men of the family, their occupations being stated as being 'Longshormen'.<br /><br />The great Jack Carson does his usual masterful serio-comic performance in support as Jim Corbett's friend and fellow bank teller. The rest of those we can both recognize and remember are:John Loder, William Frawley,Madeleine LeBeau, Minor Watson, Rhys Williams,Arthur Shields,Dorothy Vaughn to name but a few.<br /><br />Director Walsh also used a number of Pro Wrestlers in roles of various Boxers. Hence we have Ed ""Strangler"" Lewis and an unknown Grappler* are featured as the 2 waterfront pugs in the opening scenes. Others were Sammy Stein, Mike Mazurki(ever hear of him?)and ""Wee Willie"" Davis. These guys had a powerful,yet unpolished look about them that the old Pier 9 brawlers would have possessed.<br /><br />We haven't forgotten Leading Lady, Alexis Smith. She is powerful in her characterization of an ""independent"" woman, yet maintains enough true ability as a comic player in many of the scenes. She displays quite a range in her part as poor little rich girl, Victoria Lodge.<br /><br />With all these ingredients at hand, the trick is how to mix the elements in proper proportions to give it the 'just right' blend. Well, Director Walsh does so with a reckless abandon. Because he is looking for, above all, a great film. His treatment shows all of the skills he had honed to a fine tuning starting with his days as a player with D.W. Griffith. Mr. Walsh seems to have a special fondness for that period, the 1890's.*** Mr. Walsh's direction moves through the script at a fairly fast clip, breaking up the exposition scenes with a humorous punch-line, ""the Corbetts are at it again!"" Hence, he is able to maintain a light, even humorous touch to a story which could become too drab and serious.<br /><br />Furthermore, in an almost unnoticed element, Brother Walsh gives us an authentic look of a San Francisco of the 1890's. And as a further example of his fondness for that period, he creates wide, dynamic images of the historic Prize Fights. There is a vibrant, joyful mood conveyed in those Boxing scenes. As a crowning glory to this great, perhaps underrated film, Director Walsh gave the image a look as if it were an illustration from The Police Gazette, which covered such events in those ""Old Days"".<br /><br />But there's just one thing to remember before viewing. If it is for the first time, or if your seeing it once more:<br /><br />""THE CORBETS ARE AT IT AGAIN!!""<br /><br />* In my humble opinion as a historian of both Film and Pro Wrestling, it looks like Tor Johnson, who years later was a favourite of Director Ed Wood's.<br /><br />** A 'Livery' is a somewhat archaic term for a vehicle for hire for local city transportation.<br /><br />*** It's true. Mr. Raoul Walsh was a Griffith Veteran Player. He was the actor to portray John Wilkes Booth in THE BIRTH OF A NATION(1915).<br /><br />**** Being born in 1887, Raoul Walsh was old enough to have his own memories of the 1890's and of the Sullivan-Corbett Championship Bout and what it meant to the Sporting Life in the America of those days.",1 +19690,"Hello I am from Denmark, and one day i was having a film evening with my friends. One brought this movie with him ""Russian terminator"" and it was extremely awful. After watching less than half a minute we decided to fast forward only stopping at some laughable ""highlights"" or should i say ""lowlights"" in the movie. I was actually mostly surprised to find out that this film was produced here in my homeland Denmark...that must have been the biggest mistake this country ever made.",0 +550,"Great actors, an oscar nominee actress, stunning scenery, good strong story line and more laughs than you can fit into my new handbag (and thats quite big). This film was brilliant. It was beautifully acted in the more serious scenes and the funny moments were . .well, side splitting. I have never heard a cinema audience laugh so much, and tears were streaming down my cheeks during the 'stoned ladies in the tea shop' scene. Well done to the British film industry and to Craig Ferguson whose magic ingredients have made sure this is one of my favourite films of the year, if not of all time.",1 +2214,"As for many on here I can't help but praise the Cast and Crew who developed Talespin and others they made throughout My Childhood, I as all who have commented here have thoroughly enjoyed the Quality of not just the animation but the quality of the story lines and the characters.<br /><br />To Class this work of art as a ""Cartoon"" could never do talespin justice, In fact it's an insult to class it as a ""Cartoon"", Talespin is an Animation and nothing less, It is evidently the greatest work of genius to be produced at Disney to date, When Disney ""Pulled"" it from the air little did they realise what they did and I'm sure their souls have been tortured by regret ever since.<br /><br />I'll take a moment to explain, From the first which is ducktales to the last which I think is Darkwing Duck, Disney has been plagued with failures due to political Correctness and have taken a Quantum Leap backwards since, They prefer Quantity over Quality now not to mention the room full of Monkey's for the story's, I couldn't have My children watching the mind-numbing ""Cartoons"" they throw out now in fear that they would all turn out to be homer Simpson some time in the future and 50% of the blame would be on me for permitting them to watch it, I couldn't let that happen, Which is why I have ALL of the shows from the late 80's to the mid 90's on a Harddrive so one day My children couldn't be corrupted by the ""Cartoon Crap"" of today and to Savour the last piece of childhood I have and to hold on to and I owe that all to Talespin.<br /><br />Talespin to me is without a doubt the best Animation ever produced in the world on account of it's depth, Charm, Wit, Compassion, Emotion and lack of Truly bad quality and story lines of which many have today, Do You see any of that content in say ""Ed, Edd and Eddie or anything else You can think of?, The rubbish produced today can be likened to some 3 year old's undecipherable Hyroglyph Depicting a Picasso.<br /><br />The next time You watch an episode of Talespin; take a look at the woodgrain on any wooden object or building such as Higher for Hire and salivate over the quality of workmanship and effort put into this Animation, Even the one shot backgrounds were done as though they would use them again and again, The Buildings look true to the Art Deco movement which was popular in the time period depicted, Even the vehicles are true to life, OK not ALL of the Episodes Were Fantastic in animation but the lower grade scenes were covered up by the superior scenes so all in all it evened it all out by the end of the episode and You'd probably never even notice at all unless you were focused and have an attention to detail.<br /><br />The one thing I love about this is what I like to call the ""Deliberate Mistakes"" or ""Intended Mistakes"" in each episode and some have two, For example in sheepskin deep where rebecca say's ""You're up to something Baloo"" and Baloo replies ""Who, Me!, I'm as innocent as a schoolboy"" take a look into rebecca's eyes, I won't spoil the rest of the Baloopers but just keep an Eye out next time.<br /><br />Everyone elses comment's are bang on and 100% correct, I have nothing else to add that others haven't said already on here, Disney, WAKE UP and smell the coffee, You have been asleep for over a decade, Stop producing rubbish and bring back Quality into Animations and Stop producing ""Cartoons"", We have seen the proof of what You can do and We want it back as rapidly as possible.",1 +11224,"In New York, Andy Hanson (Philip Seymour Hoffman) is an addicted executive of a real estate office that has embezzled a large amount for his addiction and expensive way of life with his wife Gina (Marisa Tomei). When an audit is scheduled in his department, he becomes desperate for money. His baby brother Hank Hanson (Ethan Hawke) is a complete loser that owes three months of child support to his daughter, and is having a love affair with Gina every Thursday afternoon. Andy plots a heist of the jewelry of their parent in a Saturday morning without the use of guns, expecting to find an old employee working and without financial damage to his parents, since the insurance company would reimburse the loss. On Monday morning, we would raise the necessary money he needs to cover his embezzlement. He invites Hank to participate, since he is very well known in the mall where the jewelry is located and could be recognized. However, Hank yellows and invites the thief Bobby Lasorda (Brian F. O'Byrne) to steal the store, but things go wrong when their mother Nanette (Rosemary Harris) comes to work as the substitute for the clerk and Bobby brings a hidden gun. Nanette reacts and kills Bobby but she is also lethally shot. After the death of Nanette, their father Charles Hanson (Albert Finney) decides to investigate the robbery with tragic consequences.<br /><br />""Before the Devil Knows You're Dead"" is a comedy of errors, disclosing a good story. The originality and the difference are in the screenplay, with a non-linear narrative à la ""Pulp Fiction"". The eighty-three year-old Sidney Lumet has another great work and it is impressive the longevity of this director. Philip Seymour Hoffman is awesome in the role of a dysfunctional man with traumatic relationship with his father that feels the world falling apart mostly because of his insecure and clumsy brother. Marisa Tomei is still impressively gorgeous and sexy, showing a magnificent body. The violent conclusion shows that the world is indeed an evil place. My vote is seven.<br /><br />Title (Brazil): ""Antes Que o Diabo Saiba Que Você Está Morto"" (""Before the Devil Knows You're Dead"")",1 +10687,"This will not likely be voted best comedy of the year, a few too many coincidences and plot holes. However we are talking about a movie where a hit-man and a white bread salesman become buddies so a few vagaries shouldn't come as too much of a surprise. Brosnan is excellent in this role, gone is the wooden James Bond (a role he was wasted in). If he can maintain this kind of quality I hope he continues to make comedies. Greg Kinnear is also excellent as Brosnan's straight man. I've read a few negative comments in here about Hope Davis but I thought she was quite good as a mousy housewife with a dark side buried deep within. There are lots of good chuckles as Brosnan sleazes his way through and a few scenes where I nearly died laughing. My father (a consultant) nearly lost it when Julian describes himself as a ""facilitator"". Much like ""Grosse Pointe Blank"", another hit-man comedy, the humour can be very dark. If you are in to that be prepared to enjoy yourself.",1 +12599,"The plot of 'Edison' was decent, but one actor in particular ruined the entire film. Justin Timberlake ruined the film with every line he uttered during the movie. He is by far one of the worst actors I have ever seen, and should face the same fate as the entire F.R.A.T. squad. <br /><br />Whether it was an emotional scene, an action scene, or even a silent scene, Justin Timberlake managed to ruin it. <br /><br />Do not waste your time watching this film. Don't even bother downloading it, midget porn would be a much better choice.<br /><br />And Justin, if you're reading this, stick to music. Even though you're no good at that, you've done a wonderful job tricking people into thinking you can actually sing.",0 +8197,"Yes this a B- grade horror. But at least the producers, directors, and cast does not pretend this flick is manna from heaven. The plot is corny, a psychotic serial killer on his way to execution is splashed with genetic acid turning him into a snow man. The snowman a.k.a. Jack Frost then goes on a murdering rampage to find the small town sheriff that finally arrested him. With a limited budget the crew had to make do with limited special effects, most of the money appears to spent on the snowman's costume. Particullary difficult shots are managed by cartoons or pan away shots (shots where the camera moves away to disguise the details). <br /><br /> This is no kid's movie and should not be confused with Disney movie of the same title. If you do not let your children watch pg-13 movies alone than parents should not let their kids watch this movie. This movie has two claims to fame. 1. The beatiful Shannon Elizabeth (American Pie)did her first major movie role. The scene where Jack Frost attacks Shannon Elizabeth is worth watching a few times. 2. This movie has the worst snowman joke ever. The joke is so bad that the directors credit the joke teller in the credit list.",1 +18298,"I saw this when it was in the theater, it started out so strong I mean back in 1980 this was a bold movie and the special effects were excellent AT THE time. Now you would have to of been at least 30 or so in 1980 to really understand this point because studying film historically misses the mind set at the time the expectations, and other related psychological factors. Now as I said the movie was engaging suspenseful and very entertaining. It builds to an excellent climax then.... IT ends I mean the person that described it as having a water balloon break in your hand before throwing it, besides being a very poetic description. In my experience, it was just not strong enough. My wife and I were well... how can I say this? We were upset, I mean we paid money, invested the time to watch the movie which was excellent. ""We both felt we were robbed with an ending that convinced us both the production company must of run out of money and could not raise enough to finish it correctly. In fact my wife said it best, it did not end, IT JUST STOPPED!",0 +520,"I remember seeing promos for this show before it appeared back in 1993. I was 8 at the time, and now at the age of 22 it feels weird to have seen this cult show start and end and to look back on it.The 90's all of a sudden seem so far away, what a great decade. Anyway I used to watch MonsterVision all the time, as I am a huge fan of monster flicks and horror films. It was like the 90's version of Chiller Theater. If MST3K can get DVD's why not Joe Bob's show, at least MonsterVision was more interesting and informative. A lot of Joe Bob's comments and info on the films were just hilarious. Most of the movies shown on the show were B or C grade but it showed a lot of A house films as well like the Hammer films from England which are Top notch as well as many with the stop motion majesty of Ray Harryhausen. Many were oddball flicks that you wouldn't see anywhere else like the the Japanese Sci-Fi movies besides of course Godzilla which is familiar to almost everyone and independent movies like Metal Storm and Motel Hell. With the new Decade of film preservation and more independent minded directors, I think MonsterVision would be a good show for IFC to pick up, since they already have a hit with the IFC grind house show. I'm sure this show will be picked up again for nostalgia reasons some day, I guess will have to wait and see. Until then ""thats Great Television""!",1 +2592,"Joan Fontaine here is entirely convincing as an amoral beauty who is entirely incapable of feeling love for anyone but herself. Her husband (Richard Ney) has lost all his money through a combination of his foolhardiness and her extravagance, and they are reduced to living in a tiny room, with little or no prospects. They continue to put on the most amazing clothes and go out and socialize as if nothing were wrong. He is a charming, feckless, but wholly amiable fellow. However, Fontaine decides he has to go, as he has outlived his usefulness. So she resolves to poison him when she realizes he does not want to divorce her, so that she can move on. She has meanwhile had a lover (Patric Knowles) whom she decides to drop because he is not rich either. She meets the aging Herbert Marshall, who has a yacht with all the trimmings and more money than even Fontaine could figure out how to spend. She targets him and decides he will do nicely. He is all too eager to be eaten up by the young beauty. He certainly isn't very exciting, and has about as much sex appeal as yesterday's omelette. But Fontaine is one of those gals who has eyes only for money, and the man standing between her and it is transparent, so that she doesn't even notice or care what he looks like, she looks through him and sees what she really wants and goes for it. She proceeds to poison her husband, and dispatches him very neatly and satisfactorily, so that everything is going well. But as always happens in the movies, and sometimes even in life, some unexpected things begin to go wrong, and the tension rises appreciably, so that Fontaine begins to sweat. Fontaine is particularly good at looking wicked and terrified, and as the net begins to close in on her, her rising sense of desperation is palpable and has us on the edges of our seats. Hysteria and fear take over from cool calculation and cunning. But she finds a fall guy for her crime in the person of her cast off lover, who is an innocent victim of her scheme to set him up. He is condemned to death for murder, because the husband's death by poison came to light unexpectedly. But Sir Cedric Hardwicke, playing a grimly determined Scotland yard inspector, thinks there may be something amiss, and begins to doubt the story and suspect Fontaine. He closes in on her, and some of the scenes as this happens are inspired portrayals of the wildest panic. But will the innocent man's life be saved before he is executed? Will Fontaine worm her way out of this one? Will Herbert Marshall protect her to safeguard his infatuation? This film is expertly directed by Sam Wood, and the film is a really superb suspense thriller which I suppose qualifies very well for the description of a superior film noir.",1 +16271,"I've always thought that Cinderella II was the worst movie I've ever seen, (followed by Peter Pan 2, and some other sequels like The Lion King 2 and the Hunchback of Notre Dame 2). All these movies are made with the same idea; because the movie has no plot, they try to make up for that by filling it with jokes. I'm not saying the jokes are bad, but they make up most of the movie. The first time I saw the movie, I would have given it a 1/10. But now I think about it, most kids don't care how good the original movie was, they just care that the movie is entertaining. I still think the movie was a bad sequel, but that doesn't mean it's horrible. Now I think it deserves a 3/10.",0 +24204,"Considering that I felt like picking up a new Jet Li film to see some but kicking and brainless hand to hand fighting, I grabbed this title.<br /><br />Unfortunatly, this movie contains more gun battles (ala Chow Yun Fat but nowhere near as good), than Jet Li and company's acrobatic fighting. Thus it was a let down.<br /><br />The faucet fighting was interesting and even funny, considering this was something totaly unexpected in a Jet Li film for me, more on the line of say Jackie Chan.<br /><br />But alas I'd recommend Fist of Legend, Tai Chi Master, or even the Enforcer over this dissapointment.<br /><br />Rating 4 for martial arts Rating 3 for overall movie score",0 +3142,"I saw this film at the Toronto Film Festival, where it received a standing ovation! This film tells a story that to my knowledge has never been told before--namely about the Rosenstrasse (a street in Berlin)uprising of German gentile women who were married to Jews at the end of the Second World War. As such, it is a unique story, and what's more, is the only film about the Holocaust that I have ever seen that shows that there were GOOD Germans (the helping family in ""Anne Frank"" for instance was Dutch) who did NOT support the Nazis, and, in fact, had the fortitude to stand up against their own country's immorality and brutality during the Nazi regime, at the risk of their very lives. The acting is great across the board, the framing story in New York interesting and intricate, the direction from Von Trotta masterful in every scene, and the production values, including the gorgeous cinematography, outstanding. Of course the family in New York could be speaking German. Many immigrants in this country choose to speak in their native tongue with their family--a common occurrence. So that criticism is unwarranted. To say more would spoil the experience. The film is long, but I did not look at my watch once. I am hoping this film gets some distribution is North America, for not only is this film a masterpiece, but it can actually help heal any animosity people have towards the Germans because of their support of Hitler. If this film is playing in your area, I URGE YOU TO SEE IT! You will be glad you did!",1 +17918,"I'm never much for classic films. Movies like Patton, Going My Way, How Green was My Valley, The Godfather, Casablanca, Annie Hall, Gone with the Wind, Lawrence of Arabia, and Citizen Kane bore me. However, I would much rather watch any one of those films 3,469 times while being tied up on a chair than watch An American in Paris once in the most luxurious suite ever. If I did the latter, I'd probably be sleeping the entire time.<br /><br />The color art direction and the music didn't interest me, Gershwin or non-Gershwin. The dancing and the singing could help an insomniac fall to sleep. The dialogue doesn't match up to Singin' in the Rain. Basically, this movie is boring. The only other film that I fell asleep while watching was Butch Cassidy and the Sundance Kid. But you can't blame me. I only slept 5 minutes the night before.<br /><br />1 star/10 (Too bad we can't give zeroes.)",0 +9071,"Textbook example of an underestimated movie.<br /><br />Although one can watch this movie over and over again and laugh every single time and still see something new in it, it's still regarded as just another funny picture. And although the movie has inspired many and added it's quotes and images to the pyche of all it's viewers, Moon Over Parador still hasn't received the acclaim it should. Even the brilliant cast with Academy Award winner Richard Dreyfuss and Raul Julia, to mention one, is not able to change this perception.<br /><br />But after watching Raul Julia as Roberto Strausmann make Richard Dreyfus an offer he can't refuse in a meatlocker by reading him a good review of a part that he once played one can only come to one conclusion: this stuff is timeless! In fifty years we will have the proof.",1 +16944,"Based on the Korean legend, unknown creatures will return and devastate the planet. Reporter Ethan Kendrick is called in to investigate the matter, and he arrives at the conclusion that a girl, stricken with a mysterious illness, named Sarah is suppose to help him. The Imoogi makes its way to Los Angeles, wreaking havoc and destruction. With the entire city under arms, will Ethan and Sarah make it in time to save the people of Los Angeles? Written by Anonymous I think he should have included the following<br /><br />This is the worst movie i have ever seen the best actor in the whole thing was the CG dragon and overall it s u c k-ed i am p i s s-ed at not only with the people who made it but myself for watching save yourself the time read a book or something maybe a little Dr Seuss that should be more stimulating.<br /><br />no wonder the guy is anonymous sorry for the format this site has a lot of rules this is the only way i could get this out without adding more",0 +22990,"Well, I have to say, this movie was so bad that I would have walked out if i didn't have to review it for work. ANd the worst part is, I wanted to see it so badly that I drove all over the city, paid $10 parking two times because the newspaper listings were wrong. Vince Vaughn plays the guy he always does -- the only time I've seen him play someone else was in that movie with John Travolta. Anyways, the plot has potential -- it sounded great in the preview, but it is filled with totally ridiculous, predictable, weak plot turn points. And I was hoping that this would be one Christmas movie where Christmas DIDN""t have to be saved, and that Santa didn't need a replacdmetn, but nope. The only cool part was the sleigh rides, and the little bladck kid was the best character. I'm sure this movie would be great for young kids, but for adults it's so lame that it's chore to sit through.",0 +20585,"I grew up Baptist and I know the story this movie is trying to tell, although I no longer believe the story. I'll give the movie kudos for being as good as the average Lifetime Movie of the Week. Mildly interesting, mediocre acting, a bit slow, the script is predictable, the music is sappy, and it is a bit melodramatic. And all the people left behind have got to be the squeakiest clean non-Christians, ever. Not a single curse word from any of them. But I laughed out loud when the actor playing the man who runs the United Nations pronounced ""nuclear"" as ""nu-cu-ler,"" just like Bush. Is there some Christian code of honor that mandates that since Bush claims he, too, is called by God, that all Christians must cover up his ignorance by mispronouncing that word the same way he does? LOL! I really had a difficult time taking the movie seriously at all after that. After the ""nu-cu-ler"" incident, the movie began to feel like packaged, manipulative propaganda. I was looking for something bold. Actually, I was looking for something that might make me think, but I didn't find it here. If you're looking for mindless entertainment, stop here - it's good for killing a rainy afternoon. But if you're looking for intelligence, look elsewhere.",0 +14864,"In case half of this film's footage looks strangely familiar, it means you watch way too much of this gory Italian cult-crap! For you see, the notorious demigod Lucio Fulci did not only produce this movie, he also took the liberty of re-using the most sadistic killing sequences in his own (and more easily traceable) ""Cat in the Brain"". The opening scene already, in which a prostitute is brutally decapitated with an axe, features in Fulci's later film and so do another handful of killings and sleaze moments. Andrea Bianchi's ""Masssacre"" fails miserably as a giallo, since the search for the sadistic killer among a movie-crew shooting a horror movie is all but compelling and suspenseful, but it's still good entertainment if you're into cheap 'n shlocky horror trash. The incoherent script introduces a whole bunch of repugnant characters who're all potential maniacs, but none of the red herrings Biachi comes up with are plausible and you can point out the killer almost immediately. Whatever remains to enjoy are the truly misogynous make-up effects and the hilariously awful acting performances of the ensemble cast. Whenever there isn't any bloodshed on screen, like between the first and second murder, ""Massacre"" is a slow and almost intolerable with its inane dialogs and thoroughly unexciting photography. Thankfully in the second half, there are women getting impaled on fences and males being stabbed repeatedly with rusty spikes. The music is crap and the use of filming locations is very unimaginative. My advise would be to skip this puppy and go straight for the aforementioned ""Cat in the Brain"". That one features ALL the great moments of ""Massacre"", and then some.",0 +23935,"I wanted to like this movie. But it falls apart in the middle. the whole premise is a good one and ties up nicely, but the middle runs off tangent. The people I watched with were getting annoyed while it ran off course, and hoping it would end sooner than it did. Another person actually fell asleep during the middle segment! I found myself day dreaming elsewhere during the Schtick parts that had nothing to do with the plot. I bought it for the eye candy and it delivered that well, but it lacks Pixar's writing and soul. I think kids 8 and under will enjoy the ride at face vaule, while missing the plot. People old enough to follow a plot will find it wonders too far to return quickly and easily. Edit out most of the middle section, make it 50 minutes and it would be a solid flick. I wish I had better things to say. But I don't",0 +14447,"tries to be funny and fails miserably. The animation is just terrible, looks like a 2 year old threw it together in his sleep. Plot is dull and cliched. IF you have a young child, maybe rent it. but don't waste hard earned money to pay to see it.<br /><br />1/10",0 +17646,"This is one of the worst film adaptations of a musical ever made. The stage version of A Chorus Line is wonderful. This movie misses the mark in almost every way. Even the casting is baffling. Take Audrey Landers as Val. ""Dance 10 Looks 3"" is Val's song. Val's story is that she is a great dancer but a 3 in the looks department. Yes, she finds a solution, but ultimately she's a great dancer. What do the brilliant filmmakers do? They hire an actress who can't dance and is famous for looking great. Way to miss the boat.<br /><br />Then there's the choreography. I'm sure Michael Bennett was turning over in his grave. Why didn't they use his choreography? It really can't be improved upon.",0 +17683,"In the standard view, this is a purely awful movie. However, it rates a near perfect score on the unintentional comedy scale. I can think of few actual comedies that make me laugh as hard as I did watching this movie. Andy Griffith's ghost dressed in Native American garb dancing sends me into hysterics everytime. I wouldn't waste the gas or energy driving to the video store to rent it, but if you happen to be laying on the couch at 3 in the morning and it comes on TV, check it out.",0 +20712,"One night I was waiting for my friends to come back to the apt and ""Gymkata"" happened to be on; I watched way too much of it. It is indeed hilarious, and horrifying, really. Think about it this way--if in your job you had an idea for something this bad and went on to execute it in as terrible a fashion as this, how long exactly would you last? Not as long as this movie. It's a must-see, obviously.",0 +7592,"I cannot comment on this film without discussing its significance to me personally. As a child bad health prevented me from ever going to a cinema. I first encountered movies at the end of WWII through Roger Manvilles splendid Penguin book ""Film"", which brought me so much pleasure as my health began to improve that I wish I could buy another copy to re-read today. My introduction to many classics films such as The Battleship Potemkin, Drifters (Grierson's magnificent documentary), Metropolis, The Cabinet of Dr Caligari, and Ecstasy; came first through this book and later at my University Art-house cinema. Ecstasy had incurred the wrath of the Vatican, for condoning Eva's desertion of Emil, her subsequent divorce, and the brief swim she took in the buff, but Roger Manville ignored these trivial matters and discussed the film as a triumphant, outstandingly beautiful, visual paean to love - a view echoed by many IMDb users. A very lonely young man, when I saw it, I willingly concurred. No further opportunity to see Ecstasy arose until the introduction of home videos - by then it had become a treasured memory not to be disturbed. Quite recently I finally added Ecstasy to my home video collection and found this assessment very superficial. Ecstasy is much more of a parable on the continuity of human existence, against which individual lives are insignificant - perhaps a tribute to what Bernard Shaw in his aggressively agnostic writings used to term 'The Lifeforce'. <br /><br />Ecstasy portrays a young bride marrying a middle aged man whose sex urge is no longer strong. Disappointed, she returns home and divorces him. Soon after she experiences a strong mutual attraction to a young virile man she meets whilst out horse riding. She makes love for the first time and it is an overwhelming experience. Her former husband cannot face rejection and gives the young man a lift in his car intending that a passing train will kill them both on a level crossing. But the train stops in time and the apparently ill driver is taken to recuperate at a nearby hotel where he later commits suicide by shooting himself. After these exciting climacteric sequences, a bland, predictable and almost inevitable ending emphasises that whilst individual human lives exhibit both joy and tragedy, collectively life continues to carry us all forward in its stream and only through contributing to this stream can we be truly happy. This story is trite, the acting is no more than adequate; and normally such a film would have disappeared into the garbage, as did most of its contemporaries, long ago. What has given Ecstasy its classic status is exceptional cinematography, a continuous lyrical score and very careful loving direction, coupled with something fortuitous but in cinematographic terms very important - it appeared just after the introduction of sound and was probably planned as a silent film. It is sub-titled and its Director has exploited the impact of brief verbal sequences accompanying some sub-titles, and occasionally breaking into the score which so lovingly carries the film forward. This makes it not only almost unique but extremely rewarding to watch. The parable in the tale is stressed continuously but so subtly that only when reflecting after viewing does one become fully aware of it. For example, the names - Eva and Adam; the obsessive behavior of Emil on his wedding night which shows that triviata have become the most important thing in his life and predicate his eventual suicide since he has no adequate purpose to sustain him; the ongoing series of beautiful sequences showing erotic imagery (a bee pollinating a flower, a key entering a lock, a breaking necklace during Eva's virginal lovemaking sequence with Adam, etc.); and the final post-suicide sequences which could have been filmed in many different ways but serve to extol the importance to individuals of performing some type of work that contributes positively to Society, as well as of creating new life to sustain this society after we ourselves pass on. <br /><br />As a 1933 film I would rate this at 9 - even comparing it with contemporary works I would not reduce this below 8. For me the film will always remain a ""must see"", (although you may feel that my background remarks above indicate some bias in this judgment). Unfortunately in North America contemporary assessments of this film have been distorted by the extreme 1930's reaction to Hedy Kiesler's very brief and relatively unimportant nude scene which she had difficulty living down in Hollywood (some critics, who have clearly not seen such classic films as Hypocrites, Hula, Back to God's Country, Bird of Paradise or some of the early works of D.W. Griffiths and C.B. deMille, have even erroneously referred to this as the first appearance of a nude actress in a feature film). This scene was probably part of the original novel, and the film would have been very little different if the Director had chosen to rewrite it.<br /><br />Two further thoughts; firstly this is a Czech film, released there in 1933. Its final message about hard work generating positive benefits for society must have seemed very superficial to its viewers when a few years later their country became the first victim of Nazi oppression and was virtually destroyed for at least two generations (I do not remember these sequences being screened just after the war when I first saw this film - were they removed from the copy I saw then?). Secondly for me its main message today is that things of real beauty are often very transitory even though their memory may stay with one for a lifetime. We should all be thankful that today some of them can be captured on camera and viewed again at our convenience.",1 +20257,"I'm all for a ""bad"" horror movie but this was just a pile of dog sh!t! How anyone can call this movie cool or decent is beyond me. If you like rushed editing to cover the special effects, bad acting and a bad script then go for it! There was no suspense whatsoever and the gore factor was laughable because it was so fake. I'll take Hostel or Wolf Creek over this pile any day. My partner gave up after about 20 minutes, she knows a stinker when she sees one. I on the other hand stupidly sat through the whole movie just to wait and see if it got any better. No such luck! I haven't sen his other movie Torched and I doubt if I'll bother now.",0 +5598,"These days Spielberg's ""The Color Purple"" is mostly remembered for being nominated for eleven Oscars and winning zilch. What's even more alarming is that Spielberg himself wasn't even nominated for Best Director. Needless to say, the film-makers deserved more acclaim than they were accorded.<br /><br />The story concerns the trials and tribulations of Celie Johnson (Whoopi Goldberg), an African-American woman dominated at first by her incestuous father and then by her abusive husband. The film spans several years and focuses mainly on Celie's relationships with the women around her. It's told from a decidedly female perspective but you needn't fear that it's a saccharine 'chick flick'.<br /><br />The story is an interesting one, livened with humour at times although the central character's struggles are paramount. Some may not appreciate the change in tone towards the film's end but I didn't mind even though similar content in a lesser film would likely have me rolling my eyes.<br /><br />The film received three Oscar nominations for acting: Whoopi Goldberg (Best Actress), Oprah Winfrey (Best Supporting Actress) and Margaret Avery (Best Supporting Actress). I think that Goldberg and Winfrey were certainly deserving and Danny Glover was unaccountably stiffed.<br /><br />As already mentioned, Spielberg didn't receive a Best Director nomination for his efforts. Such an omission beggars belief, since Spielberg's direction here is top-notch. I'm not especially crazy about Quincy Jones's score but it's not below average by any means.<br /><br />In the end, the story is a satisfying one, well-told by a master film-maker working from Pulitzer Prize-winning material. Give it a try and you'll probably be as baffled as I am about how it could be so poorly treated on Oscar night.",1 +17177,"This is, without a doubt, the single worst movie ever created. There's no arguing here. This is it. End of story. The story is juvenile and sub-moronic, looking like it was created by a three-year-old fascinated with dinosaurs. The entire concept is just plain dumb. It's inconceivable how someone could possibly come up with something so stupid and think it was entertaining. The jokes are also completely lame. If you haven't seen this movie yet, consider yourself lucky. If your morbidly curious as to how bad this movie is, please don't make me describe it. Words can't express how completely awful this movie is. This isn't just bad as in being a bad movie. Even those have cohesion, if not entertainment value. This. . . This is. . . Ugh! Think of the worst story ever told and multiply its badness level by 5,000, and you still haven't come close to how awful this movie is. After giving Pokemon the Movie one point, giving this movie one point seems like nothing short of charity. That's how bad it is. Did the producers and directors even take film classes? Because this is a perfect example of how not to make a film. It looks like some amateur high on paint thinner made this film. If you rented this, please take it back and ask for a refund. And don't even think about renting it again.",0 +438,"A fantastic Arabian adventure. A former king, Ahmad, and his best friend, the thief Abu (played by Sabu of Black Narcissus) search for Ahmad's love interest, who has been stolen by the new king, Jaffar (Conrad Veidt). There's hardly a down moment here. It's always inventing new adventures for the heroes. Personally, I found Ahmad and his princess a little boring (there's no need to ask why John Justin, who plays Ahmad, is listed fourth in the credits). Conrad Veidt, always a fun actor, makes a great villain, and Sabu is a lot of fun as the prince of thieves, who at one point finds a genie in a bottle. I also really loved Miles Malleson as the Sultan of Basra, the father of the princess. He collects amazing toys from around the world. Jaffar bribes him for his daughter's hand with a mechanical flying horse. This probably would count as one of the great children's films of all time, but the special effects are horribly dated nowadays. Kids will certainly deride the superimposed images when Abu and the genie are on screen together. And the scene with the giant spider looks especially awful. Although most of the younger generation probably thinks that King Kong looks bad at this point in time, Willis O'Brien's stop-motion animation is a thousand times better than a puppet on a string that doesn't even look remotely like a spider. 8/10.",1 +10130,"Madhur Bhandarkar has given it all raw. But the best part is he hasn't forgotten to give the ingredients. It has come short and crisp to the viewer and it is the audience to make the choice now. Page 3 is a revelation of the naked truth irrespective of the crudeness attached to it.<br /><br />Madhavi (Konkan Sharma) is a journalist and enjoys her work. A simple and peaceful life adores her with a caring boyfriend and a nice roommate Pearl. She covers the Page 3 (Celebrity Page) of Nation Today, where she has a very supportive editor Deepak Suri (Boman Irani.) But life takes turn for her as she hits the first bump and takes herself away from Page 3 and goes into Crime bit. Omigosh! a whole new world was waiting for her there. She is shocked, excited, stunned with the revelation. Her reaction has resulted in losing the job. At the end she is back to Page 3. Now when she meets any celebrity in a party, she knows the actual looks of each, hidden under the illusive face.<br /><br />The movie has a message and it is crude. The audience needs to get it in their own color. The theme and the screenplay was fantastic. There are some very good thoughts applied to prepare the audiences. Like the foreplay-club is shown before the pedophiliac exhibition, the short suspense before gay-actions in bathroom. The dialogs are strong and the actors are really good at delivering it. Charu Mohanty's 2 words speaks volumes and he is very successful in uttering those two words with such ingenuity, it leaves an impact. The set selections could have been better. The songs don't stand anywhere; but they were needed in the background. Atul Kulkarni has a small role with high-impact. There were a few flaws visible. Atul Kulkarni explaining Konkan Sharma that honesty should be tagged along with intelligence. There could have been a better dialog as this sounds like a preach. The meeting between Thapar and his daughter doesn't call for acting. That scene looks very unprofessional.<br /><br />Overall it is a must-watch movie with selective options before the pedophilia incident. That may spoil your mood.",1 +20325,"the Germans all stand out in the open and get mowed down with a machine gun. the Good guys never die, unless its for dramatic purposes. the ""plot"" has so many holes its laughable. (Where did the German soldiers go once they rolled the fuel tank towards the train? Erik Estrada? Please!) And the whole idea, hijacking a train? How moronic is that! The Germans KNOW where you are going to go, its not like you can leave the track and drive away! What a waste. I would rather bonk myself on the head with a ball peen hammer 10 times then have to sit through that again. I mean, seriously, it FELT like it was made in the 60s, but it was produced in 88!! 1988!! the A-Team is more believable than this horrid excuse for a movie. Only watch it if you need a good laugh. This movie is to Tele Sevalas what Green Beret was to John Wayne.",0 +15419,"It's like a bad 80s TV show got loose and tried to become a soft-core porn movie. Oh my god was it bad. The plots of each character had little relevance. The plot itself wasn't anything to speak of. Something about a stalker, I guess. In the end he shoots himself? It's not really clear, but somehow there's a volleyball game involved. And the main character (Randy) sleeps around a lot. The only reason my friends rented this movie was because Casper Van Dien was in it, and they ended up wanting to fast forward to the scenes with him in it, which were barely watchable at that. Thank god I didn't spend any money on it, but I want that hour of my life back.",0 +17098,"There was nothing of value in the original movie, this one was even lamer. The fact that I even found it to rent was absolutely amazing. Anyone connected to this film has to be high on something! So what was the story line? What was with the girl? Was the viewer supposed to get the story line in the first four minutes of the film. Sadly, I tried several times to watch this. I even borrowed a kid from someone to get some feedback. Kid said it was stupid, and he was four years old. I find that possibly some credit could go to the filming director, as possibly some of the shots made the movie more than a B film. That might be pushing it. I did love the theme song. Good thing it was only a dollar, it was worth it. I suppose you might enjoy the film if you were high as the cast and crew would have to be. Is pot legal in France?",0 +13905,"There have been some low moments in my life, when I have been bewildered and depressed. Sitting through Rancid Aluminium was one of these.<br /><br />The warning signs were there. No premiere (even the stars didn't want to attend) and no reviews in magazines. The only reason I sat through the film was in the hope that I might catch up on some sleep.<br /><br />Nothing in the film was explained. The narration was idiotic. I cheered at one point when the lead of the film appeared to have been shot, then to my growing despair, it was revealed that he hadn't really been shot dampening my joy. I sincerely hope all involved in the film are hanged for this atrocity. <br /><br />There were some positive aspects, mainly unintentional moments of humour. For example, the scene in which the main character, for some unknown reason feels the need to relieve himself manually in a toilet cubicle, while telling the person in the next cubicle to put his fingers in his ears.<br /><br />My words cannot explain the anger I feel, so I shall conclude thus.<br /><br />Rancid Aluminium: for sadists, wastrels, and regressives only who want to torture themselves.",0 +22401,"This should be my kind of movie. Even if it sucked, it still should have been right up my alley; hell, I like ""Congo,"" and ""Allan Quatermaine"" movies. I have a soft spot in my heart for silly alien/demon/adventure movies. Let's go over why I decided to watch this in the first place.<br /><br />1. Horror/Sci-fi almost always intrigues me 2. I'm a big fan of archaeology, and this movie does involve a rare treasure. 3. Super-natural enemies with quality FX. 4. Christian Slater and Dorf I generally enjoy. 5. Tara Reid is hot.<br /><br />So this movie had potential, at least in the cheese-horror section of the video store, but boy did it suck ass. The only redeeming aspects are Slater and Dorf, and not everyone finds them as entertaining as I do...I mean, let's face it, both are melodramatic. But now on to some of the many faults.<br /><br />Tara Reid. Even though the movie as a whole is worse, Reid's performance is truly awful. We're not just talking bad, I'm talking about nominating Tara Reid for worst performance of the year. I don't know if she is capable of acting, but playing the museum curator is simply out of her league...completely. Watching her try to carry the roll of educated scientist wasn't much different than what you get watching the setup in bad porn. I mean this isn't just bad, it is laughably bad. Oh, and for those of you curious, she doesn't get naked, only down to a bra in a silly, totally unnecessary love scene.<br /><br />Even with Reid's performance, perhaps the movie could have worked, but the plot is what dominates, and the plot seems written by a 10 year old. I hadn't realized this was a video game adaptation until AFTER watching the DVD, otherwise I would have appreciated the stupidity in real-time. <br /><br />The storyline jumps back and forth from Slater's childhood at an orphanage where he gets flashbacks of something terrible that happened, he has amnesia, of course. In his adult life Slater was recruited by some Unit 713, a paranormal military force that apparently hunts evil or something. Slater had to leave because he was too rebellious, I guess, you never really know unless it was in one of those voice-overs I zoned out during. The movie starts with Slater hunting artifacts, obtaining his latest piece after some dealings with a ""Chilean mercenary force specializing in selling rare antiquities."" I may have the exact quote wrong, but you get the idea.<br /><br />There is an evil doctor that wants to unleash some hellions on earth (no reason given), experiments on children, super demon/alien-human hybrids, ""photonic"" bullets (the demon things can't stand sunlight) and, of course, Slater and Dorf to try to save everyone.<br /><br />Jesus, I can't even being to wade through the clichéd elements. The script badly needed reworking to narrow the focus and provide SOME depth. I mean, why is this evil scientist so damn evil? Oh right, humans are doomed and he is just trying to save the human race. I guess he's infected? How did that happen? Oh right he has one of the evil demon things in a cage and draws its blood to shoot into himself. How the hell did that happen? Why and where did he get the super slugs (oh yes, they use the old sci-fi stand by of parasitic aliens/demons which ""fuse"" with the spine of their host)Of course, Slater is, like Blade, half super-slug powered, but his slug ""didn't fully fuse due to an electrical shock,"" thank god. Oh, and the people with these ""fused"" spines, have no idea they're half-alien/demon and act as good members of the community until some secret signal is given whence they turn killer zombies. Yeah we get zombies.<br /><br />So lots of crap that could be entertaining, but none of it is.<br /><br />Also, the ending is completely stupid as everything turns out to be not that big of a deal to fix in the first place...at least nothing a little dynamite can't handle.<br /><br />Not the very worst thing you'll see, but a truly bad movie.",0 +14985,"Original Claymation Rudolph: Pretty good. Original Frosty cartoon: Needs a little work, but could be worse. But Frosty and Rudolph together on the Fourth of July? C'mon! Give me a BREAK!!! This was one movie that shouldn't have been made. It was bad. It didn't really go for any holiday in particular, except July 4. That made it especially bad since Frosty and Rudolph are usually associated with the Christmas season. And any movie can be ruined by too much singing. The frequent songs made this movie seem a lot longer than it really was. The movie tried mixing two familiar Chirstmastime characters with an American traditional holiday (which almost seems to ""limit"" it to America), too many pointless songs, and a lousy plotline. The result? A bad movie that can't really be watched at any time of year. I would suggest you forgo this movie even if you like Frosty and Rudolph.",0 +20524,"This movie is another fine example of what Jerry Bruckheimer, since about 1997, seems to be best at--hyping up a movie a year before its release and not coming through with a quality movie. I'm no film critic, but this movie was as predictable as they come. Every attempt at a joke, every attempt at a touching moment, and the pitiful attempt at a love story, was exactly what I was predicting in my mind. Do yourself a favor and save your money on this one.",0 +10192,"I'm not kidding about that summary and vote! The video distributors have packaged this as just another typical '80s werewolf movie, but it is in fact the greatest parody of the horror genre that you can imagine, having done for the horror movie what ""Blazing Saddles"" did for the western. I have seen plenty of comedies - good, bad, stupid, weird, etc. (usually walking away unimpressed), and I think that comedy must be the most difficult genre for filmmakers and actors to work in - it takes just the right kind of touch to make things successful, and part of that is having good ideas. ""Full Moon High"" is bulging with good ideas - so many, in fact, that it can easily put the Zucker/Abrams team of ""Airplane"" and ""Naked Gun"" to shame. One of the best of these is the very presence of Ed McMahon in a starring role as a John Birch-style right-wing crackpot. The jokes, non-sequiturs, wisecracks and word-play are literally non-stop and everything, including the kitchen sink, has been thrown in. The ironic tone is very similar to that of ""Back to the Future."" <br /><br />Some people (i.e. almost every reviewer here) must have been turned off by the spirit of anarchy here, but I almost died of laughter, and this is one of those movies in which you never know what kind of insane situation will transpire next. Since B-movie extraordinaire Larry Cohen had not made a straight comedy before this, one gets the sense that he was making up for lost time by including any joke he or his collaborators could think of. If Mel Brooks had made this, the critics would have labelled it a comic masterpiece, but because it was made by Cohen, it has been dismissed as schlock. Critical reviews have called this movie too ""silly."" SILLY? What is a comedy supposed to be - serious?! Anyway, I laughed out loud more for this movie than any other I can think of. Cohen makes fun of everyone - himself included, with plenty of references to his usual brand of low-rent film-making; he and the actors must have had a complete blast making this.<br /><br />The humor is very Mel Brooks-ish, and anyone who loves Jewish humor or watches a lot of B-movies (especially horror) will love this. Trust me: the movie isn't too hard to find, and as long as you accept it for what it is - a roller-coaster of belly laughs with no pretense of social value whatsoever - then you'll truly enjoy it!!<br /><br />One sidenote: this movie should somehow go down in history as the one thing Bob Saget ever starred in (albeit briefly) that was actually funny.",1 +6650,"This movie is rich with action and gore. The story line is strong enough to support the action sequences. The English version needs a tad bit of help in the dubbing department but it was still enjoyable. This movie ranks among my personal favorites next to ""Hard Boiled"" ...",1 +11505,"Women have never looked so attractive and pathetic as in Salazar's film Piedras. Although editor's cut here and there might help the film, it is exciting and enjoyable with an intense mark from Pedro Almodovar's latest films. 5 different women are coping with their male partners and families. Beginning with several different stories bound to meet as the plot goes on, Salazar portraits his women characters in the same neurotic and border-line behaviour familiar to Almodovar. A kleptomaniac high society lady with a fattish to smaller shoes, a burlesque house madam taking care of her disabled daughter, a drug addict dancer obsessed with her former boyfriend and a taxi-driver taking care of her late husband's disturbed kids, all roaming the streets of Madrid in well designed scenes. Using some of Almodovar's familiar actresses, the director succeeds in it's first film to give depth to all the characters sharing the film, and to create genuine sympathy with each of them. The women controls the plot line, and the men are bound to be left with each other, eventually... Surprisingly good for a first film, and worth the time in any standard. It is noticeable that Salazar hesitated in some needed guidelines to the actresses, but an impressible act is shown anyway on the screen, especially by Monica Cervera, which played in his former short film.<br /><br />A must to all Almodovar's fans, and enjoyable to all.",1 +24892,"The movie 'Gung Ho!': The Story of Carlson's Makin Island Raiders was made in 1943 with a view to go up the moral of American people at the duration of second world war. It shows with the better way that the cinema can constitute body of propaganda. The value of this film is only collection and no artistic. In a film of propaganda it is useless to judge direction and actors. Watch that movie if you are interested to learn how propaganda functions in the movies or if you are a big fun of Robert Mitchum who has a small role in the film. If you want to see a film for the second world war, they exist much better and objective. I rated it 4/10.",0 +3635,"I imagine Victorian literature slowly sinking into the mire of the increasingly distant past, pulled down by the weight of its under-skirts. Along comes television: at its best, it has a redemptive power, and with dramatisations like those the BBC produce so finely, Victorian literature gets a new stab at life. The religious themes, the moral overtones, may be increasingly ill at ease in a world no longer easily shocked, and acquainted with cohabitation, affairs and domestic violence. But those old, well-told stories have enduring power, and this is one's a hidden gem.<br /><br />It's hard to gauge today just how forceful, feminist and extraordinary Ann Bronte's masterpiece, ""The Tenant of Wildfell Hall"", actually was. Emerging from the primeval slime of restrictive corsets bodily, mental, societal her heroine, Helen Huntingdon, escapes a miserable marriage, flees brutality and alcoholism, braves not only her abusive husband's fury, but society's pinched intolerance and malicious gossip, to wreak change in her life. She pays a price; but retains her self-respect; she falls in love along the way; she emerges battered but victorious, and strong. I just love watching women like these on screen.<br /><br />The actors are superb the best Brits have to offer. The love story is beautifully handled, with real passion and feeling by well-matched actors. Tara Fitzgerald inhabits every aspect of the complicated heroine, and as has been said here by other reviewers, no less sharply defined and beautiful a face could survive that petrifying hairstyle. Toby Stephens, striking sparks off her, contributes just the right combination of headstrong, handsome youth and passionate, yearning vulnerability. Rupert Graves (one of my favourite British actors ever) enjoys himself as the charismatic villain (so much so that you're almost with him at the end. No one's perfect). The supporting cast ably create a world into which you sink without feeling that coarse compromises have been made to modern tastes, and without having felt preached to. Another BBC classic, highly recommended: this is how romantic literature should be dramatised.",1 +12952,"I found Tremors 4:The Legend Begins, to be dull and boring.All the action scenes were stupid.The so called ""GRABOIDS"" are reduced to the size of a modern day house cat, if not smaller.The acting was horrendous, and this film was just an unnecessary movie in the Tremor saga, because even though it tells the story of how the graboids were formed, the story is so dumb and useless.Also, if you want to tell a story WAY back in time, make sure you use the SAME ACTOR(Michael Gross), to be someone in the past, when he's someone in the present in the other Tremor movies.Geez...If you haven't seen this film, don't waste your time.Stick to Tremors, 1, 2, and 3, for a good time.This film however, make sure you're remote is sitting right next to you with the STOP button working for a quick retreat away from this nonsense.",0 +18397,"From the start, you know how this movie will end. It's so full of clichés your typical NRA member will not even like this movie. I give it 2 out of 10, only because of the acting of William Benton. I can't believe people voted 6+ for this movie. It's so biased towards a 'certain point of view' (once a thief...). People aren't born bad. Neither are they born good. They are born with a clean slate. It's society, parents and education what makes them who they are. And if they take the wrong turn, somewhere down the line, it certainly isn't going to be the American penal system that gets them back on track! Anyway, avoid this movie like the plague. I bet you have better things to do with your time than waste it on this piece of crap.<br /><br />",0 +8285,"I just saw this film @ TIFF (Toronto International Film Festival). Fans of Hal Hartley will not be disappointed!! And if you are not familiar with this director's oeuvre ... doesn't matter. This film can definitely stand all on its own. I have to go the second screening ... it was amazing I need to see it again -- and fast!! <br /><br />This film is very funny. It's dialogue is very smart, and the performance of Parker Posey is outstanding as she stars in the title role of Fay Grim. Fay Grim is the latest feature revisiting the world and characters introduced in the film Henry Fool (2000). Visually, the most salient stylistic feature employs the habitual use of the canted (or dutch) angle, which can be often seen in past Hartley works appearing in various shorts, available in the Possible Films: short works by Hal Hartley 1994-2004 collection, and in The Girl from Monday (2005).<br /><br />I viewed this film most aptly on Sept 11th. Textually, Fay Grim's adventure in this story is backdropped against the changed world after September 11, 2001. Without going into major spoilers, I view this work, and story-world as a bravely political and original portrait of geo-politics that is rarely, if ever, foregrounded in mainstream fictional cinema post-911 heretofore (cf. Syrianna: of side note - Mark Cuban Exec. Prod in both these films ... most interesting, to say the least). <br /><br />Lastly, for those closely attached to the characters of Henry Fool, Simone, Fay and Henry this film is hilariously self-conscious and self-referential. That being said, the character of Fay Grimm starts off in the film, exactly where she was when Henry Fool ended, but by the end of the film ... Fay's knowledge and experience has total changed and expanded over the course of the narrative. What can be in store for the future of Fay and the Fool family ... ?? I can't wait for the third part in this story!",1 +8827,"when i first started watching these it became one of my favourite shows. Melissa Joan hart is very funny and talented so were the aunts and the other characters and the star of of the show Salem the cat, he was immensely funny. the first few season in my opinion were the best where Sabrina was a teenager in high school adapting to witch life. they were most funniest, most entertaining and most um... good. i'm not a fan of when they started introducing Brad and Dreamer cause i quite liked Valerie, but they were okay the problem was they were only in it for one season. if you're gonna have new people at least keep them. i didn't like Josh he was a tw*t, i preferred Harvey but then he disappeared. and they got rid of Libby! it would have been awesome if thy had been bickering in theses seven years. and Mr. craft as well, if him and Zelda got married that would have been gold! then Sabrina moves out of her aunts house and into Roxie/Miles/Morgan's house. i didn't like theses people either, it didn't really seem they liked Sabrina. Sabrina seemed to lose her charm and stuff and the aunts seem to be shunned out of her life and into they're own stupid story lines. i kind of stopped watching it for a while and the old re-runs were back and i was like whoo-hoo! LOL. i must say the last few seasons were absolutely terrible.they got rid of the aunts which sucked cause they were a big part of the show. then suddenly she lets those two freeloaders move in to the nice house when they treated he like dirt. and now she's working at some magazine shop so they're putting loads celebrity guest stars into the show, if they're in every episode it kind of ruins it. the programme just really went downhill and lost its luster. i saw the last episode. it had the aunts in it (Zelda was reduced to a candle) and she's about to get married but she runs off with Harvey the end. i would have liked to know what happened after. well thats my review and the only thing i can say is the only thing that stayed it's appealing self through the seven years was Salem the cat.",1 +8227,"""Bedknobs and Broomsticks"" is a magical adventure film with a certain charm, despite not being one of the best Disney works. It has a generally good story, nice songs, great characters, good actors, magical and delightful special effects, good settings and lovely landscapes of England.<br /><br />It also combines very well live-action and animation. The animation itself is, of course, pretty good. The animation resembles very much that of the 1973 animated film ""Robin Hood"" and the same can be said about the animated characters: there are plenty of wild animals such as bears, elephants, hippos, lions, crocodiles and others like in ""Robin Hood"". Besides, the King (a lion) seems to be a mix of Prince John and King Richard, not to mention that the bear does look like Little John.<br /><br />This movie is often compared to ""Mary Poppins"" with a reason. Both combine live-action and animation with a similar artwork. Both have similar settings in London. Both have their own magic and a magical woman. The kids (Carrie, Charlie and cute little Paul) are a bit like the Banks children. Both movies were directed by Robert Stevenson and both cast David Tomlinson. However, instead of a very serious man like George Banks, David Tomlinson plays a merrier and magical man - Professor Emelius Browne. With its magic, this movie has also some slight but significant similarities to Harry Potter's stories.<br /><br />The majority of the songs are good. ""The Age of Not Believing"" and ""The Beautiful Briny Sea"" are the very best. ""Portobello Road"" is nice too.<br /><br />David Tomlinson is great in this film once again. Angela Lansbury is great as Miss Price and the 3 kid actors are all fine too: Cindy O'Callaghan as Carrie, Ian Weighill as Charlie (a boy in «the age of not believing») and Roy Snart as the youngest brother Paul.<br /><br />I like the black cat. It's pretty cool. It looks a bit like Salem, the black cat from the TV series ""Sabrina, the teenage witch"". I find cute whenever one of the movie's characters is transformed into a white rabbit. Rabbits are really cute, fluffy and adorable animals. I just love them! Even funnier is whenever Professor Emelius Browne is transformed into a white rabbit because, when he's transformed in human again, he shakes his nose like a rabbit. It's really hilarious, combined with his comical figure and that mustache.<br /><br />Overall, this is an okay movie, but its ending is quite bad. The first minutes of the movie are nothing special, but then it improves a lot. The ending, however, is weak. That's my major criticism about it, in great part because the animated knights thing is a little too much for me and also due to the war feeling.",1 +23382,"I couldn't make sense of this film much of the time, and neither could anyone else, based on other reviews. The opening scene of this film has virtually nothing to do with the rest of the story. In it, a photojournalist with a big mustache cancels his vacation to get away from his girlfriend. He is assigned to photograph a mountain range. It's rumored to be haunted, but I couldn't tell whether he heard that from his boss or later in the film. On his way, he meets a beautiful writer (Patty Shepard) and convinces her to join him on his working trip. Throughout the film, there is this terrible music score, mostly consisting of noisy singing that makes you want to scream ""SHUT UP ALREADY!!!"" What really will gall a person is that the film always seems like it's about to become good, though it never does. There is beautiful mountain scenery and some genuinely creepy atmosphere. The inn and the silent, abandoned old buildings scattered on the mountain are rather ominous. The foggy nights look real, not like someone put an artificial fog machine on the set. And the idea, while not original, had potential. But it never does improve, at least not enough to be worthwhile. Here's how it goes, more or less. They stop at this inn run by a weird innkeeper (you expect him to be named Igor) with a hearing problem. There is a scene where the writer thinks a peeping tom is in her window, but the scene is so dark, I had no idea what was going on. Whether this was poor lighting or a poor film transfer is unknown to me. In any event, we never find out know what happened. There is a scene where she wanders off during the night. Whether she is sleepwalking or mesmerized by the witches of the title is never explained. Another scene which is never explained is when their car is stolen, then found again, with nothing stolen. They wind up in this apparently abandoned mountain village whose sole inhabitant is this seemingly kindly old woman. There are other things, including a chained wild man in a cave who is never explained, an attempt to sacrifice the writer in some way (will they kill her or brainwash her into joining them?), the witches themselves, a bunch of brunette women in white robes who don't show up until the last 15 minutes of the film and whose practices and beliefs are never explained. Even the closing scene doesn't make any sense. When all is said and done, most people will be saying, ""Huh?""",0 +12535,"I just saw the movie in theater. The movie has very few good points to talk about. Kareena's beauty and a couple of songs may be. Thats it. The movie is a complete disappointment in all areas. Anyone associated with the movie will be disappointed, even Mumbai Indians too (just now Chennai has made it to semi-final). <br /><br />But the worst I feel about the movie is the action scenes. Now days Bollywood is trying to copy action scenes from Hollywood. But they forget that Hollywood directors takes a lot effect to make it look like real. But unfortunately Bollywood directors do not have that much of time. They spend their time on songs and publicity of the movie. Now such too stupid action scenes may work in South as the audience just pay to watch their favorite actor killing bunch of people. But in Bollywood this is certainly not going to work. All the action scenes I wish I could have forwarded. At the end even some Chinese people appear from nowhere to beat Akshay Kumar. This is height of stupidity. Audience is not paying to watch such stupidity. I think Bollywood now should forget about the action movies. They cant make it. The last good action I have seen was from ""Ghatak"" and ""Khiladiyon ka Khialdi"". The current scene in Bollywood is really sad for action movie fans like me. Does these people see their movie after completion? Can't they figure out that the slow motion action (which is done using ropes) is too unrealistic and childish? Better not to have action scenes if you cant handle it. I just want to go back to Amitabh's era where movie like Zanjeer and Deewar were having thrilling action scenes. The sound effect was not very effective in those days, but visually it is much better than current era scenes. <br /><br />This movie now should open the eyes of the Bollywood movie directors. Please don't make any more action movies, until you acquire the art of making it realistic.",0 +24444,"This movie is really bad. The acting is plain awful except Michael Ironside. I don't get the story. Richard Grieco is the only survivor after a fight between two Mc-gangs. He comes to a town and suddenly he is choosened to fight against the bad people who wants indian-land. At the cover it said he was a indian himself that returned too his home-town, I didn't hear that in the movie, if so it wasn't clear.<br /><br />Richard Grieco was one hell of a bad actor. Stiff and ugly. He said his lines like it too. And we wouldn't talk about Sean Young, she hasn' been any of my favourite actors but in this movie she plays a indian women who falls in love with Bolt (Grieco). She is awful.<br /><br />When I rented it I choosed between this and Subterfuge with Amanda Pays. I choosed this one because of Michael Ironside was in the cast. Maybe I should have taken Subterfuge.<br /><br />Don't see this unless you think Richard Grieco looks tough on a motorbike with sunglasses.<br /><br />I will soon uptade the cast-list because I have it at home. I wrote it down after I seen the movie.",0 +23283,"I began watching this movie with my girl-friend. And after 5 minutes I was alone.<br /><br />I succeed to stay until the end. It has been a painful experience.<br /><br />I liked jean hugues anglade, but I think that he needed to eat, as us, and thus he accepted to play in this movie. <br /><br />There are only 5 characters, and the rest could be called 'art' or something that I couldn't express, but that I didn't understand at all.<br /><br />The only worst movie I saw was crash, but I'm pretty sure now that I have enough experience to watch it successfully again.<br /><br />good luck!! ;o)",0 +681,"This is a long lost horror gem starring Sydney Lassick (""Carrie"" and others) and Barbara Bach. It is sometimes difficult to locate a copy of this film but it's worth it. This film is creepy yet cheesy at the same time. It seems that 3 young newswomen (Karen, Vicky, and Jennifer) travel to the small city of Solvang, California to cover a festival when a mix-up occurs involving their hotel room and they seek refuge at the home of Earnest Keller (Lassick) and his strange wife Virginia. Vickie stays behind, feeling ill, as the other 2 are off to film their story. She is soon murdered at the house, in a VERY cheesy way by some unknown force hiding in the ventilation system (she is decapitated by the closing cover of the vent as it comes crashing down on her while she is being tugged through and into the basement). Soon Karen returns and she is murdered in an even more brutal fashion by having her face rammed through the vent cover. Jennifer is fighting with her (ex?)lover in a rather boring sub plot and when she returns home, her hosts (whom by now we have discovered are brother and sister and that whatever it is that is in the basement is their son) devise a plot to try to murder her as well. Virgina does not totally agree with Earnest's plan to murder Jennifer but she is tricked into going into the basement where she meets Junior. Here the film turns almost comic as Junior (portrayed hysterically by Stephen Furst) is a deformed, mentally deficient, manchild whose actions and motions will cause a few chuckles even though it's supposed to be scary. This is where the pace of the film picks up and the ending is well done. The actors/actresses do a terrific job with the material especially Lassick, Furst, and Bach and although it's not the most horrifying film ever made it is highly entertaining!",1 +24319,"According to IMDb, as well as to every other website that holds a review; this ""thing"" doesn't have a director. Well, that would surely explain a lot! Just a bunch of people that gathered together to shoot some perverted porn sequences and throw in an ultra-thin storyline about devil-worshiping and women sacrifices inside the walls of a secluded sanitarium. ""Hardgore"" is a prime example of totally demented 70's smut, as it's really made with a minimum of production values and scripting inspiration. Horror movies about satanic cults were hugely popular during the early 70's and pornography as well, so why not combine the two? Here we have a simplistic story about a young nymphomaniac girl who's committed to a mental asylum, and from the first night already, she's drawn into a network of drugs, psychedelic orgies, rape, torture and dildo-action. Really, a LOT of dildo-action. The friendly lesbian nurse tries to warn her, but she has her throat slit even the same night. The horror aspects are truly poorly elaborated, going from laughably un-scary Satan masks to virulent severed penises attacks. The photography and acting performances are almost intolerably amateurish, but what do you expect from a film that features footage of sperm-firing dildos and talking amputated male reproduction organs? Leading lady Justina Lynn is a rather good looking girl with a ravishing body, but most of her co-stars (male & female) are hideous and excessively haired sleaze balls.",0 +16171,"In Cold Blood was one of several 60s films that created a new vision of violence in the Hollywood film industry. Capote coined the phrase ""nonfiction novel"" to describe the book on which this film is based, and the spirit of that form was carried over into the film script, which he co-wrote. Despite the fact that we were well into the era of color film, Richard Brooks elected to present this film in black and white to underscore both the starkness of the landscape and the bleakness of the story. This is the first problem with the TV remake --color changes the tone of the story. In addition, the confinement of shooting a film for TV makes reduces the options of how the shots are framed and focused. As a result, we lose the dramatic clash which makes the second part of the original film (police interviews, trial, imprisonment, and execution) so claustrophobic. On the small screen, it's just another version of Law and Order spin-offs. <br /><br />Hollywood's search for scripts continuously takes it back to movies that were successful in another age. Usually, that's a mistake, and this is no exception.<br /><br />All of the actors are competent. The script is OK. The directing doesn't get in the way. It's just that the movie doesn't work as well as the original precision instrument. It doesn't hook the viewer into the ambivalence toward Smith and Hickock that the original film provokes. At the end of the TV version, we are left with the feeling: ""Ho hum, who cares?""<br /><br />See the original first, on as large a screen as you can, then watch the TV version simply to understand why the first one was such an important film in 1967.<br /><br />Wouldn't hurt to also go on line and read a bit about Capote and the original book. It will help you to understand the extraordinary effort he put into the material, and also some of the controversy surrounding both the book and the movie.<br /><br />I actually only gave this a 4 because I save the bottom 3 rankings for true bombs--the kind that enrage you about having been sucked into spending an",0 +2898,"I work in a library and expected to like this movie when it came out 5 years ago. Well I liked Parker Posey a lot (she's a wonderful actress) and Omar Townsend was really cute as her boyfriend (he couldn't act but when you look like him who cares?) but the movie was bad. It wasn't funny or cute or much of anything. Posey kept the movie afloat with her energy. But she learned the Dewey Decimal system OVERNIGHT and then shelves tons of books to the beat of music??!!!!??? Come on! Also I did have a problem with the way she looked when she became a full-fledged librarian at the end--hair in a bun, glasses, no sense of humor--can we let that stereotype go please? Worth seeing for Posey and Townsend but that's about it. The TV series was much better.",1 +3396,"This is one of the first films I can remember, or maybe the first one. Exactly the beautiful kind of film than introduce a kid, sweetly, into the world of violence and addictions were we live. A little bit of Babe, Casino and Constantine, all this well mixed into a carton, and we get this. I don't know if its truly rated for kids, but I think it was very cool, very funny and interesting. I hate when a film (spescially a carton)can have a good end and its ruining because every character must have a happy end, even if it sounds weird (Im not a bitter person).But this was OK, he simply goes heaven and they let it in that way.<br /><br />All this is just a critic, Its a good movie an something new. very touching and I gotta go",1 +3000,"Excellent political thriller, played much quieter and slower than other, higher ranking films in this genre. When people talk about Pacino and Cusack how do they manage to skip over these amazing career topping performances? A story of friendships, father-son relationships, corruption and deceit. The two actors gel amazingly well together, and the supports from Aiello and Fonda are equally as impressive, although Aiello is brilliant, especially when the papers run to press. Instead of focussing on an over complex corruption scandal, it creates wonderful characters who show the human side of failure an political bribery, The final scenes with each of the main characters are wonderfully written and acted.",1 +13173,"After seeing the low-budget shittier versions of the ""Universal Soldier"" franchise, I hoped and prayed that Van Damme reprised his role as Luc Devoreaux in a second Unisol movie. Well, it seemed this prayer was answered, but not the way I hoped. Universial Soldier 2 is just intense as poetry reading at your local library. No, even that would be more intriguing . The fight sequences are top-notch, Bruce Lee quality, which is the only redeeming factor in this entire pathetic excuse for a motion picture. That and having former WCW tough-guy legend ""Goldberg"" playing the villain. However, placing Goldberg as Seth's sidekick lieutenant would've been better.<br /><br />We offended me the most was the setting of the movie itself. It's like some film school students slapped it together. The plot holes are that bigger than Kanye West's ego is what really did this movie in. For example: Luc's daughter, Hillary looks like she's at least 11-13 years old and the first movie was filmed only seven years ago. How is that possible? Tell me that! The part in which Luc's partner was killed off and turned into a Unisol is just re-goddamn diculous! You mean to tell me that there was an experimental Unisol exposed naked in the basement of the research complex at the beginning of the movie. C'mon. The director could've spent more time with this movie like the first one and sewn all the plot holes shut. But oooh nooo! <br /><br />Speaking of the plot, IT SUCKS! Compared to the first movie, Universal Soldier 2's plot watered down and worthless. Where's the gritty thrills in which a Unisol goes berserk an re-enacts his last memories in a supermarket rampage thinking its Desert Storm or something ? This was the dawn of the Millennium, you would attracted more of an audience if this had taken place in a dystopia/Orwellian type of future cesspit. Corny is the correct adjective to describe this sad, sad, sad sequel. <br /><br />From what I seen: Double Impact, Under Siege 2, Robocop 3, and hell, even the cheap-ass/no class Terminator knock-off ""Class of 1999"" is more entertaining than this!",0 +19358,"This has to be one of the worst movies I've ever seen. This movie has nothing positive about it. Some of you people actually like this movie! I've seen a lot of Dracula movies and I've liked everyone that I've seen, but when I saw this movie I said to myself, ""What the hell is this?"" What a stupid movie. Now they have Dracula becoming who he is because he is Judas. For those of you who don't know who Judas is, he betrayed Jesus Christ and then felt so guilty he hung himself. You have to be kidding me. That's the dumbest reason I've ever heard for why Dracula became evil. Who asked for a reason anyway? What a piece of sh** this movie is. Who ever came up with this sorry excuse for a movie should be beaten. Even the Dracula is horrible. If you ever saw this movie you wouldn't even think it was Dracula. Wow, Dracula 2000! Is that title supposed to impress me? Don't waste your time or your money on this trash.",0 +19813,"OK, the portrayal of the stereotyped 'indians' in this story is just plain WRONG. I do agree that Elvis looks rather good here, but yeah, his skin color does seem to change during the movie. I was thinking, OK,...he was never THAT tan in real life. It's some of the most obvious brown 'indian' makeup that I have ever seen. It's as bad as the 'indians' on 'F-Troop' and the old Hollywood westerns who were played by Jewish and Italian American actors and not real Native Americans!<br /><br />This movie is o.k., but typically lame story and mediocre songs, like in all of Elvis' later films. He just did them because Colonel Parker had him tied down to long term movie contacts to squeeze as much money out of Elvis as possible! I keep thinking 'thank God' that Elvis stopped making movies forever not long after this movie came out. It is cool to see character actors Joan Blondell, Katy Jurado, L.Q. Jones, Henry Jones and Burgess Meredith in this movie, though.<br /><br />Burgess Meredith's 'indian' makeup is absolutely AWFUL. It's The worst of the bunch for sure. What were the filmmakers thinking? Was Mr. Meredith doing this one just for the money or what? I do love certain Elvis movies, though. For example: 'Love Me Tender', 'Jailhouse Rock', 'Viva Las Vegas'. I can even stand to watch his movie with future TV co-stars Mary Tyler Moore and Ed Asner,'Change Of Habit' in which Elvis plays an inner-city doctor.<br /><br />Oh well, at least Elvis made a FEW good films, but the mediocre and bad ones overwhelm the decent and good ones.<br /><br />I'll always love ELVIS! Thank you, Thank you very much!",0 +19808,"Susan Seidelman seems to have had a decent career with a few top notch credits under her belt. I'm certainly glad she bounced back from this film which seems to have its admirers. I'm not one of them.<br /><br />I've seen better acting in high school plays than I did in Smithereens. The plot such as it is involved young Susan Berman who is ambitious to make it in the world of music and is willing to do just about anything to get there. She even rejects the sincere advances of a young artist who is living out of his van off the East River played by Brad Rijn.<br /><br />Young Mr. Rijn contributes the worst performance in the film, in fact one of the worst acting jobs I've seen in a long time. No wonder he's not gone anywhere.<br /><br />I will say that Seidelman's eye for the camera is a good one in capturing the familiar East Village locations where the film was mostly shot. But her work with her live performers didn't measure up. I'm not sure she had that much raw material to work with.<br /><br />Look fast and you'll see a very young Christopher Noth before Law and Order and Sex in the City as a street hustler.<br /><br />If you like punk rock, you might sit through this for the soundtrack. I'll stick to Bing Crosby.",0 +2408,"""A Guy Thing"" may not be a classic, but it sure is a good, funny comedy. The plot focuses on Paul (Jason Lee), who wakes up the morning after his bachelor party with no memory and Becky (Julia Stiles) lying naked in his bed. Before he can figure out what happened, he rushes Becky out of his apartment because his fiance Karen (Selma Blair) is coming. After that, as you could imagine, chaos ensues.<br /><br />Almost every single scene in ""A Guy Thing"" delivers loud laughs. The funniest moments come from when Paul imagines what could happen if he tells Karen. Selma Blair is a truly talented comedian, and the worst thing about this film is that she goes underused. Although, she turns out to be more funny than Stiles' character, who actually isn't that interesting. Of course, not every comedy is perfect.<br /><br />As I said, ""A Guy Thing"" is no classic, but it's not bad either, 7/10.",1 +8896,"Where the Sidewalk Ends (1950)<br /><br />Where One Ends, Another Begins<br /><br />This is a prototypical film noir, and as such, pretty flawless, from both style and content points of view. The photography and night settings are first rate (cinematographer Joseph LaShelle lets the drama ooze in scene after scene), and the close-ups on faces pure expressionism. I can watch this kind of film for the visuals alone, even when the actors struggle and the plot stinks. <br /><br />But the acting is first rate here, and the plot features what I consider the core of most noir films, the alienated male lead (representing the many men returning home to a changed United States after the war and feeling lost themselves). In fact, not only is Dana Andrews really convincing as the troubled, loner detective, he has a small but important counterpart in the film, the lead female's (first) husband, an decorated ex-GI fallen onto hard times and booze. The fact the one man kills the other might be of monumental significance, overall-- the regular guy struggling through his inner problems to success while the medal-wearing soldier slips into an accidental death with a silver plate in his head. The woman transitions from one to the other--we assume they marry and have children as suggested earlier in the movie. Even if this is pushing an interpretation onto it after the fact, we can still see the path of one man with some psychological baggage careening through a crisis to the highest kind of moral order--turning himself in for a small crime just at the point he has actually gotten away with it.<br /><br />This movie belongs to Andrews. He plays a far more restrained and moving type than Kirk Douglas plays in a similar role in William Wyler's Detective Story made just one year later, and Andrews certainly is less theatrical. You could easily see both movies side by side for a textbook compare and contrast session. The fact that Andrews as Detective Dixon is morally struggling through it all, and Douglas as Detective McLeod is not, might explain why one man gets his girl and the other doesn't. Gene Tierney pulls off a hugely sympathetic, demurring, and ultimately conventional and ""pretty"" type of woman--not just a cardboard desirable, but someone you want Dixon to actually marry. <br /><br />The criminal plot is really secondary to the main drama, but is effective enough in its play with types and clichés. The bit parts are kept snappy, the small details (like the portable craps table) nice touches, far from the character actors or the glamour of gambling in Casablanca. But then, Curtiz's great movie is iconic even in the details--it makes no effort to be subtle and real and penetrating, but instead is sweeping and memorable and inspiring. They come at opposite ends of the war, and represent opposite possibilities for their leading men. Bogart is beginning his active duty, Dixon, and the man Dixon has killed, are all through. Through, thoroughly, but not washed up.<br /><br />It's no accident that many, possibly most, film noirs have what you would call ""happy"" endings. The man overcomes his adversaries and transforms his inner self, and the moviegoer, then and now, understands just how beautiful that must feel.",1 +14661,"""The Running Jumping & Standing Still Film"" is not a film as such, but it is a short series of clips with a comical slapstick theme. This 'film' got Richard Lester recognised and paved the way for him to direct the first Beatles film: 'A Hard Day's Night"".<br /><br />Richard Lester directed and wrote the music for his first film in 1959. This film was entitled The Running, Jumping, & Standing Still Film. It was intended to be viewed only by those who had aided in its production. Since the film was intended to be viewed by Lester and his partners alone, a small amount of money and time was invested. The sole purpose of this film is entertainment, but the main reason for its existence is the fact that it served as an experiment to work the camera. The film cost 70£ to make, and it was filmed in sepia-toned film stock in a field on a couple of Sundays. All of the shots that were filmed were included in the finished production; the finished production is eleven minutes in length.<br /><br />The Running, Jumping, & Standing Still Film is a comedy about English Sundays and the small hobbies that people do to pass the time. All of the events in this film take place in a field. A few of these comical events include a woman scrubbing a lawn, a man running around a tree stump with a needle to play a record, a photographer developing film in a pond, an artist aided in painting by the numbers on a model's face, a man building a tent, an athlete running over the tent, and a duel between a man with a knife and a man with a gun. Not only does the film poke fun at the hobbies that people do to pass the time away, but it also pokes fun at English culture when compared to American culture. Another one of several events in this film includes a group of men and a kite, which has been constructed out of the flag of the United Kingdom. One of the men jumps inside the kite while the other men attempt to fly it, and the kite breaks. According to Neil Sinyard, author of The Films of Richard Lester, this event symbolizes the United Kingdom as lesser in power and technology when compared to the United States during the space age. According to this scene, the British fly primitive kites while the Americans, the world-power after World War II, fly highly-advanced rockets and space shuttles.",0 +21872,"I'm sorry to all the fans, but this is a useless movie. The acting is bad, even wooden, it over-hypes the fright-factor early on, and doesn't exactly work. I think there was supposed to be a twist at the end, but it just ended up being maddeningly confusing. What the hell? The dude who was killing everyone was one of the hunted? Try again.<br /><br />Its hardly original, and it isn't even particularly good as a straight slasher. And that's saying something.<br /><br />I think whoever did the castings, whoever wrote the script, and whoever thought of the concept should be mercilessly fired and deported.<br /><br />Don't watch this movie. If someone puts this on at a party, throw the disc out the window and put on a good horror movie, like Silence of the Lambs or The Shining.",0 +3286,"Looking at some of the negative posts, you really have to wonder what some people do for fun....<br /><br />I was lucky enough to see the film during its all-too-brief theatrical run. The audience laughed its heads off. I'm watching a tape of it as I type and it's still dang funny!<br /><br />It's also got a sweet side, with unexpected turns of genuine pathos. The late, great Royal Dano is especially effective as the lonely, down-on-his-luck farmer Wrenchmuller. Ariana Richards and J.J. Anderson are great as the lead kids. And the actors in the Martian suits, although limited to mime, do a great job<br /><br />Another thing to look for is the background details. The film is full of homages, pastiches, and references to other SF and fantasy films. Take a look at the Martian costumes next time. One of them is wearing a Marty McFly costume, another is a Ghostbuster, a third is in a House Atreides uniform, and a fourth is wearing a Last Starfighter flightsuit.",1 +20735,"""Smokey And The Bandit"" wasn't exactly Shakespeare, but then nobody wanted it to be. It was lowdown slapstick, but it did have brains. It had a very smart script with definable characters and a fun wrap-up. People came out of the theater smiling. ""Hooper"" provides none of this. There is no reason to smile. If it's supposed to be a tribute to the Hollywood Stuntman, it makes them look awfully lazy by providing nothing but badly-choreographed fight scenes and one of the most unconvincing car-jumps I've ever seen. It all looks phony, badly-filmed almost on purpose. Poor Sally Field (as the girlfriend who wrings her hands on the sidelines) is given her weakest role, with not a single funny or smart line (""If you do that jump, I won't be here when you get back""). Burt Reynolds keeps looking at the camera and winking, but the joke is on any audience who sits through ""Hooper"". * from ****",0 +9006,"""Dressed To Kill"", is one of the best thrillers ever made. Its dealings with sex and violence make this a film for adults. Brian De Palma, once again, proves why no other director can match his use of the camera to tell a story. He directs many scenes without dialog, and he tells much of his story, strictly through the use of his visuals, and Pino Donnagio's brilliant score. Filmed in Panavision, the film MUST be seen in widescreen, as De Palma uses the entire width of the film to tell his story. Cropped, on video, ""Dressed To Kill"", is barely the same movie. Solid performances from its cast, superb direction, and, perhaps, the finest film score ever written, make ""Dressed To Kill"" a must see.",1 +15065,"This was a disappointing movie. Considering the material---army life is always good for a laugh---and the stars, this movie should have been a fall down laughfest. It was worth a couple of chuckles, at best. Steve Martin has been much funnier than this and it appears that Dan Ackroyd should stick to dramatic roles, where he might follow Robin Williams' lead and someday win an Oscar.",0 +23317,"I haven't seen anything this bad since I walked out of the James Bond movie ""Moonraker"" twenty years ago. I managed to sit through the entirety of this one only because of Tilda Swinton, but there was nothing she could do to save this beast.<br /><br />As a cross between ""Pi"", ""Orlando"", and ""Tron"", this movie failed miserably in every aspect of moviemaking. The characters were cardboard and unable to evoke any kind of sympathy. The plot was wholly unbelievable. The acting was, with the exception of Swinton, amateur. The computer graphics were worse than in ""Tron."" Timothy Leary was extremely annoying. I could go on, but what's the point.<br /><br />The only good thing I can say about this film is that Tilda Swinton was in it. I have no idea why an actress of her caliber consented to appear in such a dud, but she most likely regrets it now.<br /><br />Don't waste your money or your time on this stinker. There's nothing worth seeing here.",0 +16003,"This movie should be shown to film school students as an example of what NOT to do. The original kicked some major tire squealing butt, this horrible disaster breaks the cardinal rule of Bruckheimer films, which is: we all know they suck, but they have great action. This film has NO ACTION. This film is BORING. Where are the cars? Where are the chases? Where's the tension? Where's the suspense? Where's the rush? Where!!?? This isn't really a movie at all, it's a bad commercial. 50 cars in 24 hours? That is wrong. They have 3 days to steal them, the ad is wrong. How bad is that? The leads acting is stiff, wooden and forced. The villain, the cop, the others...who cares. They utter their pointless lines, they serve the illogical plot. They slog through it the best they can as the music video director says ""don't worry we'll make a lot of fast cuts and no one will notice how bad the film is"" or ""we'll fix it with lots of loud music"" The ""script"" isn't really a script at all, it's more like a list of cliches with an ending that is a total ripoff of: -------Warning - possible spoiler------ 5------4-----3-----2-----1------ The Fugitive. The biggest crime of all is the underuse of Vinnie Jones, man....this is the baddest, coolest mofo since Jules in Pulp Fiction. And what do they do!? They make him a mute who's hardly in the film! Make Vinnie the main villain and he could have saved the film. How could they have been so dumb? How? How? Why? The original film is very entertaining with a cool trick at the end that gets the driver away. The original has a great 40 minute chase that delivers! Go find the original. Or if you're craving some real car chase action go rent RONIN. The chases in Ronin raised the bar by which all other car chases will now be judged. Bruckheimer and Cage had all that money, all those resources, all that experience, and they can't even come close to matching a film made 25 years ago for $250,000? How can that be? You feel like you got ripped off after seeing this movie. Where I was once excited to see Coyote Ugly, Remember the Titans and Pearl Harbor, now I say: God help us all. <br /><br />",0 +14604,"Oh my God what the hell happened here?!! I'm not going to say this again but what sort of backward movie is this? The dubbing in this is way worst than the dubbing in ""King Kong vs Godzilla"",Linda Miller had to be the worst actress in it and the suits are really cheesy.Its about some villain called Dr.Who who gets henchmen to build a robot gorilla that has the same strength as King Kong but when this robot breaks down he builds another one and then tries to kidnap Kong.When he does(thats when Linda Miller gets annoying)he makes Kong his slave but everything goes wrong and King Kong escapes.Then Dr.Who sends the robot after him.<br /><br />Later when I was watching the movie I got a headache when Linda Miller and the other clowns started moaning.As I sat through the misery of watching the DVD while it was playing I was hoping that the madness in the movie was going to end until the fight.The ending has to be a really bad one because they could've shown Kong back on his island fighting dinosaurs again.<br /><br />Don't watch the movie under any circumstances or if you do... beware of the disappointment you will receive.",0 +23428,"This kind of storytelling is unacceptable The only reason this film is anywhere above the 5 stars out of 10 line is because it's got George Lucas behind it, and it has the words ""Star"" and ""Wars"" in its title. That is an insult to aspiring filmmakers, and many others out there who have made clearly superior films with superior story, writing and acting, but did not get the credit. This is a travesty.<br /><br />First things first. The story. Anakin's evolution? There is none. Apart from a little make-up around the eyes, and a little yelling, there is none. He becomes young, stupid, cocky Anakin Skywalker to Darth Vader in a single blow. The only thing consistent about Darth Vader in the original series was his intelligence, how good he was at almost everything he did, planning, fighting, you name it. The only consistent thing about Anakin that is perceived in the prequel trilogy is his consistent stupidity. He even loses his body because of a bout of stupid cockiness.<br /><br />What part of the Emperor Palpatine telling him legends of the Sith does not point to the Emperor being a Sith? Unacceptable!<br /><br />The fight scenes used too many digital doubles. Everyone's flying all over the place like teddy bears in a make-believe doll house. Count Dooku, Emperor Palpatine, Anakin, Obi-Wan, almost every fighter had a rubbery digital double jumping around.<br /><br />In one specific fight scene, Obi-Wan and Anakin in the climactic battle, they both actually stop in the middle of parries and ripostes, to twirl their sabers a few times while inches apart. I realize the fights are choreographed, but that just got me shaking my head in disbelief and disgust.<br /><br />The writing was awful. All the dialogue was of tremendously low quality. The good actors like Ewan McGregor and Natalie Portman did the best they could with their lines, but that just wasn't enough. I can't say enough bad things about this film. Too much special effects, plot holes bigger than the centre of the universe, and absolutely no insights into any of the characters. This is the biggest mistake of this film: nothing new is offered. We know the rough picture of everything, all Lucas did was colour it in.<br /><br />We knew Anakin lost his limbs. We knew Luke and Leia are brother and sister, we knew Luke is Anakin's son, we knew Obi-Wan and Yoda go to exile, we knew everything. Nothing new is offered in this film. If that's all the fans wanted, then that's fine, Lucas couldn't have gone wrong.<br /><br />But when Anakin finally becomes Darth Vader, and he asks after Padme, and hears she is dead, he reaches out his arms awkwardly and screams ""Nooooooooooooooooooooo."" That scene screamed B-movie all the way, and I was half expecting Darth Vader to go ""DANGER WILL ROBINSON, DANGER"" at any time. That is what this is. A B-movie, disguised by a huge budget and a ultra-loyalist fan base that will settle with anything now that the first two movies have pulled their standards down to the pits of the Earth.",0 +11660,"Jean Harlow and Clark Gable were a great on screen team and this may be their best movie together.<br /><br />Yes, Hold Your Man can be cheesy and predictable, but that's not what I love about the movie. I love seeing Harlow and Gable together and in this film they are simply wonderful. It is obvious that they really enjoyed working together and that is part of what makes this such a wonderful film.<br /><br />The witty dialogue, great script and attention to detail are the other things that make this such a good movie. I loved this movie the first time I saw it and on each subsequent viewing I always notice at least one new detail. To me, that is a mark of a great film.<br /><br />The dialogue and script are better than most movies from this time period (early 30's). I adore classic movies, but I admit that most of them are just average and at times don't hold my interest. Hold Your Man is one of the exceptions.<br /><br />This has a lot to do with the fact that Hold Your Man is a 'pre-code' movie. (The Hays code was not enforced until a year after Hold Your Man.) This movie could not have been made under the code. Well, it could have been made, but it would have been an entirely different story. Thank goodness the code was not enforced until 1934. Otherwise, we would have missed out on this gem.",1 +23585,"This one is bad. A really bad and boring crime movie that has nothing out of the ordinary in it. A series of crimes, the killer that you do not see throughout the whole movie, the classic investigations. And also the classic tale about a cop who figures out what's going on and isn't believed by anyone, so he has to fight by himself to reveal the truth. Not too much in this one. Vote: 4 out of 10.",0 +7525,"Ironically the most talked-about American film in the 2008 New York Film Festival is 98% in Spanish. The extra-long film's controversy began at the Cannes Festival. There were love-hate notices, and considerable doubts about commercial prospects. As consolation the star, Benicio Del Toro, got the Best Actor award there. I'm talking about Steven Soderbergh's 'Che,' of course. That's the name it's going by in this version, shown in New York as at Cannes in two 2-hour-plus segments without opening title or end credits. 'Che' is certainly appropriate since Ernesto ""Che"" Guevara is in almost every scene. Del Toro is impressive, hanging in reliably through thick and thin, from days of glorious victory in part one to months of humiliating defeat in part two, appealing and simpatico in all his varied manifestations, even disguised as a bald graying man to sneak into Bolivia. It's a terrific performance; one wishes it had a better setting.<br /><br />If you are patient enough to sit through the over four hours, with an intermission between the two sections, there are rewards. There's an authentic feel throughout--fortunately Soderbergh made the decision to film in Spanish (though some of the actors, oddly enough in the English segments especially, are wooden). You get a good outline of what guerrilla warfare, Che style, was like: the teaching, the recruitment of campesinos, the morality, the discipline, the hardship, and the fighting--as well as Che's gradual morphing from company doctor to full-fledged military leader. Use of a new 9-pound 35 mm-quality RED ""digital high performance cine camera"" that just became available in time for filming enabled DP Peter Andrews and his crew to produce images that are a bit cold, but at times still sing, and are always sharp and smooth.<br /><br />The film is in two parts--Soderbergh is calling them two ""films,"" and the plan is to release them commercially as such. First is 'The Argentine,' depicting Che's leadership in jungle and town fighting that led up to the fall of Havana in the late 50's, and the second is 'Guerrilla,' and concerns Che's failed effort nearly a decade later in Bolivia to spearhead a revolution, a fruitful mission that led to Guevara's capture and execution in 1967. The second part was to have been the original film and was written first and, I think, shot first. Producer Laura Bickford says that part two is more of a thriller, while part one is more of an action film with big battle scenes. Yes, but both parts have a lot in common--too much--since both spend a large part of their time following the guerrillas through rough country. Guerrilla an unmitigated downer since the Bolivian revolt was doomed from the start. The group of Cubans who tried to lead it didn't get a friendly reception from the Bolivian campesinos, who suspected foreigners, and thought of the Cuban communists as godless rapists. There is a third part, a kind of celebratory black and white interval made up of Che's speech at the United Nations in 1964 and interviews with him at that time, but that is inter-cut in the first segment. The first part also has Fidel and is considerably more upbeat, leading as it does to the victory in Santa Clara in 1959 that led to the fall of the dictatorship of Fulgencio Batista in Cuba.<br /><br />During 'Guerilla' I kept thinking how this could indeed work as a quality European-style miniseries, which might begin with a shortened version of Walter Salles's 'Motorcycle Diaries' and go on to take us to Guevara's fateful meeting with Fidel in Mexico and enlistment in the 26th of July Movement. There could be much more about his extensive travels and diplomatic missions. This is far from a complete picture of the man, his childhood interest in chess, his lifelong interest in poetry, the books he wrote; even his international fame is only touched on. And what about his harsh, cruel side? Really what Soderbergh is most interested in isn't Che, but revolution, and guerrilla warfare. The lasting impression that the 4+ hours leave is of slogging through woods and jungle with wounded and sick men and women and idealistic dedication to a the cause of ending the tyranny of the rich. Someone mentioned being reminded of Terrence Malick's 'The Tin Red Line,' and yes, the meandering, episodic battle approach is similar; but 'The Thin Red Line' has stronger characters (hardly anybody emerges forcefully besides Che), and it's a really good film. This is an impressive, but unfinished and ill-fated, effort.<br /><br />This 8-years-gestating, heavily researched labor of love (how many more Ocean's must come to pay for it?) is a vanity project, too long for a regular theatrical release and too short for a miniseries. Radical editing--or major expansion--would have made it into something more successful, and as it is it's a long slog, especially in the second half.<br /><br />It's clear that this slogging could have been trimmed down, though it's not so clear what form the resulting film would have taken--but with a little bit of luck it might have been quite a good one.",1 +24931,"I'm going to write about this movie and about ""Irreversible"" (the (in)famous scene in it). So you are warned, if you haven't seen the movie yet. This are just my thoughts, why I think the movie fails (in the end - pun intended).<br /><br />Acting wise, Rosario Dawson is really good and almost conveys portraying someone almost a decade younger (a teenager in other words). The villain guy is good, but loses his ""evil"" touch right before the end. If he really never changes, then why would he let a woman tie him up? He wouldn't, period. Then we also have the bartender/2nd rape Dude. Actually I don't think you would need him. At least not for the 2nd rape, but more about that later on.<br /><br />Let's reprise the story. Rosarios character is sexually insecure, might even have lesbian tendencies (see her scene with a female friend). This wasn't intentional, as Rosario states herself, but there is sexual tension between them. Rosario's character meets a guy, who is a sexual Predator, in all the bad senses. But he makes an impression on her.<br /><br />Rosario commented that her character had a boyfriend before. I beg to differ. Because she acts, as if it is her first boyfriend, which also underlines her phone conversation with her mother. Talking about her mother, here's another problem. After the first rape takes place, Rosarios character doesn't tell anyone what happened. Seiing that her relationship with her mother is a very close one, nothing of that gets explored after that. If Rosarios character wouldn't call her mother anymore or would behave strangely, the mother would be worried like crazy. There was so much potential here. Also her female friend: We see her at the party, it's obvious there is something going on and ""boom"" she is gone.<br /><br />The first rape is almost unbearable to watch. But feels like a pinch, when you compare it to the ending (rape), which feels like you're getting hit with a sledge hammer! After rape no. 1 we get too stretched out scenes. Threads are opened (such as her construction work is an indication that she might be lesbian, as one guy states who tried to hit on her ...), but left in the open. No real social contact is established, if you leave the bartender guy out, who is involved in the 2nd and last rape scene. It's apparent that he isn't a ""nice"" guy and his character get's fleshed out a bit. But when Rosarios character meets her rapist in class again, his being in the movie seems pointless. We get the point that Rosarios character isn't the same anymore, that she went ""bad"" and is able to hurt people. (Too) Many scenes show exactly that, her being without emotion just doing drugs and other stuff. Back to Rapist #1 who cheats on a test, gets caught by Rosarios character and they decide to hang out together again (really?). As absurd as that sounds, the guy meets up with her, not without us having seen him beforehand, with another girl (very likely that he raped her too, although we never see anything of that, fortunately) and his football career. Well career is a stretch and he is bullied. This is an attempt to give his character some depth and it almost works, but then again is too cliché to stay with you. So Rapist #1 submits to Rosarios character ... why exactly? Because he promised her, it was her day? Again, really? A guy like that never loses control, especially with a woman he raped before ... I guess this is supposed to show us how stupid he is. The bartender guy would have worked as someone who could have hit him over the head or something, but letting him submit like that, just feels wrong. Another possibility would have a drug in his drink.<br /><br />So rapist #1 undresses and get's blindfolded and let's Rosarios character tie him on a bed .... seriously, that's just crazy! But what comes next, is even crazier. First she talks to him, then she ""shuts"" him up and forces an object into him. This is as difficult to watch as rape scene number one. This isn't about what this guy deserves or not, it's just intense. And of course that was what they were aiming for. Now after she is ""done"" the bartender guy comes in and rapes ... rapist #1. If this really should work as a revenge movie, it would have been better if Rosarios character herself would have been doing all the ""revenge"". Having a henchman doing the job, takes away everything that was built up.<br /><br />This isn't supposed to be entertaining/enjoyable, it's a hard watch & it is Art-house. But the 10 minute (I didn't count ) rape scene at the end, just smashes everything. Rosarios character is more or less, only watching what happens. Which brings me to the biggest disappointment.<br /><br />Irreversible comparison: ""Irreversible"" had the rape scene, but the movie went on (even if it was back into time). Rosario is looking into the camera in the end and says something about having to get over this. First, that comes a bit too late, that should see her say that after the initial rape. And secondly and most importantly, this is where the Art-house movie should've come in. It is more interesting seeing were Rosarios character would go after the second rape scene and how she would cope, with what she had done. But then again, she didn't actually physically do that much (see above) ... a broken character that the movie cuts off ...<br /><br />Good intentions (Talia and Rosario had worked before), but failing to convey most of the things, they set out to do (even if you can see what they meant, it has to be convincing, otherwise it doesn't work) ... not to mention the overlong rape scenes as they are ...",0 +6624,"The jokes are obvious, the gags are corny, and the characters are walking characatures - but I couldn't stop from laughing at his highly entertaining movie. No matter how many times I see it, I still get a kick out of this one, and I recommend it highly for all lovers of mindless entertainment. It contains many quotable moments, and some of the best sight-gags I've seen to this day. If you've had a bad week and you need a chuckle, rent this one on your way home Friday night to give your weekend a good start.",1 +4978,"OK, so Soldier isn't deep and meaningful like Blade Runner or as big budget as Terminator 2 but on the whole I found it quite enjoyable.<br /><br />The fact that Kurt Russell stayed in character not speaking and being virtually emotionless made the moments when his humanity broke through all the more poignant. I found his portrayal of restricted emotional development more touching than Arnie's in the T films (and before I get comments yes I know that Arnie was a cyborg and Kurt was human but the premise put forward by both films was the same).<br /><br />So to the film itself, a reasonable US/Brit cast are able to flesh out this little story. Not really sure if Gary Busey and his two deputies were baddies or goodies, so was unable to decide whether I liked them or not. The colony was a little more realistic neither a misguided bunch of peace loving/gullible/cowardly hicks who get wiped out from the get go nor a group of subversive aggressive terrorists paranoid about offworlders and each other.<br /><br />Kurt Russell is good and unlike other comments I do not feel this will have a negative impact on his career (unlike maybe Escape from LA - sequels are such fickle creatures!). Sean Pertwee has really done his late father proud by continuing the families noble Sci-Fi lineage. And the rest of the cast helped flesh out this pathetic band of people making the most of a bad situation and not doing too badly.<br /><br />If you see this on your TV schedule I would recommend giving it a chance. I don't think you will be disappointed.",1 +538,"I saw it last night on TV, and was quite delighted. <br /><br />It is sort of the movie which makes you feel nice and warm around heart, and believe that there is still some goodness in the world (all the neighbours pretended not to see what grace was doing in order to help her and protect her- the old policeman is my favourite), although you know that this story is not quite realistic.<br /><br />I loved acting (they all seemed just as ordinary, common people, living in small picturesque English coast town) but the greatest thing in the movie was the wit and humor it has! Just remember the scene in the shop with two old ladies after they had their ""tea""!!<br /><br />Perhaps the ending was a little bit confusing, but it didn't stop me from really, really enjoying the whole story!",1 +22831,"A warning to you not to be seduced by the names Bigelow and Red. _Undertow_ is pointless and unengaging, and made me think often of a phrase by Twain about wishing all the characters would be drowned together. When someone brings up the category of Worst Films Ever Made, it's not the likes of _Plan 9_ or _Attack of the Killer Shrews_ that I think of; it's the likes of this. What a complete waste of time--my own and everyone who was involved with this flick.",0 +2508,"Jane Austen's Emma is an extremely enjoyable story at the worst of times and this production of the story is the best I have ever seen. Kake Beckinsale's Emma is irreproachable. Gwyneth Paltrow, (with the help of a good screenplay and excellent cinematography) is able to bring out the comedy effectively, she fails to make Emma likeable. Paltrow is not aided by the fact that her hairstyles are simply 'wrong' for the part (and I believe the era) and she looks positively ill in the empire line dresses. Kate Beckinsale, on the other hand, manages the comedy effortlessly and is still able to show what Mr Knightly (the most romantic of Jane Austen's heroes) actually sees in her. Mark Strong is a splendid Mr Knightly with the right mix of handsome looks, an appropriate age, chivalry, compassion and gentlemanly behaviour. Emma and Mr Knightly are supported by a cast of good actors and the production as a whole is quite delightful.",1 +7406,"I only saw it once. This happened in 1952, I was seven, the movie 13.<br /><br />We were so young... But I kept in mind, forever, the strong moments of Gunga's sacrifice.<br /><br />I realized that time how much a people can be hardly submitted and used by a foreign nation. Under these historical circumstances, in the movie, the personal relation of friendship, a kind of friendship that ignores itself, the one raised between people who share daily life, who see each other faces, who knows each other names, but belong to different worlds, can only make appears. Then, in the most critical moments a troubling question emerges: ""Whom are we, in first, supposed to be loyal?"", which People, family, motherland, the person you know close to you?. You do not have time to give a perfect answer, urgency is there, and it is for life or death. Gunga-Din gives his answer with sacrifice of himself. Somewhere, in a confuse manner, a problem remains unsolved, the emotion grows with the rhythm of the movie until somebody dies, just one life, nothing compared to so many other fictions or realities we can see today, because this death, this unique vanishing life I lived it, I shared with my child unconditional friendship. It was lived by the spectator I was. That day I loose Gunga-Din for ever. As I left behind, later, my pretty childhood, as I left from then so many worlds I lived in. I left all that for good and these lines are today a short visit I didn't expect to do this morning when getting up.",1 +24844,"I sat through this at GenCon only because it was quiet and I could nap. What a waste of time. Beverly D'Angelo and William Katt? WTF? Were the lady who played Flo and Abe Vigoda busy or something?<br /><br />Truly, a piece of unfunny garbage. The characters were stereotypical without meaning to (I think...) and wooden, most of them seemed like they were on autopilot. The so-called ""hilarious"" situations described in some of the other so-called reviews were so hackneyed, I weeped for the writers.<br /><br />I'm confused as to how anyone can find this worth their time, seriously. I'm only giving it 3 out of 10 because in order to be a 2 or 1, it would need to be either five-hours long or feature more Kelly LeBrock.",0 +6712,"The Straight Story is a multilevel exploration of the goodness and beauty of America. At one level a slow walk through the heartland, it's kind inhabitants, and amber grain, at another level about growing old and remembering what is important(and actively forgetting what isn't). David Lynch gives us time in this movie and helps me to remember that so much can be said with silence. A remarkable movie that will rest gently with me for some time to come.",1 +16882,"When I go out to the video store to rent a flick I usually trust IMDb's views on a film and, until this one, had never seen a flick rated 7.0 or above on the site I did not enjoy.<br /><br />Sidney Lumet, a legendary director of some of the best films of the 20th century, really misstepped here by making one of the biggest mistakes a filmmaker can: filling a film's cast with thoroughly unlikeable characters with no real redeeming qualities whatsoever.<br /><br />I like films with flawed characters, but no matter how dark someone's personality is we all have a bit of light in there too, we're all shades of gray with some darker or brighter than others. Mr. Lumet crossed this line by filling this movie with totally unsympathetic and almost masochistic pitch-black characters.<br /><br />Ethan Hawke's Hank is a 30-something whining, immature, irresponsible man-child divorced from a marriage with a wife that hates him and a daughter who thinks he's a loser, which he very much is. His indecisiveness and willingness to let others do the dirty work for him because he's too cowardly to do it himself leads directly to their bank robbery plan falling apart and mother getting killed. By the time he stands up to his older brother at the end of the film, it's more pathetic than uplifting. Ethan Hawke plays his character well, but isn't given much to work with as he is portrayed as someone with a boot perpetually stamped on their face and he doesn't' particularly care that it's there.<br /><br />Speaking of which his character's wife is equally as bad. Just about every single shot of the film she's in is her verbally berating him for rent and child support money and further grinding in his already non-existent self-esteem with insults. Seriously, that's just about all the character does. Her harpy-like behavior borders on malevolent.<br /><br />Albert Finney plays their father Charles, and while Mr. Finney has been a great actor for many decades, he spends about 90% of this film with the same mouth open half-grimace on his face like he's suffering from the world's worst bout of constipation. For someone who's been an actor as long as Mr. Finney, you think he'd be more apt at emoting. Even though he doesn't show it much, his character is supposedly grief stricken and anger-filled. And when he smothers Andy at the film's conclusion it's akin to Dr. Frankenstein putting the monster he helped create out of it's own misery.<br /><br />Marisa Tomei isn't given much to do with her character. Stuck in an unhappy marriage with Andy and having an affair with his brother for some unfathomable reason. When Andy's world begins to spiral out of control she logically jumps ship, but it really doesn't make her any less selfish or self-serving than any other character in the film, but probably the one with the most common sense at least.<br /><br />And finally we come to Andy, played by the always good Philip Seymour Hoffman, is the only reason I rated this film a 3 instead of a 1. His performance of the heroin-addicted, embezzling financial executive who's ""perfect crime"" of robbing his parent's insured jewelry store goes awry is mesmerizing. His descent from calm master planner of a flawed scheme to unstable, deranged homicidal maniac is believable and tragic. Hoffman's character ends up being the film's chief villain, but it's hard to root against him given the alternatives are an emotionally castrated little brother and a father who's self-admitted poor early parenting led to his son's eventual psychosis and indirect, unintentional murder of his mother.<br /><br />Ultimately this film is really only worth watching for PSH's great performance and it's family train wreck nature. Just don't expect there to be any characters worth cheering for, because there really aren't.",0 +11769,"I'm not a fan of Adam Sandler. In fact, I don't think I've ever liked him in anything I've seen him in. The opening scene of this movie confirmed my worst fears. There was Adam Sandler, playing a somewhat ridiculous looking character riding around New York City on a motor scooter, looking pitiful and lost. Typical Sandler-type loser character again, I thought. I almost gave up then and there. But then, as I stuck with this, I actually discovered something I never knew before: Adam Sandler can act! He is truly outstanding in this movie as Charlie, a lost and lonely figure, whose entire family (including the dog) was killed in one of the hijacked planes on 9/11 and who has apparently lost all touch with reality as a result. Don Cheadle plays his former college roommate who unexpectedly reconnects with Charlie and takes it on as his mission to help him get better. Of course, Cheadle's Alan Johnson has his own problems and sources of unhappiness, and somehow these two men manage to help each other through their difficulties. The two of them made a completely believable team, and Sandler in particular made Charlie real, working through his emotions and feelings. This is not a Sandler comedy. If your looking for that go to some of his other, sillier, stuff. This is a pretty heavy movie - sometimes sad, sometimes hopeful and always engrossing. There are some funny parts in it. I loved the scene in which Charlie convinces Alan to confront his partners by reminding him of how tough he was in college, and then the conversation the two of them have afterward.<br /><br />I personally didn't think that Saffron Burrows added much to the movie as Donna, an obviously needy patient of Johnson's. The only reason for the character seemed (based on one flashback) to be that she looked eerily like Charlie's late wife, but that was never really developed, and I just didn't care that much for the character. Do look for the part of the judge, however, played by Donald Sutherland, who I thought nailed the part bang-on. As far as I'm concerned, though, this is Sandler's movie, and kudos to him for a great performance. Definitely his best in my opinion. 8/10",1 +21861,"I have nothing more to say but it was awful. I cannot imagine why Helen Mirren and others were part of this degrading mess. And if certain actors don't want people to question their sexuality then perhaps they should refrain from making more of these films. There was at least one seen that left me curious. Just my opinion. SHUDDER to think what was going on that was cut from the film. SHUDDER to wonder what went through the minds of the actors who made this film. Shudder to think about the thought process and voyeurism that went on in the directors mind. Like I stated before its a degrading mess. Its not even funny. As Ebert said of the film Caligula with Malcolm McDowell, Its not a good film, not a good story and its not even good porn. YEESHHHHHHHHHHHHHHHHH............",0 +24411,"Don't get me wrong, I assumed this movie would be stupid, I honestly did, I gave it an incredibly low standard to meet. The only reason I even saw it was because there were a bunch of girls going (different story for a different time). As I began watching I noticed something, this film was terrible. Now there are two types of terrible, there's Freddy vs. Jason terrible, where you and your friends sit back and laugh and joke about how terrible it is, and then there is a movie like this. The Cat in The Hat failed to create even a momentary interest in me. As I watched the first bit of it not only was I bored senseless, but I felt as though I had in some way been violated by the horrendousness of said movie. Mike Myers is usually brilliant, I love the majority of his work, but something in this movie didn't click. One of the things that the director/producers/writers/whatevers changed was that they refused to use any of the colors of the original book (red, black, white) on any character but the Cat. Coincidentally or not, they also refused to capture any of the original (and i hate to use this word, but it fits) zaniness of the original. The book was like an Ice Cream Sunday, colorful and delicious, and the movie was about as bland and hard to swallow as sawdust.<br /><br />Avoid this like a leprous prostitute.",0 +2300,"I have always been a great admirer of Nicolas Roeg and ""Walkabout"" is one of my favorite films. This is a film version of Roegs stage play and while most of the film takes place in a hotel room it still has some of Roegs cinematic flare. Very unique story is about a famous actress (Theresa Russell) who after a hard nights work on a film in 1954 goes to a hotel to visit a famous professor (Michael Emil) and together in his hotel room they talk. After awhile she wants to go to bed with him but as they start to get undressed her husband is banging on the door. Her husband is a famous ex-baseball player (Gary Busey) and he wants to know what is going on. The three of them in the hotel room talk about what is going on and what the future holds for them. Meanwhile, a famous senator (Tony Curtis) is threatening to take away the professors papers if he doesn't testify at a hearing. Theresa Russell is just excellent and while she's not trying exactly to impersonate Marilyn Monroe she does a wonderful job of exuding the phobia's and nuances that Monroe is very well known for. One thing the film does is show her as not only a woman on the verge of a mental breakdown but show her as a physical wreck as well. She talks of being unable to have children and at one point in the film she suffers a miscarriage. You can make an excellent case that this is Russell's best performance and I probably wouldn't argue. The film does an interesting thing in showing many flashbacks as the characters continue to talk about one thing and in the flashback we see one of many reasons for their actions. Busey also gives a good solid performance and it reminds me of what a strong persona he gives off on screen. Emil as the professor is a character that has many more things on his mind then we originally thought. The last scene in this film is a demonstration of his darker side! One of the highlights of the film for me is the little conversation he has with the elevator man (Will Sampson of ""Cuckoo's Nest"") and they discuss what Cherokee Indians think about at all times. But of course the famous scene in this film is where Russell demonstrates to Emil how she does understand the theory of relativity and uses toys to show this. The professor is delighted by her demonstration and so are we! Russell and Roeg are married in real life and they do admirable work when they are in collaboration and this is probably their best film together. Good performances and a very interesting job of directing make this a challenging and visually thought provoking film.",1 +9682,"Warning: Does contain spoilers.<br /><br />Open Your Eyes<br /><br />If you have not seen this film and plan on doing so, just stop reading here and take my word for it. You have to see this film. I have seen it four times so far and I still haven't made up my mind as to what exactly happened in the film. That is all I am going to say because if you have not seen this film, then stop reading right now.<br /><br />If you are still reading then I am going to pose some questions to you and maybe if anyone has any answers you can email me and let me know what you think.<br /><br />I remember my Grade 11 English teacher quite well. His name was Mr. Krisak. To me, he was wise beyond his years and he always had this circuitous way of teaching you things that perhaps you weren't all too keen on. If we didn't like Shakespeare, then he turned the story into a modern day romance with modern day language so we could understand it. Our class room was never a room, it was a cottage and we were on the lake reading a book at our own leisure time. This was his own indelible way of branding something into our sponge-like minds. <br /><br />I begin this review of Vanilla Sky with a description of this brilliant man because he once gave us an assignment that has been firmly etched in my mind, like the phone number of a long lost best friend, and it finally made some sense to me after watching The Matrix. Now if I didn't know better, I would have thought that the Wachowski brothers were really just an alias for my teacher Mr. Krisak. But giving them the benefit of the doubt, we'll assume it wasn't him. But that was the first time this assignment was anything more than impalpable. <br /><br />He had asked us to prove to him and to ourselves that were real. Show me how you can tell that you are real. This got the class spouting off all of the usual ideas that I'm sure you can imagine. Everything from pain, to sense of touch to sense of loss to sense of hunger were spouted off to our teacher to prove to him that we were real. After every scenario that we gave him, he would come back with the one answer that would leave us speechless.<br /><br />""What if you are nothing but someone else's dream?""<br /><br />What if you were someone else's dream? What a messed up question that is. This was a question/scenario posed to us about 15 years ago, before the astronomical use of the Internet and rapid advancement of computers. How possible could it seem back then? But if you look at today's technology, now ask yourself, what it you were a part of someone else's dream.<br /><br />Another brilliant but surreal film this year, David Lynch's Mulholland Drive explored similar areas. But Vanilla Sky goes deeper than any other film could hope to. In short this is one film that will literally (if you let it) blow your mind from all of the possibilities that surround you.<br /><br />Open your Eyes.<br /><br />Tom Cruise plays David Aames, a young, hot shot, righteous, full of himself publisher and owner of several magazines. He inherited this from his father and although he has talent and business savvy, his board of governers, the Seven Dwarfs, think he is a rich dink born with a silver spoon in his mouth. They feel he has done nothing to deserve the pinnacle of success that each and every one of them believes should go to them. <br /><br />Early in the film we meet one of David's gorgeous toys named Julie Gianni, played with pernicious but bombastic perfection by Cameron Diaz. David and Julie play a good game, both claiming they are just there to use each other and are not the slightest bit interested in a monogamous, committed relationship. This is the type of relationship commensurate with David's other flings he's had in the sexual prime of his life. And although both talk a good game, we can tell that only one is really telling the truth. <br /><br />Next we meet Brian Shelby, played with a stroke of genius by Kevin Smith's good buddy Jason Lee. Brian is writing a book that David is going to publish but they are also very good friends. This is something that David has very little of in his life and you can sense a real caring for one another early on in the film. Brian has one famous line that he keeps telling David over and over again. And that is "" the sweet ain't so sweet without the bitter."" He goes on to tell him that one day he will find true love and not just this part time lover status that he seems to perpetrate with all of the floozies who inhabit his bed for a night or two.<br /><br />At David's huge birthday bash, (so huge that the likes of Steven Spielberg wish him a happy birthday) Brian enters with his date, Sofia Sorrano, played of course by Penelope Cruz with what has to be the best performance of this year by an actress. This is a bash by invite only and at first David and Sofia seem intrigued with one another. And in typical David fashion, despite his best friend being there, he begins to flirt with Sofia. To complicate things, Julie shows up uninvited and begins spying on David. David then spends the night with Sofia, but they only talk and draw caricatures of one another. There is no hanky panky. The next day, as David is leaving Sofia's apartment, he is greeted by Julie, who offers him a ride and from there.......well, I think we have all seen the commercials.<br /><br />That is all I will really say about the plot, because from here the film teases us with what is reality and what is blurred perception. We are introduced to a character played by Kurt Russel and a few other shady characters that all play a part in this labyrinth like haze. There is a subtext of death and possible panacea-like cure-alls that may or not be able to create the possibility of eternal life. This is just one of the intriguing possibilities the movie offers us, but it doesn't end there.<br /><br />Like many movies seem to thrive on today, this film has a secret. Sixth Sense may have began this craze, but look even further back and you can maybe thank Angel Heart for starting the craze. Regardless of how it originated, Vanilla Sky has one of it's own surreptitious gut busters. And what makes this one so much fun is that the film gives you many obvious clues along the way but not enough to give you an apodictic solution to the gauntlet of truth and lies you have just put yourself through. I have seen this film four times and every time it has been because I want to see if there is something more I can pick up, something more I can understand. To be able to work your mind in the theater, to enable it to open up to new possibilities is something rare in a film. All of the ersatz so called ""Best Pictures of the year"" have been good but nothing spectacular. They lack substance. A Beautiful Mind was intriguing but flat, The Royal Tenenbaums was interesting but uneven. Vanilla Sky is a rarity because it is a film that leaves you yearning for more yet guarantees your satisfaction because the film and those that made it care about it. I know this film has received mixed reviews but I just think that those who don't like it don't quite understand it. <br /><br />This is what film making is supposed to be like. This is what a film is supposed to do to you. It is supposed to make you feel something. Most of the other films this year have been just empty spaces. This one isn't.<br /><br />10 out of 10 The best film of the year. I would love to see this get nominated for best picture and I would love to see Cruz up for best Actress, Diaz for best supporting, Cruise for best actor and Jason Mewes should be a shoe in for best supporting actor. Cameron Crowe should there as well. None of this may come to pass, and that is a shame. This is one film that should not be missed. <br /><br />And on a final note, I am quite sure Mr. Krisak would like this film and maybe this is the one film that may answer his question. Can you prove you are real? Or are we just a figment of someone's imagination? Are we artificially transplanted for someone else's bemusement? This is a film that spawns more questions than it does answers. And I'm sure that is just fine with him.<br /><br />Open Your Eyes",1 +5071,"Love it, love it, love it! This is another absolutely superb performance from the Divine Miss M. From the beginning to the end, this is one big treat! Don't rent it- buy it now!",1 +24073,"""The Leap Years"" is a movie adapted from an e-novella by Singapore writer Catherine Lim, which became the first Singapore novel/novella to be sold over the internet. The film had a tortuous post-production schedule: shot in early 2005, it was slated for release at the end of 2005, but only turn up eventually 3 years later, on the 29th February 2008, a leap year.<br /><br />Before I say anything, I must first admit I'm no fan of the romance genre, so I may be a little biased against this film - I watched it merely because it was a Singapore production, and that it's available for borrowing at my neighborhood library. Here's my two cents on the movie.<br /><br />Let's just start by saying that other than Qi Yu-wu's KS and Wong Li-Lin, everybody here of note seems to be a Eurasian. The love interest is a Eurasian (Ananda Everingham), and Wong's trio of buddies are all, er-hem, Eurasians. Does this film perpetuate the stereotype that falling in love and associating with Eurasians are more ""in"" than the common Chinese (or whatever Asian race you are?) I don't know, it sure seems that way. Also, everyone in the movie speaks in some mystical ""anglified"" accent which doesn't exist anywhere, certainly not in Singapore. It's the kind of ""semi-perfect English"" that authorities would like us speak, but which doesn't exist anywhere outside, say, the MTV Channel. The effect is that the dialog of the movie sounds forced and stilted, not helped by the lack of true-blue Singaporeans in the cast.<br /><br />The scriptwriter seems to be trying too hard to string one-liners after one-liners. After twenty minutes, the ""wit"" of the movie starts to pall and the film starts serving up its usual plate of clichés. <br /><br />I guess I didn't enjoy the movie because the entire premise of sustaining a love affair over 16 long years seems unbelievable. <br /><br />There are other incredulities in the film. I can't for one believe that KS (played by Qi Yu-wu) would fall for one of Wong's girlfriends. And the scene where the bridegroom says, ""Go, before I change my mind,"" has been used in a hundred East Asian (Korean, Chinese, Hong Kong, Taiwanese etc) TV serials...<br /><br />So 4 stars for this film. The production value is fair, and Wong Li-lin tries her best, but she's not helped by the script. Joan Chen has a 15-minute bit-part in the movie as the older Wong and is perhaps the best actress of the lot, but, hey, her role is just cameo.<br /><br />If you come across ""The Leap Years"" in the rental or library, you may want to pop it in the DVD player for curiosity's sake, but otherwise, for people who don't exactly enjoy the romance genre, you can decide whether or not to give it a miss.",0 +18081,"This film is stale, and misses the mark. It is far off compared to the 89 Batman that it tries to coppy. That women singer whats her name can not act, and we see why her film carrier died. Notice how this film died in the box office no one see this film on tv either. My uncle and dad were expecting Batman, and the films impression is more like Cop Rock. Not worth renting 3/10",0 +23562,"This is one of the funniest movies i've ever seen. I rented it as a joke, expecting to get a giggle out of the first few scenes, and let me just say I've never laughed so hard in my life. The first scene where ninjas randomly pop out of the air and start a huge and ridiculous fire fight is one of the most incredibly funny stupid action movie moments of my life. This is not a dinosaur movie, but more a movie that makes fun (and doesn't mean to at all) of the action genre. I didn't see the first two, but judging by the complexity of the plot, I don't think there's to much I missed. If you wanna see a movie that goes great with a six pack or any herbal remedy, than I insist you rent this movie and sit back and watch a 100 years of advancement in cinema get thrown in the trash and get shat on by carnosours",0 +22482,"The funny sound that you may hear when you eyeball this execrable version of Jules Verne's classic ""Journey to the Center of the Earth"" is Verne spinning in his grave. The only thing about this 80 minute opus that has anything to do with ""Journey to the Center of the Earth"" is the title. Otherwise, everything else in this lackluster production is new and not worth watching. In fact, the director has written here at IMDb.COM that he directed only eight minutes of ""Journey to the Center of the Earth"" and the studio tacked on part of ""Dollman"" helmer Albert Pyun's sequel to his own ""Alien from L.A."" with Kathy Ireland. Evidently, the producers ran out of money and to satisfy overseas contractual obligations, they grafted Pyun's sequel onto director Rusty Lemorande's movie. Please, don't rent or buy this wretched piece of garbage.<br /><br />Unlike director Henry Levin's period piece ""Journey to the Center of the Earth"" (1959) with James Mason and Pat Boone, Lemorande's ""Journey to the Center of the Earth"" takes place in contemporary times in Hawaii. Two fellows, a British nanny, and a dog are brought together for the adventure of a lifetime purely by coincidence. Richard (Paul Carafotes of ""Blind Date"") and his comic book obsessed brother Bryan (Ilan Mitchell-Smith of ""Weird Science"") are going out to explore a cave. The heroine, Crystina (Nicola Cowper of ""Underworld""), works for a domestic service called 'Nannies R Us.' Being a nanny has been Crystina's life-long dream, but she has made a less of all five of her nanny jobs. Nevertheless, her sympathetic supervisor, Ms. Ferry (Lynda Marshall of ""Africa Express""), sends her to Hawaii. Crystina's new client, rock star Billy Foul (Jeremy Crutchley of ""Doomsday"") who is scheduling one last concert to revive his flagging career, has a dog named Bernard. Foul wants Crystina to take Bernard to a doggie day spa. Crystina is waiting on the arrival of her taxi when a careless motel attendant accidentally puts the basket that conceals Bernard in Richard's jeep. You see, Foul has hidden his canine in a basket because motel management strictly prohibits pets on their premises. Foul has disguised the dog as a human baby. Anyway, Crystina catches a cab and tells the driver follow Richard.<br /><br />After she catches up with them to get her dog, the cabbie cruises away and abandons her. Crystina demands that Richard drive her back to town, but he has other plans. Unhappily, Crystina joins the guys and they get lost, and then find themselves in the lost city of Atlantis, a police state ruled by a dictator, at the center of the Earth. The rulers of Atlantis repeatedly notify their citizens that life on the surface does not exist. Our heroes and heroine stumble onto Atlantis quite by accident. Atlantis resembles a disco and everybody looks like they are straight out of a punk rock opera. The ruler of Atlantis, General Rykov (Janet Du Plessis of ""Operation Hit Squad""), is orchestrating a raid on the surface with clones of the first human, Wanda Saknussemm (Kathy Ireland of ""Necessary Roughness""), to visit Atlantis. Predictably, General Rykov machinations to rule Atlantis and overthrow the Earth fails, and our heroes and heroine save the day.<br /><br />""Journey to the Center of the Earth"" is an abomination. The movie seems to be a comedy despite its superficial satire about dictatorships. Albert Pyun is one of my favorite low budget action directors, but he blew it on this lightweight shambles of a science fiction saga.",0 +11243,"When John Singleton is on, he's *on*!! And this is one of his better films. Not quite as tight as Boyz-n-the-Hood, but close to it (and with much of the same stellar cast). This film was very well written, very well put together, and very well shot. There's very little to criticize, and most of my complaints are superficial (eg: where did Fudge get the money for 6 years of college and a lot of expensive stuff? No mention of a rich background... And why doesn't Professor Phibbs have an office? A professor of his stature *should* have one... And while we're at it, for an engineering student, hick or not, Remy's a pretty dumb character - I'd think that he'd have a bit more in the way of basic intelligence - he talks and acts like a total buffoon).<br /><br />But that aside, the film was very sharp. A good array of characters and points of view; and Singleton doesn't take sides in the story - many of the characters are unsympathetic, and he does a good job of interspersing the Panthers and Supremacist scenes together to show the folly on both sides.<br /><br />Much of the cinematography was excellent; I especially loved the scene where Kirsty Swanson gets intimate with Taryn and Wayne each scene spliced together really well. Also the Malik/Deja scenes were really well shot as well.<br /><br />The dialogue was a bit much at times; this film had a tendency to get *really* preachy at times, and it also tends to hammer the points it was making over your head when the points would be just as clear with out the bluntness (we really didn't need the US flag with 'UNLEARN' typed onto it, give some credit, we're not morons...). And to top it off, although *most* of the time Singleton uses melodrama quite well, sometimes it gets *way* too cheezy (like Deja's death, which is fine until she screams out 'WHY!!!' which simply ruined the entire effect and scene).<br /><br />But the acting, in general, was top of the line. Fabulous performances by Omar Epps (perhaps the best I've ever seen), Kirsty Swanson (who knew Buffy could act??), Michael Rapaport (surprised the hell out of me...after True Romance and Beautiful Girls I though he was a one-role actor), and of course Ice Cube and Laurence Fishburne are *always* outstanding.<br /><br />Downside? Jennifer Connelly was flat; though it's not completely her fault: her role was stereotypical and one-dimensional. Generic to the highest degree. And Tyra Banks, who had the role, was nothing short of horrid. She whined and whined and whined. Yet another in the long line of models-turned-actresses who failed miserably (though there are a few who prove the exception to this rule).<br /><br />Finally, the soundtrack! Wow! An amazing soundtrack (which is definitely worth buying!) which fits the film like a glove. Each scene has a twin song (although the Tori Amos songs started to *really* annoy me by the end...not her best work). Liz Phair, Rage Against the Machine, Ice Cube...how can one go wrong??<br /><br />All in all: a really good watch, a really strong cast, great script, great film. 8/10.",1 +4705,"I'm amazed we see even one nay-sayer criticizing this old film. We don't ordinarily get good opera films, and here is a true grand opera rendition. Understandably, the visuals are not great. It's dated. But as opera it can't be faulted; and I'm an opera buff. I can't even detect one lip-sync; if we didn't know that was Tebaldi in the audio nothing would convince me it isn't Sophia Loren. She does EVERYTHING with flair! Her dark makeup is fine; and she brought the role to gorgeous life! The rest of the cast is wonderful, as is that stunning ballet troupe. Most of the actors are excellent; Loren truly marvelous. Her rival Amneris is also terrific. Whoever didn't care for this 1953 job is shamefully remiss. Verdi would have enjoyed it! Naturally, Renata Tebaldi as Aida is the engine behind the scenes. I love this old movie!",1 +20348,"The film did what it set out to do: show how a young girl copes with poverty and grows into her maturity. However, for most of us, this subject has been explored adequately and in most instances with more sophistication than done here. The movie fixated on breasts, which soon became boring and I lost interest. If this was on TV, I would've switched to the latest news on the Starr Report. That's how boring I found this movie.",0 +14222,"I knew I was going to see a low budget movie, but I expected much more from an Alex Cox film. The acting by the two leading men was terrible, especially the white guy. The girl should have won an Oscar compared to those two. This movie was filled with what I guess would be inside jokes for film industry people and a few other jokes that I actually understood and made me laugh out loud, which is rare. Without these laugh-out-loud moments I would have given this film 2/10. What happened to the Alex Cox who made all the 80s classics?<br /><br />SPOILER:<br /><br />There were a couple of questions I had after the movie was over. Why did the Mexican guy go to the other guy's house at the beginning? What did his daughter say he got 100 people fired from his last job? Why was she breaking her own stuff when she was mad at him? I guess I should have gone to the Q&A after the movie, but I didn't want to get up at 10am.",0 +8492,"Carl Brashear (Cuba Gooding, Jr.) was born to sharecroppers in the deep south. He joins the navy, whereupon he tells his father he will be back. The father gives him an old radio, and Brashear leaves on the navy bus. The Most valuable thing his unemotional father taught him was, ""Never quit"". After a recommendation from a white commander Powers Boothe), who admires his drive and guts, he gets sent to Navy diving school at Bayonne, NJ. He endures harassment from his pals in uniform and from his trainer, Chief Navy Master Diver, Billy Sunday (Robert De Niro), and from the commanding officer, called pappy, (Hal Holbrook, who ""has almost as many loose screws as an old car"". They all want to make him drop out, and the prejudice is quite fierce.The dangers of diving prove a further setback when he loses a leg due to an accident on board ship. Despite this setback, he tells his wife that he will train and achieve his objective, and with the help of Billy Sunday, (now both joined in commiseration in their sufferings), they train and he is able to become the first black Navy diver with his artificial limb despite the skepticism of a highly mocking and doubtful captain at the Navy Department hearing in Washington, DC to determine if he meets the criteria. An inspirational movie, showing that determination can overcome all odds.",1 +9767,"This Showtime movie really deserves a far better viewer rating than a 4.5; I gave it a 10 based on the story and the acting of the two stars. After reading the viewer comments, I was surprised at how many folks expected this movie to be a comedy. Yeah, I see that IMDb lists it as Comedy/Drama under Genre. That sure is misleading, isn't it? Fortunately, I saw the movie before logging onto this website so I did not have that expectation. In fact, based on the synopsis of what I heard, I fully expected it to simply be a Drama. I'm wondering if disappoint at this not being a funny movie caused so many low votes.<br /><br />Another factor that might have caused low votes is that this movie is very much 'character-driven'. 'Driving Miss Daisy' is an example of another character-driven movie that comes to mind. Someone's previous comment complained about a boring trial. Tom's (Danny Glover) work scenes seemed to distract from the real plot of the movie. That is, how he was engineering the upward social climb of his family - or his personal troops, if you will. However, they served to establish credibility and justification as his right to move to Greenwich and move 'up' in the world.<br /><br />Tom's obsession became a compulsion. He proved that he would stop at nothing to blend into the white neighborhood. His chagrin when another black person moved next door was not due to skin color. It was because of everything the 'interloper' represented; everything that Tom had left behind. In essence, Tom had become an Oreo cookie: Black on the outside but White on the inside.<br /><br />The last 20 minutes of this movie are among the most powerfully written, directed and acted (by Whoopi Goldberg) I have ever had the pleasure to witness. I realized that the climax of the film was not the obvious event that happened next door (don't want to give it away). The climax is verbal and Whoopi delivers it. I am still not clear if it is the conversation when she informs Tom which college Tom -Two is going to or when she releases it, all in the middle of the night and Tom wakes up. Nevertheless, the denouement is great. You know that life on that street will never be the same.<br /><br />My favorite kind of character-driven flick: people go through problems, some pain, do their dance, they grow, they change, and life goes on. As an audience member, I may learn something or be inspired.",1 +4336,"Kubrick proved his brilliantness again, now in a suspense-horror film based on Stephen King's book titled the same way. Jack Torrance is a man in his forties, married, with one child, and with a past of trouble and alcoholism. The Overlook Hotel in Colorado suspends service during the winter because of its extreme weather, and there is a well-paid job for the person who takes care of the facilities during those five months; and Torrance, who was looking to become a writer, found it perfect. But, the manager advised Torrance about the loneliness in this place during the winter, potentially dangerous, and told him that some caretaker in the past went crazy and murdered his family. Even before they got there, his son Danny, who has some sort of imaginary friend who illuminates him the future (shinning), knew the place wasn't good and didn't want to go. Once they installed themselves in the hotel, things started right but within a month, Jack began acting strange, irritated, and depressed. At this point, we know something is going to happen, but don't know when and how. Scary things happen such as the appearance of two twin girls talking to Danny, and someone who attacked him violently. They are not alone in this place. Later on, Jack started to see other people and immediately felt good with them, like if they were his family; among them the famous psychotic caretaker, Delbert Grady. Grady tells Torrance that he must kill his family because they are ""intruders"" in the hotel. Obeying this order, Jack went for the objective and many of the most scary things I've ever seen happen here. The ending is spectacular and the viewers will stay interested and shocked until the last minute.",1 +17688,"Oh man. If you want to give your internal Crow T. Robot a real workout, this is the movie to pop into the ol' VCR. The potential for cut-up lines in this film is just endless.<br /><br />(Minor spoilers ahead. Hey, do you really care if a film of this quality is ""spoiled?"") Traci is a girl with a problem. Psychology has developed names for it when a child develops a sexual crush on the opposite-sex parent. But this girl seems to have one for her same-sex one, and I don't think there's a term for that. It might be because her mother Dana is played by Rosanna Arquette, whose cute overbite, neo-flowerchild sexuality and luscious figure makes me forgive her any number of bad movies or unsympathetic characters. Here Dana is not only clueless to her daughter's conduct; she seems to be competing for the gold medal in the Olympic Indulgent Mother competition. <br /><br />It's possible that Dana misses Traci's murderous streak because truth be told, Traci seems to have the criminal skills of a hamster. It's only because the script dictates so that she manages to pull off any kind of a body count.<br /><br />A particularly hilarious note in this movie is the character of Carmen, a Mexican maid who is described by Dana as around so long she's like one of the family although she dresses in what the director thought would say, ""I just fell off the tomato truck from Guadalajara."" Carmen is so wise to Traci's scheming, she might also wear a sign saying, ""Hey, I'm the Next Victim!"" Sure enough, Traci confronts Carmen as Carmen is making her way back from Mass, and bops her with one of those slightly angled lug wrenches that car manufacturers put next to your spare as a bad joke. I rather suspect than in real life those things are as useless as a murder weapon as they are for changing a tire. <br /><br />In another sequence, Arquette wears a flimsy dress to a vineyard, under cloudy skies, talking to the owner. Cut to her in another flimsy dress under sunny skies, talking to the owner's brother. Then cut to her wearing the first dress, in the first location, under cloudy skies - but it's supposed to be later. You get the picture. We're talking really bad directing.<br /><br />As for skin, don't expect much, although Traci does own a nice couple of bikinis. <br /><br />For those looking for a trash wallow, 8. For anybody else, 1/2.",0 +20341,"Back when Alec Baldwin and Kim Basinger were a mercurial, hot-tempered, high-powered Hollywood couple they filmed this (nearly) scene-for-scene remake of the 1972 Steve McQueen-Ali MacGraw action-thriller about a fugitive twosome. It almost worked the first time because McQueen was such a vital presence on the screen--even stone silent and weary, you could sense his clock ticking, his cagey magnetism. Baldwin is not in Steve McQueen's league, but he has his charms and is probably a more versatile actor--if so, this is not a showcase for his attributes. Basinger does well and certainly looks good, but James Woods is artificially hammy in a silly mob-magnet role. A sub-plot involving another couple taken hostage by Baldwin's ex-partner was unbearable in the '72 film and plays even worse here. As for the action scenes, they're pretty old hat, which causes one to wonder: why even remake the original? ** from ****",0 +8454,"I went to a small advance screening of this movie on July 19th, knowing no more than the names of a few of the actors and that it was a fantasy/adventure quest of some sort.<br /><br />The plot line really is nothing like I have seen, and a unique story is certainly appreciated with everything else that is currently in or coming soon to theaters. In spite of what first impressions may give, it isn't cheesy, corny, tacky, or ridiculous, and is actually highly entertaining and funny. The flow is quite well done, nothing seems rushed or dragged out. The soundtrack, for lack of better words, is magical and adds much to the film, as opposed to simply filling the silence as often happens in movies or TV. And even though I might have known what was coming at points, I still couldn't bear to stop watching the screen; to my knowledge, not a single person left the theater during the entire movie.<br /><br />My one gripe is that there seems to be almost no marketing for this film, and as brilliant as it is I can't figure out why.",1 +7072,"I did not see this film in the theater. I confess to an anti-Vinnie Barbarino bias. Who the hell was John Travolta to be making movies? I remember the Oscar broadcast that year, with Travolta looking absolutely devastated when he didn't win. How dare he, when there were ""real"" actors in the running? I'm sorry John, you should have won. After catching this film on cable years ago, I fell in love with the entire movie. Bud, Sissy, Uncle Bob, Wes, all wonderfully done. I, also, confess to never passing it by when I channel surf. I HAVE to stop and watch. Over the years, I've learned to do most of the dialogue, dance with my thumbs in my waistband, and learned to appreciate Travolta more. The only disappointing thing to me was the oversight, on the soundtrack, of some of the music from Urban Cowboy. ""Looking for love"" defines the film, but Urban Cowboy was chock full of classics that DIDN'T make it to the soundtrack. It should have been a double CD........",1 +11092,"The movie was totally Awesome and Cool. The graphics was superb and it was amazing, Especially, Flik was superb and awesome in the movie and he was funny and he was and sometimes he was intelligent. The circus bugs are colorful and they are superb in the movie. The grasshoppers were also superb and cool in the movie. Hopper was a pure and perfect villain. Even, Dot was cute. When, the bird comes to eat the bugs, that scene was superb and good. Even, the last scene was awesome and cool. Even, Flik's inventions was good. Building an artificial bird was a good idea to scare away the grasshoppers. When, the ants are building the artificial bird, that scene was good and nice I should really appreciate the creators of ""A Bug's Life"".",1 +2055,"I have probably seen this movie over fifty times by now because of the kids they just cant get enough of Spirit. The best thing about the movie I think is that the animals isn't able to talk, this makes the whole movie more honest and makes a better impression on both kids and the adults so 10/10 from the kids and me",1 +221,"On Sunday July 27, 1997, the first episode of a new science fiction series called ""Stargate SG-1"" was broadcast on Showtime. A spin-off of and sequel to the 1994 film ""Stargate"" starring Kurt Russell and James Spader, the series begins approximately one year after the events portrayed in the film. For ten seasons, it chronicled the adventures and misadventures of an intrepid team of explorers known as SG-1. Originally, the series starred Richard Dean Anderson as Colonel Jack O'Neill (two ""l""s!), Michael Shanks as Dr. Daniel Jackson, Amanda Tapping as Captain Samantha Carter, Christopher Judge as Teal'c and Don S. Davis as Major General George S. Hammond. For ten long years, we watched the team battle against the Goa'uld, the Replicators, the Ori and many other aggressors. At the same time, they forged alliances with the Asgard, the Tok'ra, the rebel Jaffa, the Nox and the Tollan. They saved the world no less than eight times over the years and never gave up, not until death claimed them. And sometimes not even then.<br /><br />As with all long-running series, they were numerous cast changes. Michael Shanks left the series in January 2002 at the end of its fifth season in order to broaden his horizons as an actor. Daniel Jackson's successor as the team's resident archaeologist/geek was Jonas Quinn, an alien from a country called Kelowna on the planet Langara, played by Corin Nemec. However, Shanks returned at the beginning of the seventh season in June 2003 and Nemec left at the same time. Unfortunately, he made only one further guest appearance and his character was seldom mentioned afterwards. Don S. Davis left the series at the end of the seventh season in March 2004 as he felt that it was time for him to go. The show's original star and arguably its most popular actor, Richard Dean Anderson, starred in the series throughout its first eight seasons. His participation in the seventh and eight seasons was noticeably less than in the earlier seasons. He finally left ""SG-1"" in March 2005 in order to spend more time with his then six-year-old daughter. Jack O'Neill was by far my favourite character in the series and, truth be told, I never enjoyed the last two seasons as much as I did the earlier episodes for that very reason.<br /><br />The ninth season represented a new era for the programme. With the departure of its lead actor and the defeat of the Goa'uld and the Replicators in Season Eight, many fans felt the series should go out on a high. Regardless, the series carried on for a further two years with the Ori replacing the Goa'uld as the series' main adversaries. Three new characters were brought in to fill the gaps as it were and help usher in this re-invention. Ben Browder came in as the cocky Southern Air Force pilot Lt. Colonel Cameron Mitchell, the new leader of SG-1. His ""Farscape"" co-star, the lovely Claudia Black, began to play a prominent role in the series as the vivacious, sexy, hilarious and certainly extroverted Vala Mal Doran, a former Goa'uld host and con artist from another planet. A recurring guest star during the eighth and ninth seasons, she joined the cast full time at the beginning of its tenth and final season. Rounding off the cast was the legendary Beau Bridges as Major General Hank Landry, the new commander of the SGC and an old friend of Jack O'Neill and General Hammond. For the last two years, they starred alongside the ""SG-1"" faithful (Michael Shanks, Amanda Tapping and Christopher Judge) and became valuable parts of and made equally valuable contributions to the Stargate franchise.<br /><br />Alas, all good things must come to an end. During the initial broadcast of the first several episodes of Season Ten, ratings dropped considerably, resulting in cancellation in its August 2006. After ten seasons and 214 episodes, the dream was finally over. On March 13, 2007, what began with ""Children of the Gods"" ended with ""Unending"". The series finale made its world premiere on Sky One in Britain and Ireland before being shown on the Sci-Fi Channel in the United States on June 22, 2007.<br /><br />In the ten years that the series was on the air, it amassed legions of fans and even eclipsed the science fiction series, ""Star Trek"", in terms of popularity in certain countries. It became the second-longest running sci-fi series in the world, second only to ""Doctor Who"" (1963-1989), and the longest-running American produced sci-fi series, having surpassed ""The X-Files"" only a few months before it ended.<br /><br />""Stargate SG-1"" represents the cornerstone of the ""Stargate"" franchise. In 2004, its success and popularity led to the production of a spin-off series entitled ""Stargate Atlantis"", which was regrettably cancelled after five seasons and 100 episodes in August 2008. Although plans for another feature film fell through, two direct-to-DVD films, ""Stargate: The Ark of Truth"" and ""Stargate Continuum"", were released in 2008 and more are planned for the not too distant future. A third live-action series, ""Stargate Universe"", is also due to premiere at some point next year. (There was, unfortunately, an animated series, ""Stargate Infinity"", which ran only from 2002 to 2003 but the less said about that the better). Despite the end of ""SG-1"" and ""Atlantis"" as continuing series, the future of ""Stargate"" looks very bright indeed.<br /><br />In conclusion, while ""Stargate"" has yet to gain the same degree of popular recognition as other major sci-fi television franchises such as ""Star Trek"" and ""Doctor Who"", its still relatively new compared to those two sci-fi giants and I have every confidence that it will continue for many, many years to come.",1 +17661,this movie is the worst ive seen.. nicole kidman really dissapointed me.. this movie has nothing. i would not watch it again even if it were the last movie on earth. great actors but bad script.,0 +4672,"There are very few performers today who can keep me captivated throughout an entire film just by their presence. One of those few is Judy Davis, who has built a successful career out of creating characters that are headstrong in attitude but very vulnerable at heart. She takes roles that most other performers would treat melodramatically and adds a fiery, deeply emotional intensity that pulls attention away from everything else on the screen.<br /><br />Her skills are well displayed in ""High Tide,"" a film that matches her up a second time with director Gillian Armstrong, who gave Davis her first major success with ""My Brilliant Career."" In that film, Davis played a young woman who was determined to make it in the world, despite the suffocation she felt from her community and upbringing. In ""High Tide,"" however, Davis' character, Lillie, is roughly the opposite: she gave up on any hope for her future when she was young, and, after giving birth to a child, runs from her responsibilities and takes up a life without direction or meaning. When she finally meets up with her daughter years later, the thought of taking care of her child is petrifying; she knows this is her chance to atone for her failures, but how can she be honest with her daughter and still gain her respect?<br /><br />Gillian Armstrong's films usually relate stories about characters who desperately want to communicate with each other, but face obstacles set up by their own personal habits and addictions. ""Oscar and Lucinda,"" for instance, was about a man and a woman who desperately needed each other's love but were always blindsided by their craving for chance, represented by their gambling addictions. Here, we are immersed in the world of a family torn apart by the mother's inability to commit to a settled life and her struggles to redeem herself despite being fully convinced that it's too late to change for the better. This is not simply a film with a great performance at its center, but also a rare achievement: a fully convincing story of redemption.",1 +8299,"As a massive fan of fantasy in general, and of the works of Neil Gaiman *in particular*, I've been looking forward to this film so avidly, so hungrily and with such a bittersweet mixture of anticipation and fear of disappointment that I can scarcely believe it's finally here. And you know what? I needn't have feared, the film version is bl**dy awesome. Different from the book, but in a good way - less whimsical, more comical, still deeply sweet and enchanting.<br /><br />The special effects are absolutely spot-on, and make magic feel a natural and proper part of the world of Wall without being overtly spectacular and intrusive.<br /><br />Proper attention has been paid to storytelling and pacing, and the casting in the main is a triumph, with the ghostly Princes (whose roll-call read almost as a ""Who's Who"" of currently cool British comedy - Rupert Everett, David Walliams of Little Britain fame, two of the blokes from Green Wing etc) stealing most of the best lines and pretty much all of the films' funniest moments, which exist in abundance. <br /><br />In fact, the one minor criticism I have at all of the film is that sometimes the comedy elements become a little OTT, subtlety goes out of the window to the detraction of the main story.... Ricky Gervais' cameo, for example, was far too much just ""Ricky Gervais doing his usual David Brent from the Office comedy persona"" for my liking, and in my opinion, created an unwelcome and jolting break from the magical spell of the progressing story (though in fairness, from memory I believe the Ferdy character in the original book WAS pretty ""Ricky Gervais""-esquire when I think back on it)....<br /><br />But this is a minor quibble in an otherwise immaculately cast and scripted fairytale with a good mixture of action and romance. Charlie Cox, as the protagonist Tristan, captures the correct mixture of naivety, subtle comedy and self-realisation required for a story like this where a ""humble young boy embarks on life-changing quest""; Claire Danes as Yvaine is beautiful, feisty and just ever so slightly alien or ethereal, a perfect interpretation of her stellar role; Robert De Niro, in the cameo every reviewer is talking about, is indeed deserving of praise, rollicking good fun (looks like he's having a ball, too)... and Michelle Pfeiffer is triumphantly cool and nasty as wicked witch Lamia, my favourite performance of the film overall. If you enjoyed her deliciously b!tchy performance in the recent ""Hairspray"" then you will thoroughly enjoy her in this, too.<br /><br />So to round off this review: you will laugh, for sure, you will smile, and you may even cry - Stardust is a beautiful, heart-warming fairytale for all the family, with a heart of gold and more sass 'n smarts than is immediately apparent. One of my all-time favourite films is the absolutely fantastic Princess Bride, and Stardust is being readily likened to this with good reason as it is a very similar type of film exploring similar themes and territory.... and just as The Princess Bride remains fresh, smart and funny twenty years after its initial release, I believe that the delicious tongue-in-cheek sweetness of Stardust will be showing up as a family favourite on our televisions (or equivalent future device!) for many years to come.",1 +14063,"This movie is a perfect example of an excellent book getting ruined by a movie. Jacob Have I Loved is quite possibly the worst film that I have ever seen. There is no storyline, plots disappear, and the editing is awful. To top it all off, the music is straight from a synthesizer and sounds unbelievably terrible. Bridget Fonda's acting is decent, but everyone else's acting is totally amateur. I would suggest this movie to someone who is studying to be a producer as a study on how not to produce a movie as it is chock full of bad cut-scenes, bad transitions and acting that should have been re-shot! Read the book and don't waste your time with this film.",0 +15940,"SCHIZOPHRENIAC: THE WHORE MANGLER is another example of what happens when you get a bunch of untalented people together to make an ""extreme"" horror film. Any sort of acting, production, storyline, FX, etc...go out the window in an effort to create ""shock-value"". Now don't get me wrong - I consider myself a connoisseur of ""shock"" films, and the sleazier/gorier/nastier the better - but it's still nice to see SOME sort of talent from SOMEONE involved in the film.<br /><br />SCHIZOPHRENIAC chronicles the life of Harry Russo - a drug-addicted freak-show who takes orders to kill from his ventriloquist's dummy, Rubberneck. He goes on a few sprees killing hookers and other random people, and screaming about how much he hates ""hoo-uhs"" (that's ""whores"" for those of you that don't speak New York-ese...) and how he wants to rape them in the ass. There are a few weak necrophilia scenes, very little gore, and some nudity to mix things up a bit - but nothing that you haven't seen in a better film...<br /><br />The only redeeming thing that I can find in this retarded film are the often (unintentionally?) hilarious screaming-fits from our main man, Harry. He goes on-and-on-and-on about wanting to kill everyone and do them in the ass, and it really becomes quite comical after a while. In fact, I'm almost tempted to believe that there's supposed to be some sort of homo-erotic undertone to this film, with all the ass talk and constant shots of Harry running around with his dong hangin' out. In all honesty, that joker is nekkid more in this film then the few chicks that show some T-and-A (and some full-frontal, for good measure). SCHIZOPHRENIAC is mildly amusing as a 1-time watch, but I can really only recommend this to those that want to be able to say that they watched a film called SCHIZOPHRENIAC: THE WHORE MANGLER. To be honest - the title, by far - is the best thing about this trash...A generous 3.5/10",0 +11799,"I had never heard of this film prior to seeing it, I wondered if it was an independent film, and I was correct, but with a good cast I decided to chance it. Basically drifter Michael Williams (Nicolas Cage) is in the town Red Rock, Wyoming, looking for a job, and meeting bar owner Wayne Brown (Pleasantville's J.T. Walsh) he is given a large sum of money, mistaken for a hit-man he has hired to kill his unfaithful wife Suzanne (Lara Flynn Boyle). He does not correct him, takes the money, and goes to warn Suzanne, and after she makes him a counteroffer, he decides he needs to leave. When Wayne knows his real identity, he chases Michael shooting a big gun, until he gets in a car with Lyle from Dallas (Dennis Hopper). But things get complicated when Michael realises Lyle is the hit-man he was mistaken for, and he makes a quick retreat. He goes back to Suzanne, and knowing they are both in danger, they plan to leave town together, and add another complication by falling for each other. Before they leave however, Suzanne insists they go and steal a big amount money in the safe. Of course things aren't going to go smoothly, and Wayne and Lyle catch up to them, and Lyle forces them and now tied-up Wayne to go and get the buried money. In the end, Lyle and Wayne both get what they deserve, Michael and Suzanne do get on a moving train together, but it is obvious she cares more about the money, and she gets what she deserves too. Also starring Craig Reay as Jim, Vance Johnson as Mr. Johnson, Timothy Carhart as Deputy Matt Greytack, Dwight Yoakam as Truck Driver and Robert Apel as Howard. The performances, apart from maybe a lame Boyle, are all fine and dandy, and it has got quite a good film noir feel for a black comedy thriller. Very good!",1 +1108,"This movie is about this wimpy guy who decides to become a spy for a glamorous high tech company named Digicorp. This wimpy guy, Morgan (Jeremy Northam) is unhappy with his miserable suburban life and his demanding wife so he decides to become a spy. He is suppose to go to conventions from other high tech companies and find out all the companies' plans. Instead, Morgan finds himself attracted to a beautiful woman (played by Lucy Liu) and pretty much being double-crossed by these two companies that force him to become a double agent. How will Morgan get himself out of this? Can he trust the beautiful but mysterious Rita Foster (played by Lucy Liu)? And more importantly, can Morgan make it out alive? Wow! What a nifty movie! I was completely sucked in after 15 minutes of watching this movie. It is very suspenseful and you can feel Morgan's fear and confusion as he is doing his best to stay alive. The scene where they put this horrible contraption on Morgan's head to brainwash him is brilliantly creepy and frightening. Morgan slowly goes through a personality transformation that is not so readily apparent until you think about it after the film is finished. From a wimpy guy with bad hair and glasses, he turns into a man actively fighting for his life.<br /><br />The ending, wow, the ending is incredible! The twist is so much fun! It left me gasping and cheering like crazy! Good performances from all around, especially from Jeremy Natham, Lucy Liu and Nigel Bennett.<br /><br />I highly recommend this film!",1 +20867,"I give this movie 3 out of 10 because I have watched zillions of movies and I can tell clearly what an intellectual movie with a mind-teasing message should look like. Definitely, The Broken is not one of those movies. I have to admit that the movie made me think a lot trying to understand what the whole thing was trying to lead to and despite the explanations I've read in prior comments, they seemed only an exaggeration just to have one self in the intellectual league of people. the photo on the cover clearly shows that the Broken is the broken upper piece of the face which normally contains the brain. It's a clear message that once this part of the body is broken the rest will be deformed and lifeless. So, you start waiting on the movie characters to show their defected sides and this is not obvious in any of the scenes because the movie starts right away without any introduction to the characters and their lives before. Though we see the father holding a rifle when his children try to surprise him as if he is aware he has enemies but still this is not a very strong clue. Had the clues been planted more in the movie, one would have said about that it is a masterpiece indeed. But though the movie was so slow in pace, it was at the same time so empty with no metaphorical scenes at all. And the reuniting of the evil dad with the evil Gena at the end is a strong refuting evidence of the existential messages that some people spoke about in other comments. Furthermore, if Gena truly lives in the apartment as her brother tells her at the end, then how come she is the evil one? I bet I can defy any theory about this movie with so many questions that can only lead to one conclusion: This movie is a pretentious one and a waste of time. Obviously it shows someone trying to make out of a meaningless mystery something which is of no value at all. I am a huge fan of horror movies and specially slasher ones that some people call popcorn movies. Horror movies are not supposed to convey deep messages! They're supposed to uncover the beautiful mask of life and show you the other dark side of it which is the truest, I guess. Horror movies should have blood, screams, intensity, skeletons, body organs and parts. Because that is the real horror and it's never away from reality. I have watched almost all horror movies and I can prove that each one of them can be as real as the sunrising. Nothing is unreal as long as the mind had thought of. For instance, the horror movie ""Train"" with all the slashing and tensity of it and its similarity almost in everything with ""Hostel"", it speaks about a very real thing which is selling body organs illegally by abducting people in foreign places where no one would ask or search for them.<br /><br />And even if we considered the Broken a movie that has an existential message, it is still very poorly presented and the least scary. I prefer the addiction message presented in Requiem for a Dream which went beyond drug addiction to highlight the fact that any kind of addiction whether for sex, TV, safety/being pampered, etc... can be so destructive and it scared the hell out of me. And those who always criticize horror movies for being meaningless and very commercial, are usually just bunch of people who get scared easily and simply don't like this genre but this doesn't mean that there are fans of such movies and that they have a lot to offer to the viewer from adrenaline turmoils, ecstasy, leadership lessons (believe it or not!), entertainment to most importantly the face to face interview with the essence of life, as ugly and scary as it may seems, Death!",0 +16476,"When they killed off John Amos's character they killed the show. He was the vital part of the info structure. You had a story of an inner city family's struggling to make it the best way they knew how. They were poor, they were black, and they were living proof that if you have Jesus and your family that nothing is too hard. Sure James would lose jobs and JJ would fail in school but the family always managed to find a way. <br /><br />James was the strong male role model that earned the income and disciplined the children. Florida was the strong lady that would everyone including James when he needed a shoulder to cry on or hug to make it. The kids had personalities and input which made them important as a family unit. Their neighbor Willona was also a key element because she represented not only a friend but some dear enough to be family. Things were bright, gritty, funny, and honest until they changed the course of the program. James dies and JJ took over the show. <br /><br />Flo was still mom, Thelma was blossoming into a lady and Michael was still the militant midget but JJ was the show. We were expected to believe that the family with no father or prominent bread winner was going to be able to stay in the apartment. I guess James's paycheck didn't do much for the family. They were only threatened with eviction because they said they were moving and not because no one in the house was working. I know that JJ, Flo, Thelma and even Michael eventually got jobs but come on here be for real. James worked so much that you could feel for him but the others weren't realistic at all and that's a shame.<br /><br />JJ was the comic relief but I felt the show need substance. It's OK to be funny but they had a chance to show a real family and what it took to survive in the real world and they threw it all away on a few laughs. Michael's character almost disappeared while the rest of the cast slipped into the shadows of the JJ Evan's show. I mean really, here was a guy that was failing in school, he kept getting laid off, and he painted for money in about two episodes. James had always been there to encourage his talent but Flo and the rest of the family didn't seem to care.<br /><br />Why did it take him so long to understand that painting was what he was meant to do? He could have sold painting's on the street or worked for people that print billboards and cards. (He did but something went wrong with that.) Why did he not make it and why did the others give up on their dreams? I'll tell you why, it was because they didn't have a father in their life to care and to cheer them on and their mother stopped being their to support their dreams. The show stopped teaching us about growing, building and learning and started teaching us about gimmicks and catch phrases. They should have kept James. If any show needed a father it was that one.",0 +18001,"I was in physical pain watching the eyes of the cast as they participated in this sham. Bad dialogue, worse (worst) acting, lifeless all the way, and the cast knew it. The two preceding movies which this attempted to copy had life, sparkle, and were captivating.",0 +23628,"Is this the movie??? Is this what Indians are trying to show?? I think this is one more effort from a sick-minded director to turn down Pakistani soldiers and in fact country....but what we Pakistani's know that we are always ahead of India in every part of our lives...not only in armed counters.<br /><br />Well...this is bad filmed as that of Border in early 1997...and director and writer just tried to overcome a shame of defeat in Kargil by Pakistani armed forces, by creating films like these..<br /><br />One thing is very clear...Whenever there will be an encounter between Pakistan and India....we will win....!!! So Mr. Dutta try to make some good movies instead of Nonsense movies like this",0 +4343,"A series of random, seemingly insignificant thefts at her sister's boarding house has Miss Lemon quite agitated. A ring, light bulbs, a rucksack, a lighter, a stethoscope, a shoe there seems to be no rhyme or reason to any of it. Miss Lemon asks her employer, the great Belgian detective Hercule Poirot, to look into the matter. But what Poirot sees is something far more sinister than Miss Lemon could have imagined. And Poirot's fears are confirmed when one of the students living in the boarding house if found murdered. It's up to Poirot to bring a killer to justice.<br /><br />Hickory Dickory Dock is a solid, but not spectacular, entry in the long running Poirot series. I appreciate how faithful the script is to Agatha Christie's original story. I realize that certain liberties had to be taken, but I appreciate the effort nonetheless. The major points of the mystery are all there the petty thefts, the boarding house, the students, the ripped rucksack, and, of course, Poirot's ability to see something sinister going on before it actually happens. With a few exceptions, the cast of students is almost as I pictured them. Damian Lewis and Jessica Lloyd standout among the group. As mush as I always enjoy David Suchet's Poirot, I get a real kick out of the episodes with Phillip Jackson's Inspector Japp and Pauline Moran's Miss Lemon. This episode is a real treat as Miss Lemon gets more screen time than usual. Finally, I enjoyed the use of the ever present mouse as an observer of the activities in the hostel. It's a fun little play on the Hickory Dickory Dock title.<br /><br />I realized while re-watching Hickory Dickory Dock just what a tremendous influence Agatha Christie's work was on the highly stylized Italian mystery films, or Gialli, of the 60s and 70s. Take the murder of Mrs. Nicoletis as an example. If you were to bump up the graphic nature of the scene, you would have something straight out of an early 70s Giallo. In fact, the entire plot of Hickory Dickory Dock could have been used in a Giallo. It's just convoluted and interesting enough to have worked.",1 +3382,"Evening is the beautiful story of the flawed love of a mother. The movie split in time, is magically shot, amazingly acted and has a touching script. Vanessa Redgrave plays Anne Grant Lord, a woman sun-setting out of life. Lying in her bed, her mind remembering and misfiring, she recalls her first mistake. Claire Danes plays the young Anne, giving a youthful vitality to dying bed ridden woman. Daughters Nina (Toni Collette) and Constance (Natasha Richardson) try to decipher the real story from the disheartening dementia. Her first mistake revolves around Harris Arden (Patrick Wilson); the man her best friend Lila (Mamie Gummer) deeply loved. The daughters must come to terms with their mother's past, and their futures. The cast is glowing in Evening. The collective acting energy of this movie could have powered the equipment for the production of this entire film. I am so glad to see Claire Danes working again, especially in this role. She is so young, and alive, fully living the joys, mistakes and heartbreak of young Anne's first mistake. This is a true feat when you realize she is playing a woman, dying in bed. When her life overwhelms her, you can feel her desire to crack and her hopeless hope that she won't. Some of her facial expressions grinded on me a little, but over all her performance was so radiant, I was left with that only as a side note. Toni Collette continues to prove that you can be a powerful actress without being a super model. She plays the black sheep of the family; a little lost. Nina finds a great deal of strength in her mother's mistake. Collette delicately avoids creating a cruel character who revels in the mistakes of her mother, instead choosing the wiser path of learning from her mother's mistakes. There is a great deal of infighting between Nina and her sister Constance. Their fights remind me of ones I have with my sister all the time. Mamie Gummer, who plays Anne's youthful best friend, is wonderful. Her character is stuck between her heart and her status in society. Even when she is crying and her heart is breaking, she is incredibly regal and charming. I can't wait to see her act in something else in the future. Vanessa Redgrave's performance is very hard for me to describe. Her talent at making her mental status ambiguous without being wacko or even especially tragic is why it is so powerful. The audience does not know if she is making up the story because she is slipping away or if these events truly happened. Physically and emotionally speaking, Redgrave is acting in a box. Not much physical space and limited emotional range might have been a stunner to a lesser actress but she makes the limitations work for her. I was constantly amazed. The movie is definitely woman-focused but the men in the movie are not just accessories. Patrick Wilson is mesmerizing as Harris. It is no wonder that everyone in the movie is in love with him, I sure was. Buddy Wittenborn is Lila's brother, spiraling out of control. Hugh Dancy spirals Buddy out of control without sending his acting down the drain. Glen Close has my favorite scene in the movie. It reminded me of the famous scene from Monster's Ball. It is terrible and jaw dropping grief. I was utterly stunned. The one acting disappointment was Natasha Richardson. While her fight scenes were memorable, most of her acting reeks of melodrama. It would have suited her to take an acting bath before we had to breathe her stink. It's a good thing she wasn't in charge of the visuals. The visuals of the movie are sparkling. Cinematographer Gyula Pados couldn't make a film richer in color, light so perfectly matched to mood and emotion. The visual concepts of the flash back sequences are powerful and resonating. There were many scenes that could have been stopped, printed, mounted and sold as art. I admit it, I cried. Evening is a powerful movie. Evening is defiantly a chick flick but a really great chick flick. If you want to impress a woman with a movie choice, pick Evening.",1 +22973,"90 minutes of Mindy...Mindy is a tease to boyfriend Bill...Mindy prances at the high school dance...Mindy hitchhikes to Big Sur, shoplifts a loaf of ""shepherd's bread,"" Mindy nearly gets gang-raped... Ah, the pleasures of Crown International drive-in features. You must remember that these films were never designed to be watched start to finish on DVD players. They were made as 90 minutes of ambiance so the teens of the 70s would have a soundtrack as they got it on in their Pintos and Citations. The lack of pacing and structure didn't matter to the original audience -- they probably only tuned in when the T & A on screen matched what they were up to, out in the parking lot. The film is really irritating when watched as a story. It's a lot more fun to talk about it than watch it. My favorite inanities: 1) Bill and his friend accompany the teacher to find Mindy. With no luggage or change of underwear, they spend 2 nights sharing a motel room with the teacher, just like in real life. 2)After being abducted and nearly raped by depraved bikers, and after their innocent friend ""Pan"" is savagely beaten, Mindy and her girlfriend find an unattended motorcycle on the road. Mindy immediately brightens up and chirps, ""I'm going' to Big Sur!!"" But again, it's a lot more fun to talk/read about than sit through.",0 +3732,"I have passed several times on watching this since I figured it was some dumb, sappy, dated romantic comedy. Well, it is a romantic comedy, and maybe a little dated. However, it is not overly sentimental, touching as it does on themes of office politics, adultery, and loneliness. You think you know exactly where things are headed, but there is an element of unpredictability that keeps your interest, and not everything turns out quite as you had expected. But, there is enough wit and charm to touch the most inveterate cynic. If you meet someone who doesn't like this movie, seriously consider how well you want to know them.",1 +22977,"The reason the DVD releases of this film are in black and white is because nobody can get their hands on a color print of this public domain film, a modest sea story at best.<br /><br />Distributed for television thru Allied Artists, DVD's (or VHS) on the market at this time for this title are all coming from the same 16MM television print. Films distributed for television prior to 1963 were often distributed in b/w prints, because the bulk of viewers did not have color sets anyway. Striking b/w prints for television was also cheaper, as it often involved quite a few prints to cover all stations running a film on a syndicated basis.",0 +8279,"Hal Hartley's Henry Fool was an independent film masterpiece and certainly his best work. It has immense character depth, subtle, complicated dialogue, and an excellent, emotional ending which captivates. I remember pausing it several times during my first viewing to absorb what I was seeing and feeling. Henry Fool was a complete movie from start to finish, and needed no sequel.<br /><br />Thus I was surprised when I heard about Fay Grim. Fay was not one of the main characters of the first film and seemed to exist more as the troubling imposition of real-world vanity and ignorance for her brother Simon to be forced to deal with as he matures. In her own movie, Fay matures herself, though her maturity takes a very different road. Simon went from near autistic isolation to a merely somewhat-introverted genius. Fay starts her adult journey as an immature, utterly normal, spoiled child and responds to the onslaught of ridiculous circumstances by becoming a mature, utterly normal, experienced adult who holds no advantages. She deals with problems the way any human does, with determination, a little thought, and weary disdain. While Simon learned to control his mind, Fay learns to control her emotion.<br /><br />The movie contains several fondly remembered elements of its prequel, but differs vastly in tone for most of the film. Henry fool showed you a harsh, boring, ignorant world which contrasted with Simon's inner passion and creativity. In Fay Grim, the world is a lively, crazy, emotional place which shows the silliness of her young life, and through contrast unearths the inner wise woman which had not been previously developed or nurtured by her similarly weak mother.<br /><br />The movie is in two parts, the first dealing with the beginning of Fay's struggle and subsequent hardening due to authoritarian hostility, and the second dealing with her battle to soften only just enough to regain Henry. At first, fans of Henry Fool may find themselves wondering how the movie can even be considered a sequel, and thinking it is profane to follow such an intense film with spy game antics and physical comedy. But this is where the subtlety of Fay Grim lies. The sequel is about Fay's journey, and as I said before, hers is one of finding the life-giving sanity in chaos, not the creative chaos in staid order. Parker Posey is an excellent actress who captures Hal Hartley's tongue in cheek humor perfectly. Elina Löwensohn perhaps eclipses her in emotional commitment to the role, allowing Parker to play both straight man and comic against the lively, stage-like comedy happening around her.<br /><br />With the entrance of Henry into the picture, the movie begins to take a sobering turn. Hal Hartley's movies are all plays, and every play must come full circle. By the end, you are shown Fay's newly developed character and integrity are the offspring of her time with the fatally intense Henry, whose piercing honesty and unique passion lights a spark in anyone he meets.<br /><br />Fay Grim is an excellent movie which does not surpass Henry Fool, but shows through Hal's range that the nuances of his art are the proof of his genius.<br /><br />Honestly, I think anyone who bashes this movie not only missed the point by a mile (and especially the subtlety in Parker Posey's acting), but could not have been much interested the movie Henry Fool.",1 +2362,"Bette Davis turns in a coldly amusing performance as Mildred Rogers in this 1934 film. The film seems rather dated now in 2003. It is no doubt well worth watching for film buffs and Bette Davis fans but may not have as much appeal for the average movie watcher today. It was startling for me to see how young Ms. Davis looks in this move. The actors turn in performances which are basically sound and the story is meaningful and interesting. Leslie Howard is well cast as Philip Carey, the club-footed medical student. This is a film with a strong message about whom we choose to love and why. However, ""Of Human Bondage"" didn't seem to have a strong impact on me mentally or emotionally. I felt slightly indifferent and detached about the movie after viewing it. I have an intuition that this may be the reaction that the director was going for. You be the judge!<br /><br />",1 +22930,"""The Bat People"" is a proud resident of the IMDb Bottom 100. Every once and a while the movie suddenly vanishes from the infamous list, depending on whether there are new movies with Paris Hilton in the lead or documentaries about American Idol stars, but it always reliably returns sooner or later. And why? Because, unlike the majority of crap in that list, ""The Bat People"" is a legitimate bad film and it deserves to be on there regardless of any media influences or internet buzz! This nearly isn't the worst film ever made, since the basic concept definitely has a certain charm and ingenuity, but it's still indescribably difficult to sit through the whole thing. The script is incredibly boring, with absolutely unnecessary padding footage and gigantic gaps in continuity, and yet the main characters still remain total strangers throughout the entire film. Other than a sensible screenplay, the film also lacks spectacular killing sequences and the make-up effects although courtesy of a young Stan Winston are ludicrously inept and remain largely unseen until the end of the film. The film's title is inaccurate, as ""people"" refers to a number in plural whereas the story actually just revolves on one Bat Person. Much more than Bruce Wayne, the real Batman plays in this movie and he as well has a genuine Bat-cave and a Bat-mobile (a stolen ambulance)! The plot introduces a young couple on their honeymoon-weekend exploring caves. They wander off from a guided tour group and he gets bitten by a bat whilst trying to protect his wife from the animal's vicious attack. Worried that he might be infected with rabies, he undergoes an intense treatment at the local hospital, but still this doesn't prevent him from slowly transforming into a bloodthirsty bat creature. He kills random people at night and toys around with the suspicious police sergeant whilst his loving wife is still vastly convinced the awkward behavior is exclusively due to allergic reactions to the rabies treatment. Sure, honey! The script never explains why a bat would attack people and how come John always changes back into a normal human being at the dawn of a new day instead of gradually turning into a permanent state of bat-guano. So basically, ""The Bat People"" is a variation on the good old werewolf-theme, but obviously not a very interesting one. The concept showed a lot of potential, but somehow the sub plots center on whiny drunks and perverted Sheriffs instead of on ghastly monsters. Some of the settings and exterior filming locations look impressive, the misfit song playing during the credits is strangely catchy, there's a nice bit of gore during the climax (finally!) and main actress Marianne McAndrew is ravishing to look at (though not to listen to). This truly bad and boring film's current listing in the bottom 100 is spot number 80, and personally I hope it sticks somewhere in that region. The list simply wouldn't feel and traditional without ""The Bat People"".",0 +13548,"Now, I've seen a lot of bad movies. I like bad movies. Especially bad action movies. I've seen (and enjoyed) all of Jean-Claude Van Damme's movies, including the one where he's his own clone, both of the ones where he plays twins, and all three where he's a cyborg. I actually own the one where he plays a fashion designer and has a fight in a truck full of durians. (Hey, if nothing else, he's got a great ass and you almost always get to see it. With DVD, you can even pause and zoom in!) That's why you can trust me when I say that this movie is so bad, it makes Plan 9 look like Citizen Kane.<br /><br />Everything about Snake Eater is bad. The plot is bad. The script is bad. The sets are bad. The fights are bad. The stunts are bad. The FX are bad. The acting is spectacularly, earth-time-bendingly bad, very probably showcasing the worst performance of every so-called actor in the cast, including Lorenzo Lamas, and that's really saying something. And I'd be willing to bet everyone involved with this movie is lousy in bed, to boot. ESPECIALLY Lorenzo Lamas. <br /><br />It does manage to be unintentionally funny, so it's not a total loss. However, I recommend that you watch this movie only if you are either a congenital idiot or very, very stoned. I was able to sit through it myself because I needed to watch something to distract me from rinsing cat urine out of my laundry.<br /><br />It didn't help much, but it was better than nothing. One point for Ron Palillo's cameo as a gay arsonist.",0 +4843,"The third and last film of this trilogy is finally crystal clear. It is a political film more than a plain entertainment. Jason Bourne will finally know who he was and he will discover and remember the tortures he was submitted to in order to kill his old identity: he really killed some one who became his corpse. But the film is finally revealing that all this had been organized and planned by the CIA within a Blackfriars program that is also clearly revealed in this film as aiming at eliminating all American citizens who tried to prevent the control of the whole society by an established and limited group of people. Who was one essential officer of the CIA up to 1980, when he became vice president? That goes along with what is being said on the Internet. Then the truth will come thanks to Jason Bourne himself but the main person who will be able to bring that truth to the public and the only authority that can take a decision concerning the CIA is a woman and that woman gets the Senate involved in a general investigation. A woman and the Senate; read my lips. In the USA politics are fought in the media and two media are essential for any presidential campaign: it is music and the cinema. Right now Hollywood and beyond the intelligentsia, academia and intellectuals are using the cinema in general, and this film in particular, to build up the idea in the public that salvation will come from a woman and from the Senate. So go and watch the film. It is pretty entertaining and it has the sweet fragrance of the end of a period and of the great change some are expecting and others are waiting for, but no one is able to pretend it won't come: the only point is to know how deep and serious it will be.<br /><br />Dr Jacques COULARDEAU, University Paris Dauphine, University Paris 1 Pantheon Sorbonne & University Versailles Saint Quentin en Yvelines",1 +3200,"I may very well be one of the few who really stuck to this film. I also saw this movie when it came out, and I agree with the last post that Up The Acedemy was way ahead of its' time. The humor in the film itself is pure MAD magazine. I don't see why MAD stand behind this feature. It was also one of the few films of the early 80's to have a killer accompanying soundtrack with the punk and new wave bands that were emerging from L.A. at the time. I own the soundtrack and I play it constantly to this day. What can I say? There are definitely worst movies out there. I don't consider Porky's to be as funny as Up The Academy, there are some really good laughs throughout the film, and the jokes fall on either stereotypes or getting laid. Hey, nobody said this was going to be The Maltese Falcon.",1 +873,"So when i was little i got this movie as a present and my sister and i loved it. we would watch it all the time. when our friends came over we would have sleepovers and we'd watch big rock candy mountain and grandpa's magical toys. I'm 21 now and i still love this movie, some old friends and i recently got together and watched it, we knew all the songs and we danced and talked about how much we hated Profster when we were little. One friend actually bought this movie and grandpa's magical toys for her 2 year old daughter because she wants to pass on our love of this movie. This really is a movie you can let your kids watch and feel safe, no violence, no bad language, just lots of great songs and important lessons.",1 +14811,"I'm a fan of both Shakespeare and MST3K, so I waited anxiously to see this episode. I'll comment on the movie first, then the MST3K episode. The recipe for this movie: take talented actors, rich and beautiful Shakespeare material, and a $1.25 budget. Mix well, then drain of all life and movement, until dull and lifeless. Serve cold in a big, plain stone cauldron. Movie, I give 3 out of 10, because the actors at least deserve a little bit of credit. Okay, now the MST3K episode. I'll admit it, the first time I saw it, I fell asleep halfway through. I understand that was the reaction of several other veiwers as well. However, when I watched it a second time, I realized that there was a whole host of intelligent references and good lines I missed the first time around. The trick with this episode is: listen carefully! It takes a couple of viewings to catch each line. Give it a second chance, and You'll see what I mean. MST3K Episode: 7 1/2 out of 10.",0 +18226,"I confess--Emma, in my opinion, is the single greatest novel ever written. It is as close to perfection as any mortal creation can be. Jane Austen reaches the pinnacle of her art here.<br /><br />Unfortunately, this is at best a palimpsest.<br /><br />Comparison to the Gwyneth Paltrow version is inevitable--that version is far more faithful to the witty spirit of the book and far more enjoyable to watch.<br /><br />There are some good elements here--Kate Berkinsale (having previously played Flora Poste in Cold Comfort Farm, clearly Emma's smarter spiritual twin) is a wonderful Emma. Raymond Coulthard makes an appropriately decorative Frank Churchill. The production is handsome, but the interiors are far too dark.<br /><br />However, there are several major problems. The first is Mark Strong--first of all, he doesn't look right for Mr. Knightley. This is perhaps because he plays the role like a censorious Victorian parson. It's badly out of tune.<br /><br />The second problem is one of length. Simply put, the film is much too short--to get the right kind of feel, it would need to be twice as long.<br /><br />Finally, and most significantly, there is the quality of the adaptation. Austen is an adapter's dream--all the dialogue is there already. It only needs to be pruned down and arranged properly. Andrew Davies seems to think otherwise. First, this is a rather gloomy film, and the last thing Emma should be is gloomy. More significantly, Davies has seen fit to rewrite the ending as some sort of bucolic feast. What planet, or minor work of Thomas Hardy, is this come from? It is utterly out of the style and spirit of the novel. And I believe that it is hugely presumptuous to try to make improvements upon--perfection.<br /><br />Watch the Paltrow version, or watch Kate in Cold Comfort Farm.",0 +16778,"Here we have a movie which fails in pretty much every way it is possible for a movie to fail. Terrible script, lousy acting, amateurish directing, laughable special effects...it's just an utterly awful movie. Not to mention the fact that when you get to the end you'll realize the whole thing doesn't make a lick of sense. After spending the whole movie wondering what in the world is going on here when things are finally explained you realize the story has been built on a foundation which is ludicrously impossible. In one of those hideous ""villain explains the whole movie"" sequences we are told that our villain has done something which quite simply can't be done and which makes absolutely no sense whatsoever. Oh, and after that we see that there also appears to be some kind of jell-o monster involved. I'm sure Drew Barrymore would very much like to pretend this movie never happened. If for some ungodly reason you are ever tempted to sit down and watch this movie may I suggest instead taking that time to bang your head against a wall for 104 minutes. That would prove to be a much more pleasurable experience than sitting through this garbage.",0 +20363,"I couldn't agree more with another reviewer that mentioned Jodorowsky.<br /><br />Barney seems to be utterly boring and uninspired ""content-wise"". He can produce eye-candy (and I like candy), but its pretentiousness and fundamental artistic emptiness just diminishes all the joy. <br /><br />I am afraid that many people don't distinguish between similar (but really only on the surface) works of Jodorowsky or even more linear film-makers like Tarkovski or Kubrick (I love 2001 Odyssey and was never bored through the ending scenes...) That kind of art as M.Barney's makes adds confusion and fends off the viewers that could otherwise start to appreciate experimental cinema. Typical empty post-modern ""conceptual"" art. And check his interviews. I just don't buy it, sorry. And so boring. <br /><br />I was never bored seeing Alejandro Jodorowsky's movies, while Drawing Restraint 9 was an utter disappointment. Especially while it offered the possibilities to be something, to actually tell something in a non-linear unorthodox way (like the beginning and the great choreographed dance and preparations for the ship to sail out. Ships ""meeting"" on the sea... Ideas of feces as an object of value(if it was feces). Those ""pearl"" divers... Everything could construct a great surreal movie with some content. But it didn't. ANd those horrible pretentious scenes of dressing up and fake tea ceremony... How vain and fake and philosophically pretentious but empty can it get?<br /><br />I has some great picturesque scenes, but the whole movie became so boring and pretentious and utterly empty and fake that it made me physically sick.<br /><br />And it doesn't have good tempo. I like slow pace movies, but this was just boring in some scenes - because it was pretentious and fake - so I was just forced to witnessed prolonged scenes of artistic vanity...<br /><br />That kind of movies just kill the art and spirit in my view. <br /><br />I want more Jodorowsky!!!",0 +1087,"I stopped short of giving ""Mr. Blandings Builds His Dream House"" 10/10 due to an aspect that makes us in the 21st century cringe a little bit: the fact that a black person is the faithful servant (somewhat reminiscent of Stepin Fetchit). But other than that, the movie's a hoot. Portraying middle class New York couple Jim (Cary Grant) and Muriel Blandings (Myrna Loy) trying to build a house in Connecticut, this flick has something for everyone.<br /><br />Grant is his usual flippant self, while Loy does quite well as merely a wife. But Melvyn Douglas adds some real laughs as Jim's and Muriel's lawyer Bill Cole, who seems to have more plans than he's making clear. As for the house itself...throughout most of the movie, you'll probably feel ambiguous as to whether or not you want to live there. The builders, contractors, and others also provide their fair share of laughs.<br /><br />All in all, a comedy classic. Also starring Louise Beavers, Reginald Denny, Sharyn Moffett, Connie Marshall and Jason Robards Sr.",1 +4610,"And here's yet another piece of evidence to claim that we should all worship the Italian giallo and acknowledge it to be the absolute most unique sub genre in horror. Emilio Miraglia's ""The Red Queen Kills Seven Times"" is a totally mesmerizing wholesome of original plotting, stylish production values, enchanting music, great acting talents and inventively gory murder sequences. It's a fabulous giallo (released in the golden year 1972) that belongs in the top-five of every fan of Italian cinema. The storyline doesn't just introduce your average black-gloved & sexually frustrated killer, but blends good old-fashioned revenge motives with the macabre myth of the murderous ""Red Queen"". At young age, their grandfather tells the constantly fighting siblings Kitty and Evelyn about an uncanny lady who, once every 100 years on April 6th, kills seven people of which her sister is the inevitable last victim. Fourteen years later, Kitty has become the successful choreographer of a prominent modeling agency (even sharing her bed with the general manager) when suddenly the killing spree begins. Sister Evelyn would be the obvious culprit, but she moved to the States recently... Or has she? Complex yet compelling and involving red herrings are thrown at you every couple of minutes and the Red Queen character is definitely the most fascinating killer in giallo-history. Her face can never be seen, but she wears a blood red cloak and produces the most ghastly laugh whenever she made a new victim. She's not exactly gentle either, as her victims are barbarically stabbed with a dagger, dragged behind cars and even impaled on fences! That latter one is truly one of the greatest (= most gruesome) acts of violence I've ever seen! What more could you possibly request? Some classy and tasteful nudity, perhaps? The gorgeous female actresses got this more than covered, among them Barbara Bouchet and a young Sybil Danning. Emilio Miraglia isn't the most famous giallo-director, as he only made this one and the equally recommended ""The Night Evelyn Came Out of the Grave"", but his influence and importance should NOT be forgotten.",1 +9421,"One of b- and c-movie producer Roger Corman's greatest cult classics was the Ramones vehicle (originally designated for Cheap Trick), Rock N' Roll High School. It's just a simple, technically dated story (but would serve up extra doses of nostalgia humor considering these were the kind of things that made Napoleon Dynamite characters funny--see Eaglebauer's van) about teenagers who love rock n' roll.<br /><br />Students at Vince Lombardi High School are met with resistance by the evil principal, Miss Evelyn Togar (played by cult classic favorite, Mary Woronov) who fears that Rock N' Roll turns kids into uncontrollable, amoral deviants and vows to make a Rock N' Roll-free zone. Actually, she intends to wipe out Rock N' Roll for all students, regardless of whether its at school, and she has the cooperation of most of the adults who might make the plan successful.<br /><br />But not if Riff Randell (PJ Soles) can help it. A Ramones fanatic, she has written some songs (including Rock N' Roll High School) that she wants to give to the Ramones, and in trying to do so, is rebuffed by Miss Togar who does all she can to keep her from going to see the Ramones play in town. It culminates into an ultimate revolt between the obsolete fun-hating adults and the teenagers (in an ending that is reminiscent of Over the Edge, somewhat). After the years of punk, when the fame of garage rockers, The Ramones (and others) would mark another shift in music evolution, it was great to see a movie that celebrated the fun of it all and in such a humorous, exaggerated way.<br /><br />It is mostly mild comedy, but a great feel-good comedy nonetheless when you're in the mood for something more laid back to entertain you. With Jerry Zucker (of Airplane fame) and Joe Dante (of Gremlins fame) both taking part in some of the directing, you can get the idea for what kind of humor you're in for (and not to mention, expect to see Dick Miller even if only for a few minutes in the film's finale). The story must've later inspired (and was consequently updated) by the mid-90s comedy, Detroit Rock City, which some minor character changes in the vehicle for aged glam rockers, Kizz.<br /><br />I would recommend passing on the Corey Feldman vehicle, Rock N' Roll High School Forever, released nearly a decade later. The original is still the best.",1 +22669,"I think i watched this movie, but don't quote me, as i may have fallen asleep during watching it as it didn't exactly ""grip my excitement and imagination."" At least i know i watched enough of it to know i won't be watching it again soon. Or ever.<br /><br />Jeez, talk about lame... Really lame. Totally lame. It wouldn't even appeal to a six year old. It basically had NO worthwhile dramatic impact. Zilch. Nada. Just shlock turned into dreck. Comedy? That was supposed to be comedy? Ya coulda fooled me-ee-ee...!<br /><br />Now, if the aliens had been insatiably carnivorous like in the movie ""Critters"", we could have had the human characters do something a little more profound than be overly smugly cutesy... like yelling and screaming and running for their lives so they wouldn't be eaten so the story could be something more exciting than watching paint dry.<br /><br />Don't bother watching this. It's not worth the effort. You can find something more interesting to do. Like watching paint dry. Or falling asleep.",0 +16797,"...because this was simply awful. 101 Dalamatians was funny even if formulaic, but this is nothing more than puerile drivel. The same plot except with the story excised from it; the world's most intelligent and horribly annoying macaw; Tim McInnerny proving that he really can't do comedy (everone remembers Percy in Blackadder but that was his high spot - it's all been downhill since then); direction so poor that if a group of college students had made this you'd throw it in the bin and tell them to do it again - properly this time. Ieuan Grufford better go back to Hornblower sharpish, whilst Glenn Close and Gerard Diepardieu ought to go into hiding for several years.<br /><br />Perhaps I could be too harsh; after all I didn't manage to sit through the whole film. It gets 1/10; only because I can't give it 0.",0 +21114,"What Hopkins does succeed at with this effort as writer and director is giving us a sense that we know absolutely no one in the film. However, perhaps therein lies the problem. His movie has a lot of ambition and his intentions were obviously complex and drawn from very deep within, but it's so impersonal. There are no characters. We never know who anyone is, thus there is no investment on our part.<br /><br />It could be about a screenwriter intermingle with his own characters. Is it? Maybe. By that I don't mean that Slipstream is ambiguous; I mean that there is no telling. Hopkins's film is an experiment. On the face of it, one could make the case that it is about a would-be screenwriter, who at the very moment of his meeting with fate, realizes that life is hit and miss, and/or success is blind chance, as he is hurled into a ""slipstream"" of collisions between points in time, dreams, thoughts, and reality. Nevertheless, it is so unremittingly cerebral that it leaves no room for any hint of emotion, even to the tiny, quite rudimentary extent of allowing us a connection with its characters.<br /><br />I didn't think the nippy and flamboyant school of shaky, machine-gun-speed camera-work and editing disengaged me, but reflecting upon the film I am beginning to realize that it had a lot to do with it. There are so many movies of the past decade in which the cuts or camera movement have sound effects as well as other atmosphere-deteriorating technical doodads. I suppose in this case it was justified in that its purpose was to compose the impressionistic responsiveness of dreams. However, I knew barely anything about Slipstream when watching it, and I came out the same way. And I just do not care, because Hopkins made no effort to make us care. There are interactive movies, and there are movies that sit in a rocking chair and knit, unaware of your presence. Slipstream is the latter.",0 +5070,"A longtime fan of Bette Midler, I must say her recorded live concerts are my favorites. Bette thrills us with her jokes and brings us to tears with her ballads. A literal rainbow of emotion and talent, Bette shows us her best from her solid repertoire, as well as new songs from the ""Bette of Roses"" album. Spanning generations of people she offers something for everyone. The one and only Divine Diva proves here that she is the most intensely talented performer around.",1 +4653,"Eddie Murphy is one of the funniest comedians ever - probably THE funniest. Delirious is the best stand-up comedy I've ever seen and it is a must-have for anyone who loves a good laugh!! I've watched this movie hundreds of times and every time I see it - I still have side-splitting fun. This is definitely one for your video library. I guarantee that you will have to watch it several times in order to hear all the jokes because you will be laughing so much - that you will miss half of them! Delirious is hilarious!<br /><br />Although there are a lot of funny comedians out there - after watching this stand-up comedy, most of them will seem like second-class citizens. If you have never seen it - get it, watch it - and you will love it!! It will make you holler!!! :-)",1 +19423,"Where to begin? Anachronism? High tech cross bow with a scope in about 500AD? Arrows with explosive charges in 500AD? A monster Grendel that looks like a robocop and obviously never interacts with any of the weapons fired or swung against him? The heart torn out of his victim's chest without any sense of contact? Possibly the blond who would fit in on a recent fashion show with her make-up and streaked hair? The ancient Danish court represented in Classical Greek style? The queen played by Marina Sirtis more savaged by her makeup artist than by madness? The effects are way too weak to carry this story. There are some stories that don't mind or even benefit from cheap effects, but this Grendel isn't one of them. <br /><br />What about characters who seem to jump about in their attitudes without motivation? A bravado idiot prince whose home has already been savaged more than once by the monster Grendel seems to have less respect for the danger he faces than Beowulf who was sent from afar from the land of the Geats to help the desperate Danes. In this it feels more like an old cowboy western than any kind of myth.<br /><br />Beowulf is an ancient tale from an era with almost no literary tradition and much of both its sentiment and its drama is obscure. I suspect that any modern telling which doesn't make an intelligent attempt to penetrate the obscurity must fail. I didn't love the recent ""Beowulf and Grendel"" which sees Grendel essentially as human and sees Hrothgar and his Danes as too arrogant and stupid to recognize Grendel's attacks as well-justified vengeance, but I had to respect its revisionist position that Hrothgar's Danes were a bunch of macho thugs who never grasped, even after it was all over, that they had brought this nightmare on themselves, and therefore, the original story of Beowulf, as it was written, was a misrepresentation of the real story. I think there's a more complex meaning to be understood than that, but this ""Grendel's"" terrible secret that Grendel's attacks are tied to previous human sacrifice doesn't really bring us closer to the shame experienced by Hrothgar and the Danes. <br /><br />This Beowulf has little to recommend it as traditional myth or as modern fantasy. I give it a 4: higher than it deserves, but always hopeful that a poor effort will draw attention by someone who is up to telling the story intelligently. In the meantime, Sci-Fi's movie-making seems to be following the NASA policy that it's better to build lots of probes that fail than a few that succeed.",0 +1668,"I barely remember this show, a little ,but I remembered it was great! My eldest brother, reminded me about the show recently and I had seen an advertisement for the D.V.D set coming out. The network, again screwed up in pulling this from the air, so that they could put what else in it's place? It should have gone at least 3 seasons. Why not, right? I think sometimes that the network executives think they are the 'gods' of the entertainment world. But they mis-guess and flat out miss good show placement from time to time. Let it be said that, they have a lot more flops than 'hits'. This was one of the poor decisions to cut from the line-up. Anyhow, I am getting this for my collection.",1 +9961,"There's a good reason that Walter Pidgeon is warning off Leslie Nielson and his crew from the relief ship, stuff he dare not dream about.<br /><br />As Doctor Edward Morbius, Pidgeon is the last survivor of an expedition that came to this planet 20 years earlier. Since that time he married another member of the expedition and had a daughter, Anne Francis. They are the only humans left on this planet which was once the home world of an ancient civilization known as the Krell.<br /><br />The records as deciphered by Pidgeon indicate the Krell came to a cataclysmic ending of unknown origin. The machinery they left behind is still functioning.<br /><br />Maybe functioning too well as members of the relief party start dying and in a particular gruesome fashion. <br /><br />I see all kinds of speculation about a remake and this is one film not to remake because it's as fresh as it was in 1956. The terms would change, we would now say warp speed instead of hyper drive, courtesy of the enduring popularity of Star Trek.<br /><br />We might not see the men in the relief expedition in a flying saucer like space ship. It might look a lot more like the Starship Enterprise or the Ship from 2001 A Space Odyssey. It's interesting to look at science fiction films from different generations and see how are conceptions of the future do change.<br /><br />The story behind Forbidden Planet is a timeless one, about mortal beings trying to play God.<br /><br />You can't write about Forbidden Planet without commenting on Robby the Robot. This mechanical marvel, put together by Pidgeon with the knowledge he gained from studying the Krell was quite the hit back in the day. He got a new lease on life in the sixties with the character of the Robot from Lost In Space. His scenes with Earl Holliman who plays the cook on the space ship and his complying with Earl's request for some home spirits are very funny.<br /><br />Robby and the other special effects were nominated for an Oscar, but lost to The Ten Commandments and the parting of the Red Sea. Forbidden Planet's bad luck to run up against a Hollywood founder like Cecil B. DeMille.<br /><br />Classicists among you will recognize Forbidden Planet as a futuristic reworking of The Tempest which when you think about it could have been Shakespeare's one venture into science fiction. <br /><br />My favorite among the cast is Warren Stevens who's sacrifice enables Leslie Nielsen to learn exactly what he's dealing with.<br /><br />Never miss this one whenever it's broadcast.",1 +13788,"We saw this on the shelf at the local video store, saw ""Coppola"" in the credits and got excited. That was the one and only time this movie raised any interest. I could never quite work out if it was an attempt at a humourous film that failed miserably, or an attempt at a serious film that failed miserably. In general, the entire production seemed incredibly amatuerish. The sound in particular was absolutely dreadful, especially in the scenes shot in the little bar; the dialogue was so corny in parts it was unbelievable. Very disappointing.",0 +12422,"I rented domino on a whim, not even knowing it was inspired by a true story, and even though it's the least likely and true biopic you'll probably see. i found it to be rather awesome.<br /><br />With Richard Kelly writing he crams together a mass of plots and narratives into 2 hours of pure entertainment. And once you've seen it more than once you get it and appreciate it. <br /><br />Domino is a model turned bounty hunter who leaves the perfect Hollywood life to pursue a not so subtle or perfect career. It has an edgy acid trip style provided by director Tony Scott. And with fast paced music and editing, it provides the visual flare to keep your attention, with slick performances and unexpected comedy, the movie is well made and enjoyable and should have reached a wider audience. <br /><br />I suggest it to anyone who wants to think and be entertained at the same time for 2 hours.",1 +5523,This was one of the best war movies I've seen because it focuses on the characters more then the actual war. All of the cast do an excellent job and because most of them are relative unknowns it makes everything seem more believable. The camera footage is great is so was the pacing and editing. This movie will actually get to you and causes the audience to care for the charcters.,1 +23097,"I'm sorry, but this is such a bad movie it's hilarious. Football hooligans arguing in a travel lodge? Suits? Shades?! Alan clearly had no idea what he was talking about when he made this, it is as far from the truth as you can get.<br /><br />The casting was atrocious...Gary Oldman as a football hooligan? He doesn't look scary, act scary or even come across as someone who would like football. And as for Yeti? What the hell? Suits, shades and sitting in a travelodge childishly taunting each other with ""its about time you got your nappy on"". Please.<br /><br />And the Yeti's gang spraying the ICC's underwear? <br /><br />I don't see how anyone can even take this film seriously!.<br /><br />4/10. Its possibly the most inaccurate portrayal of the crisis of the late eighties hooliganism i have ever seen.",0 +6136,I watched this film over a hundred times. It is really best Serbian movie made ever.I wood like to recommend this movie to everyone. It is very good comedy. I surely like it!!!!,1 +13933,"By far the worst movie of all time. Even Yaphet Kotto could not save this turkey. I have heard that the movie was originally supposed to be titled ""The Treasure"" but was changed to ""Sharks' Treasure"" in order to take advantage of the excitement created by ""Jaws"". I think sharks were in one scene of this movie; the fact that they happened to be included in this ""thriller"" was supposed to sell tickets. Didn't work. Anytime something ""good"" happens in the movie, the ship's crew toasts each other with a certain brand of beer that had just been introduced at the time the movie was made. Gee, do ya think that beer might have been a sponsor? Could they have made it any more obvious? The only time anyone should break out the beer is if they make it through this thing. That's cause enough for celebration.",0 +9199,"This film is one of the best shorts I've ever seen - and as I make it a point to be at all the major film festivals, I've seen a lot, especially of what the industry considers ""the best."" I'm not a fan of Monaghan. His acting generally tends to be overdone and uninteresting to me, his only decent performance being in Lost, so I generally try to avoid his films. I did, however, happen to see this at a film festival a few years back and was completely awed. This director really knows what she's doing. Of course, you are going to get the trolls (or just ignorant people) who don't understand what constitutes a good film and rip on low budget work because they have no idea what went into it. But luckily, from what I've seen, they are in the minority when it comes to this gem.<br /><br />Let's not deny that the film was working on no budget, and that a couple of the supporting actors could still use work, because that's certainly true. The production value is very low, but what can you expect for a first real film from someone still in high school? Pretend for a moment that the budget doesn't matter. If you take away a bit of the acting, the sound quality (which actually wasn't the fault of the filmmaker; I saw this at a festival and the sound was fine...I guarantee whoever made the DVD itself screwed up), and the fact it was shot on mini-DV, then what are you left with? The story, the visual composition and the soul of the film, which are indisputably flawless.<br /><br />Nanavati can tell a story. That much is clear. She can write substance-heavy, engaging scripts better than most people in Hollywood, create a shot list that perfectly compliments that story, and bring it to life in a fascinating, creative way that, were this higher budget, might have won awards. Give it more experienced actors, better sound post-production, and 35mm instead of mini-DV and even the trolls couldn't complain. This girl is incredible, and keeping in mind that Insomniac was made a good few years ago, she's done some amazing work since. The trailer for Dreams of an Angel shows that, and I can't wait to see the higher budget stuff she's done. 9/10 stars, this is one hell of a movie from one hell of a filmmaker.",1 +13525,"TV movie about an ancient Egyptian curse brought to the US in the 20's during the filming of DeMille's first version of the 10 Commandments and which is reawakened when DeMille's sets are unearthed in the desert.<br /><br />One of the worst films I've seen in a long time.<br /><br />The question is were the filmmakers serious or kidding when they made this film? If this is serious its a laughably bad movie and a great film to pick on for its badness. If its a comedy its less good but funny for all of the wrong reasons.You will laugh long and hard AT this film, probably more than many other Hollywood ""comedies"".",0 +10029,"Director Douglas Sirk once said `there's a very short distance between high art and trash, and trash that contains craziness is by this very quality nearer to art'. This statement defines his cinema perfectly, a very unique body of work that includes classic stage adaptations, adventure and war films, westerns and of course, his famous melodramas.<br /><br />Sirk's melodramas were, as the very word signifies, dramas with music. The music sets the tone for his masterful style, and every stroke of his brush (Sirk was also a painter) leaves a powerful image on the screen-turned-canvas. But this ain't life but its representation, an imitation of life. Sirk never tried to show reality, on the contrary. None of the directors of his generation made a better use of all the technical devices provided by Hollywood (most notably Technicolor) to distinguish the artificial from the real thing. Let's remember that his golden period coincides with the time when Hollywood films turned its attention into the social drama (Blackboard jungle, Rebel without a cause). Sirk always knew that cinema was meant to be something else.<br /><br />Another of Sirk's statements summarizes this: `You can't reach, or touch, the real. You just see reflections. If you try to grasp happiness itself your fingers only meet glass'. I defy anybody that has seen Written on the wind to count the amount of mirrors and images reflected that appear on screen. One ends up giving up.<br /><br />Therefore, we are in a hall full of mirrors where there's no difference between real and its false copy. Nobody can say that the Hadley are real people. That town ain't real either, with those hideous oil pumps all over the place. So in this realm the acting is affected, the decore is fake, the trick is visible. Everything is pushed a little bit off the limit (the sexual connotations of Dorothy Malone with the oil tower, for example). Sirk was criticizing and theorizing at the same time.<br /><br />`The angles are the director's thoughts; the lighting is his philosophy'. In Written on the wind we follow the fall of a traditional way of life both in a geometrical way and in terms of light and shadows. The Hadleys house, with its different levels connected by the spiral staircase operates in a strictly metaphorical way. A house that resembles a mausoleum, that no party can cheer up. As tragedy progresses from luminous daylight to shadowy night, Sirk's photography becomes an extension of the inner state of his characters, and so are the colours of the clothes they wear. Drama is thus incorporated to every element at the service of the director's craft.<br /><br />Sirk considered himself a `story bender', because he bended the standard material he was assigned with to his style and purpose. Written on the wind is a good example. It wouldn't work in any other hands.<br /><br />The other director that was using similar strategies was Frank Tashlin, who was for 50's comedy the same that Sirk was for melodrama. Their films are full of the machinery of american life -advertising, TV sets, jukeboxes, washing machines, sport cars, vacuum cleaners- to depict its emptiness and decay. I'm inclined to think that their films were regarded in a different way by their contemporary audiences. The game was played by both sides, so it was camp. Now we regard them as `cult' or `bizarre', because we are not those spectators anymore. That is why Todd Haynes's homage `Far from heaven' turns into a pastiche, because it reproduces Sirk's work nowadays as if nothing happened in between. Then Sirk turns exactly into that painting hanging in the art gallery that Julianne Moore and the gardener discuss in the aforementioned film.<br /><br />Sirk understood the elements of melodrama perfectly. There were always immovable characters (Rock Hudson and Lauren Bacall here) against which he could assemble a series of split ones. His balance through antithesis is remarkable and not surprisingly we root for the split characters, because these are the ones Sirk is interested in too. When Robert Stack flies the plane and `tempts' Lauren Bacall with all sorts of mundane comforts of the world below them (obvious Faustian echoes) we are strangely fascinated with him too, as we are when the devilish nymphomaniac little sister painfully evokes her past with Mitch alone by the river.<br /><br />In the Sirk's universe the studio often-imposed `happy ends' have no negative impact. In fact they worked just great. Sirk was fond of greek tragedy and considered happy endings the Deux ex machinea of his day. Thus the final courtroom scene fits well and one must also remember that the whole film is told in flashback, so we know from the very beginning that tragedy will fall nevertheless over the Hadley feud.<br /><br />It was pointed out the many similarities between Written on the Wind with the Godfather saga. I absolutely agree and I'm sure the parallel is not incidental. Both share the theme of the old powerful father head trying to keep his empire going while protecting his family. The temperamental son portrayed by Robert Stack has an amazing physical resemblance with Jimmy Caan's Sonny Corleone. The action of fighting her sister's male friend is symmetrical. The non-son in which the old man put his trust is also common in both films, as the fact that both families carry the names of their town. Even details as the gate that gives access to the property, and the surroundings of the house covered by leaves, suggest that Coppola had Written on the Wind in mind while setting his masterwork. Because both films deal with the subject of Power: the acquisition of power, its manipulation and legacy (even Kyle Hadley's sterility, the event that hastens the turmoil, is an issue easily tied to the central theme of Power, in this case, a weakness in sexual power). The other great film that deals with power and uses american life as its representation is Citizen Kane. One wouldn't think at first of similarities between Welles and Sirk's films but there are a good many, starting with the petrol business as the origin of the family's fortune and ending in the fact that Mitch Wayne (Rock Hudson), as Charles Foster Kane, was adopted by a tutor, having his own father alive. Amazingly, the same actor (Harry Shannon) perform both Wayne and Kane's fathers. This detail is cannot be a coincidence.<br /><br />Written on the Wind is a masterpiece in every aspect, in execution and vision, in style and technique, a highlight in the career of this wonderful director. Some say that this is his best film. In my opinion, `Magnificent obsession', `All that heaven allows', `There's always tomorrow' and `Imitation of life' are just as good. And for those who put Sirk in the level of Dallas or Dinasty I wish them no happy end.",1 +3993,"I'm one of those people who usually watch programs and keep my feelings about a show private. However, Pushing Daisies is my exception. I became curious about the program from the commercials that aired which gave glimpses of the premise of the show. I was skeptical about it at first, especially after the finale of Six Feet Under was still in my head. Here we go again, I thought. I watched the first, second, third and all the other episodes. Wow! First of all, I thought it took the subject of death and presented in a way that was palatable without being morbid. The characters were engaging and I like the thought of Ned the main character not being able to literally touch the love of his life, Chuck without the consequences of her dying.<br /><br />Most of the characters have a longing for things they can't have. Besides Ned and Chuck, Olive longs for Ned. Lily and Vivian longs for their niece Chuck and Emerson is always longing for the monetary rewards from the mysterious deaths they solve. I think the characters are picture perfect and believable. I like how Emerson who is black plays off of the rest of the characters since as an African American; I like the subtle cultural humor that sometimes comes from him.<br /><br />All in all, this visual fairytale is one of the most valuable pieces of entertainment that I've seen out of the 2007 season. I think the show has enough romance for the romantics and enough who-done-it for the mystery buffs. I just wish the writers would get back to work, so that the show can continue to evolve.",1 +21822,"You already know how painful to watch this movie is. But I wonder why one of the worst movies ever should include one the most beautiful cars. Why the cars should be not only the victim of violation, but also the only true actors and performers in it. So how on Earth you Porsche, Lamborghini or whatever could allow those people to get in touch with your cars and ruin you reputation for which you give millions.Stop the getting an advantage of the cars and earn money on their chests. It is painful for those who love cars. It is painful for those who love movies.<br /><br />I want my money back !!!",0 +20826,"Mario Lewis of the Competitive Enterprise Institute has written a definitive 120-page point-by-point, line-by-line refutation of this mendacious film, which should be titled A CONVENIENT LIE. The website address where his debunking report, which is titled ""A SKEPTIC'S GUIDE TO AN INCONVENIENT TRUTH"" can be found at is :www.cei.org. A shorter 10-page version can be found at: www.cei.org/pdf/5539.pdf Once you read those demolitions, you'll realize that alleged ""global warming"" is no more real or dangerous than the Y2K scare of 1999, which Gore also endorsed, as he did the pseudo-scientific film THE DAY AFTER TOMORROW, which was based on a book written by alleged UFO abductee Whitley Strieber. As James ""The Amazing"" Randi does to psychics, and Philip Klass does to UFOs, and Gerald Posner does to JFK conspir-idiocy theories, so does Mario Lewis does to Al Gore's movie and the whole ""global warming"" scam.",0 +7703,"Wonderland is the fascinating film chronicling the x-rated film star John C. Holmes involvement in the brutal Wonderland murders.<br /><br />The movie's promotion misleads one into thinking this a romanticized portrayal of the porn industry in the vein of Boogie Nights and that is not the case here.In fact,except for a few references made by newscasters that John Holmes is a porn star and a brief montage of real-life footage of John Holmes this film is strictly drama about a fallen celebrity's involvement with murder and how it happened.<br /><br />Despite being mislead the film is actually engaging.The acting from all the cast is excellent and I'd like to say that Val Kilmer is amazing in his ability to get down all the mannerisms of John Holmes.I was completely convinced that I was watching what John C. Holmes probably looked and acted like in real life.<br /><br />If you are a John C. Holmes fan or like stories about Hollywood then I think you will enjoy watching Wonderland.",1 +10914,"Enormous fun for both adults and children, this film works on numerous levels: there is everything from car crashes and cake in the face to some very good (yet subtle) jokes for adults.<br /><br />Glenn Close is at her sublimely evil best as Cruella (`call me Ella') De Ville.<br /><br />After three years in Dr. Pavlov's Behaviour Modification Clinic she is cured of her desire for fur even the puppy-skin fur she had so intensely desired. She even has all of her fur coats placed in the dungeon of the extraordinary castle she inhabits.<br /><br />But it wouldn't be a Dalmatian' movie without the subterfuge and machinations of Cruella and you know that something will change her behaviour modification. And now she needs one extra puppy (hence 102 Dalmatians) to complete her nefarious scheme this time round.<br /><br />Ioan Gruffudd is instantly appealing as the hero of the film that runs the `Second Chance' dog shelter. Though he was in `Titanic' and in last year's television version (as Pip) of `Great Expectations' I didn't recognize him; well, he was Fifth Officer Lowe' in `Titanic' and I didn't see `Great Expectations' so I am not terribly surprised.<br /><br />Gerard Depardieu does a delightful turn as the furrier-pawn of Cruella. He prances and postures in the most outlandish and outrageous of fur clothing you have ever seen and does it well. His 'Wicked Witch of the West' homage is hilarious.<br /><br />Tim McInnerny is superb is Cruella's not-so-evil henchman he was also Alonzo,' Cruella's butler, in `101 Dalmatians' and you may also recognize him from all of the `Black Adder' Brit-Coms. He plays his usual bumbling, good-hearted, somewhat dim-witted character to great effect.<br /><br />Oscars for costuming are generally given for the entirety of the costuming in a film. This is unfortunate as the clothing worn by Glenn Close is amazing it is incredibly detailed (note her handcuffs when she is being released from the Behaviour Modification Clinic) and worthy of such an over-the-top character. Her clothing alone deserves at least an Oscar nomination.<br /><br />Animation holds a special place in my heart but comparing this film to the original animated film is like comparing apples to orangutans: it can't be done. Suffice it to say that `102 Dalmatians' is even better than the film version of `101 Dalmatians' that came out in 1996. There is a lot to like here: from the sight gags, the dialogue, and the costumes to the casting - it is a good film for the whole family.",1 +10500,"Clint Eastwood has definitely produced better movies than this, but this one does not embarrass him. Dirty Harry catches everyone's attention and unless one wants to watch romance, there is no reason why you won't like him. He is cool because he is dirty, is great because he kills without much thinking, is perfect because he gets the bullet right through your heart and a hero because he doesn't care.<br /><br />From what I have seen in movies in which Eastwood acts, the character of the lead role always captivates the audience. In White Hunter Black heart, he is the crazy director, in ""in the Line of Fire"" he is the ""Old 'un"" while here is the ""almost"" jobless with his job, that is to say he makes work for himself, doesn't care one damn about his superiors who practically send him out for a vacation.<br /><br />Based on a rape victim, this movie is promising for all the ""no non-sense"" movie watchers. The movie has nothing that goes away from he central plot. However, what makes it slightly inferior to the better movies of Eastwood is that though the character of the lead role is captivating the plot is not, as it is far too obvious from the beginning. It is not a movie that is going to make you sit at a place without moving. Also, there are too many people far dirtier than Dirty harry.",1 +24050,"Sam Mraovich should never be allowed to touch a camera again. If he does he should be arrested on the spot...at the very least for petty larceny. Anybody who pays even a dime to rent any of his garbage should file a claim and be compensated. This was innocently my first viewing of his ""work""...and it will my last. Ed Wood looks awfully good to me right now.<br /><br />When I return this piece of crap to the video store, I will personally ask that it be taken off the shelf. An active supporter of gay cinema, I am incensed and angered that this warped, exceedingly untalented man-child be allowed to distribute and package something like this, with a coltish pretty boy on the cover (Jamie Brett Gabel, who, thankfully, has no other acting credits in IMDb) and an interesting synopsis on the back used as bait, and then market it as a ""movie"" rental. Trust me, this has no place being on any rack anywhere; it is simply not a movie in any sense of the word. Offensive, irresponsible junk such as this can only be detrimental to the efforts being made to promote and support gay cinema (hell, gay rights in general!) For those tempting to rent this out because of the cover, you WILL be disappointed. Gabel is not as flattering to look at on film as he is on the cover, and he appears once or twice without a shirt -- that's it. Instead, the homely Mroavich inflicts on us his own disgusting, sorry-looking dough-boy nakedness.<br /><br />This ""thing"" he ""assembled"" is a reverse vanity project for Mraovich. Both he and his friend Michael Habousch (who, I understand, puts out similar sleazy garbage) are terrible in this. Mraovich is purposely posing as a complete no-talent (in all fields), desperate to grab onto any ""loser"" attention he can for himself. He is to be pitied.",0 +6842,"Most movies about, or set in, New Orleans, turn out to be laughably bad, and laughably inaccurate (examble: remember ""The Savage Bees""? But I'll make an exception for ""Tightrope"", which almost got it right).<br /><br />Here's one that doesn't inevitably get it wrong. The accents are not too bad (yes, the ""yat"" accent down here is way more Brooklynese than southern), the city of 1950 is shown the way it is/was, without the obligatory ""tourist"" shots, and they understand a good drama without trying to make everyone a ""quirky southerner"". <br /><br />One of the few films to do justice to this city, and a good film to boot..",1 +3433,"Great screenplay and some of the best actors the world has ever produced. Montand gives the concept of the 'lone wolf' police detective a whole new dimension of intensity and, most importantly, credibility.<br /><br />When a typical Hollywood cop-heroe loses family, friends and pets to murder he is usually given his minute of grief. But when the sixty seconds are over, he pulls himself together, packs his gun and goes gleefully shooting up his enemies one by one.<br /><br />Montand's Marc Ferrot, however, is really devastated - by his girlfriends murder, of course, but also by finding out that she had another lover.In his confusion and wrath he does not seek revenge but needs to keep going to find the real perpetrator of a crime where his fingerprints are all over the scene. Thus all his actions become unescapably logical. This is the main reason why this movie glues us to our seats but definetely not the only one.",1 +10855,"I thought the movie was actually pretty good. I enjoyed the acting and it moved along well. The director seemed to really grasp the story he was trying to tell. I have to see the big budget one coming out today, obviously they had a lot more money to throw at it but was very watchable. When you see a movie like this for a small budget you have to take that in to account when you are viewing it. There were some things that could of been better but most are budget related. The acting was pretty good the F/X and stunts were well done. A couple of standouts were the guy who played the camera asst. and the boy who played the child. These kind of films have kept LA working and this is one that turned out OK.",1 +15643,"OK first of all the video looks like it was filmed in the 80s I was shocked to find out it was released in 2001. Secondly the plot was all over the place, right off the bat the story is confusing. Had there been some brief prologue or introduction the story would've been better. Also I appreciate fantasy but this film was too much. It was bizarre and badly filmed. The scenes did not flow smoothly and the characters were odd. It was hard to follow and maybe it was the translation but it was even hard to understand. I love Chinese epic films but if you're looking for a Chinese epic fantasy film i would recommend the Promise (visually stunning, the plot is interesting and good character development) not this film. Beware you will be disappointed.",0 +20894,"This is a great story and was just the beginning of equality in the United States. (We are still working on it too.) However despite the fact this is true, it's still a movie and this is a movie site. I realize independent films have a hard time getting good actors, but wow. The only one even mediocre is the excellent Ossie Davis. But even he couldn't make up for all the actors (including the one playing him as a young man) absolutely atrocious acting. Granted the script was terribly cliché, but even then you have got to get some decent actors! I wouldn't recommend this to anybody because it is so poorly done in every category. Read some books about the true story of the U.S.S Mason, because they give these men the respect they deserve.",0 +127,"""The Haunted World of Edward D. Wood, Jr."" is the definitive documentary on the life of the man who brought us such movies as ""Glen or Glenda"", ""Bride of the Monster"", and, of course, ""Plan 9 from Outer Space"". This exquisite film far exceeds where other documentaries, such as ""Look Back in Angora"" and ""The Plan 9 Companion"", failed. It rounds up his surviving entourage, many of whom have passed away since filming, and gives an honest examination of Ed Wood and his work. Nostalgic in the fact that it looks back at the darker corner of yesteryear Hollywood, sentimental in its treatment of the director (down to the haunting music), this documentary is an absolute must-see for anyone who loves the director who so failed in his day. The entire two hours of the film lovingly and retrospectively pieces together Ed's life and untimely death for the viewer. Best watched at 3 am while wearing an angora sweater.",1 +23909,"Why else would he do this to me?<br /><br />Not that I expect Dean Cain to produce hit movies. Or even decent movies. I saw Lois and Clark, I am aware of just how... ""good"" Dean Cain is.<br /><br />Obviously this is gonna be a cheesey flick, and each cheesey flick has its own special way to make you scratch your head. I will not call these spoilers as you can't really spoil this movie any more than it already is.<br /><br />To begin with... why is that a fake helicopter? I mean... why?<br /><br />How come that one scientist is from Chicago and that other scientist is from LA and neither one could be any more eastern european if they tried? How hard would it have been to get either an american actor, or just change that lame state sheet the movie provides us with to say those people aren't american?<br /><br />Why are there 2 occasions when the movie gives us a slug line? We get helipad-day and then mess hall-day later on. And then that's it, who cares about the timeline. To be honest, who cared about it even when they mentioned it, but I guess that's beside the point.<br /><br />Does a movie really get better if you are able to view it through multiple split screens? The answer is no.<br /><br />That dragon sure can walk down that hall..over..and over...and over....and over...<br /><br />Who on earth was responsible for one of the worst endings in film history? It was straight out of scooby doo. Oh, the dragon's dead now...say, wanna get dinner? Sure, but not at some Chinese place....with Dragon in the name!! AH HA HA HA!! HA HA HA!! HAHA HA! I used to be Superman! AHA HA HA! HA HA!<br /><br />fade to black<br /><br />my god, it made me cringe it was so stupid.<br /><br />But never fear..even though the whole building exploded...and no one was left alive..for some reason there's a second untouched, unmanned lab that survived pretty well, so they can make a sequel. Hurray for us all.<br /><br />",0 +1530,"I remember following the case of Andre Chicatillo in the newspapers while I was living in South Africa. They had photos of him sitting in his cage while being prosecuted in court. Not, as it turned out, to protect the court members, but to protect him from the public. This was fascinating, albeit morbid, reading. I later heard that a film had been made by HBO about the case, but it was made for American TV. Bummed! Strangely, CITIZEN X got a limited cinematic release in South Africa. I charged down to the local Ster Kinekor complex and duly bought a ticket (I was alone; my girlfriend at the time was only interested in the likes of STEEL MAGNOLIAS and FRIED GREEN TOMATOES). Wow! What a brilliant film. Why wasn't it released to a wider audience? Had it not been made for TV, it could have got an Oscar nomination or 2. There is no way to spoil the ending; who the killer is is never kept from the audience. Jeffrey DeMunn portrays a truly terrifying psycho. He is calm, downtrodden, considered a failure by his wife and subjected to constant ridicule and humiliation by his superiors at work. By committing these horrendous acts, he gets to feel strong, powerful.<br /><br />Fighting to catch him against all odds is a pathologist, played to excellent turn by Stephen Rea, in one of his strongest performances. He must battle the snail-pace of Russian bureaucracy, the primitive resources he has at his disposal and (above all) the refusal by his superiors to acknowledge that the USSR even has a serial killer. The general in charge (Joss Ackland) says that serial killers are ""a decadent, Western phenomenon"". Only Donald Sutherland is willing to help, but his help must be under the counter. The ever-brilliant Max Von Sydow plays a Russian psychiatrist who breaks protocol and decides to help the investigators in their quest. It is the first time in Russian history that a shrink is used to build a profile of a serial killer still on the loose, and he has everything to lose if his involvement is made public.<br /><br />CITIZEN X is brilliantly acted, well written and the music and editing only add to the tension and theme of the film. Excellent support from a horribly underused Imelda Staunton and a real sense of impending doom make CITIZEN X a film worth seeing. This was too good to be made for TV",1 +11585,"I really have to say, this was always a favorite of mine when I went to see my grandma. And it still is. It is very, very close to the book. The way it is filmed, and the players were just all excellent! I have to recommend this movie to everyone who hasn't seen it. Almost everyone I talk to hates TV movies, but this was really great! I gave it 10/10.",1 +19340,"SPOILERS THROUGHOUT!!!!<br /><br />I had read the book ""1st to die"" and wanted to see if the movie followed the book so I watched it. For the most part it did. There were some MINOR differences(location of the last violent scene for instance) but not many and for the most part the movie stayed true to the book more so then most movies.<br /><br />This may have been a mistake-although the movie was perfectly cast-with Pollen and Bellows especially-I was not that impressed with the book. Or let me take that back. I started off very impressed, gradually became more disillusioned and by the end was left completely unsatisfied and felt almost gypped. No difference with The movie. Here is why.<br /><br />There is no ""payoff"" in the book, or the movie. Rarely have I read a who done it thriller that has created such a letdown with it's final resolution and I had hoped the movie would vary a little.<br /><br />The whole-(he did it, NO she did it, NO they BOTH did it)-was not interesting, not fascinating and more confusing, annoying and depressing then anything else. Add to that, that the love of Lindsay's life dies at the end(after HER disease cleares and she cries at his grave).. and then cut to where she's contemplating suicide....then all of a sudden she's in a fight for her life with the REAL villain who was cleared after being arrested.. but it turns out he and the wife were in it together....HELLO!!! This whole thing has now become ""GENERAL HOSPITAL"" instead of a good old fashioned thriller. I felt cheated and ripped off by the book and watching the movie(I must admit it held my attention nicely -the acting was very good for a TV movie)was hoping it wouldn't follow the book which it wound up doing.<br /><br />I still think the movie is watchable and for some reason does not leave as bad a taste in your mouth as the book(or maybe it's just that I knew what would happen)But I have to say the way this story unraveled was not well done at all.",0 +10113,"For animation buffs it's a must, but even general audiences will enjoy THE CAMERAMAN'S REVENGE, a very early example of 'pixilation' by the hard-working pioneer Wladyslaw Starewicz. Starewicz and his helpers painstakingly manipulated a cast of flexible insect figures to tell this story, paving the way for the likes of Willis O'Brien, George Pal, Ray Harryhausen, and legions of modern digital effect creators.<br /><br />THE CAMERAMAN'S REVENGE is only about 10 minutes long, but packs in lots of amusing detail as the story follows the amorous adventures of two beetles from their home to a nightclub, a hotel, a cinema, and, eventually, a prison cell. There are two brief dance numbers at the nightclub (performed by a frog and a dragonfly), a scuffle between a beetle and a grasshopper, and a large-scale donnybrook at the cinema, which ends with the projector bursting into flames. Pretty elaborate goings-on for 1912, when even John Bray and Winsor MacCay were just getting started, and Walt Disney was still in grade school!<br /><br />It's interesting to note, too, what an impact the alteration of a silent movie's title cards can have on the story being told. I've seen two versions of this film offered by two video companies, and watched them back-to-back, and although the image content itself is almost identical, two different sets of intertitles tell two very different stories. (And the plot outline someone provided above tells yet a third story, which suggests that there's another version out there somewhere.) The British Film Institute's print, which has rhyming intertitles, tells the story of two sibling beetles, each secretly married, who hide this information from one another in order to inherit their late father's fortune. The other, Russian print, tells a simpler story of married beetles who are each guilty of infidelity. In the Russian version Mr. Beetle visits his girlfriend at the ""Gay Dragonfly"" nightclub, while in the English version brother Bill Beetle visits his wife at the music-hall. Personally, I prefer the straightforward-- and spicier --Russian story; the BFI version tries to cram too much plot into what should be a simple tale, and some of the rhymes are a bit awkward.<br /><br />Still, in any rendition, THE CAMERAMAN'S REVENGE is a delightful film, and would make an ideal lead-in to that other great animated work which features beetles, YELLOW SUBMARINE.",1 +23552,"Carnosaur 3 is bad... awfully bad. Bad to the point where it is funny. How matter how much I try to convince myself, I just can't believe anyone in this world could find this entertaining for serious reasons. I mean, come on, even the cover is bad! OK, the special effects are absolutely ridiculous. Those ""Carnosaurs"" are really ridiculous. A scientist tells the soldiers that they move incredibly fast, yet when you see them run, they run at the speed of... an actor in a rubber suit trying to run as much as he can. And the explosions are funny(there is no other word to describe it). At the beginning, a bullet hits a Jeep AFTER a guys says ""What was that?""... And the other explosions are also laughable. But the worst thing is the screenplay and the so-called story. You don't expect a good story(or, I don't think anyone renting this movie expects a good movie) but at least the story has to try to make sense. I mean, how hard is it to make a story about dinosaurs killing people at least coherent. Incredibly hard if you look at this. Oh, and if you think that it's easy to makes believable commandos as your characters, tell it to the writers of this awful, awful piece of crap. I mean, what sick human being would make cheap jokes after one of his buddies is dead? And they do lots of it. And if you think that a movie about dinosaurs killing soldiers can only be at least action-packed, WAKE UP!!! This movie is incredibly dull. The carnosaurs(who invented this lame name anyway?) attack(in boring action sequences where you don't see much happening). The soldiers think of how to beat them(in incredibly funny scenes where they try real hard to be serious but can't seem to convince even just one second). So, then, they attack the carnosaurs, but their idea doesn't work(another laughable action sequence). Back to planning(with a few lame jokes thrown in) in another ridiculous scene. And this goes on, and on, and on. And let's not forget the acting which is about as convincing as the special effects... and the story... Oh OK, this movie simply sucks from A to Z.<br /><br />",0 +24044,"Phew--I don't what to say. This is a film that could be really good a with a bunch of stoned viewers. Some of the acting reminded me of John Waters' early offerings. Perhaps I should take that back--I don't want to insult Waters' ability as a director/storyteller.<br /><br />I particularly loved the lawyer taking about the ""full faith and credibility"" clause. It's ""full faith and credit,"" by the way!<br /><br />This also reminds me of ""The Conrad Boys,"" where the main actor is also the writer, director, film editor, etc. Those sort of multi-involved undertakings such as that are probably best left to very seasoned film professionals who would have the technical ability (albeit a stunt, some might say) to pull something off like that.",0 +9161,"One thing is for sure...you should not watch this film if you are having a bad day. The story is based around a sad event and follows a character who has to live with a sin that he cant handle. The story is drip fed to you rather than the usual dumbed down explanation so it keeps you wondering what is going on. Eventually the dots are joined up and the performances make sense. All the characters were OK and Wil Smith did another good day at the office.<br /><br />There are no doubt a lot of moral questions to be asked but if you just accept and buy into his agony then it is easier to accept what he has chosen to do. Whether you agree or disagree is irrelevant. The journey it takes you on is interesting enough, if not overwhelming.<br /><br />A good enough film that unfortunately leaves you a little sad at the end. I would recommend this film if you like the sort where you have to think and not just watch explosions and fights.",1 +17045,"SAKURA KILLERS (1+ outta 5 stars) Maybe in 1987 this movie might have seemed cool... if you had never ever seen a *good* ninja movie. Cheesy '80s music... cheesy dialogue... cheesy acting... and way-beyond-cheesy martial arts sequences. The coolest scene is at the beginning... with an aged Chuck Connors playing golf on a beach... several black clad ninjas try to sneak up on him and it looks like he is too intent on hitting his ball to notice... suddenly he reaches into his golf bag and... naw, I won't spoil it for you... if you ever have the misfortune of seeing this movie you'll thank me. The story is a lot of nonsense about some stolen videotape or something. A bunch of dim-bulb Caucasian heroes are trained in the ways the ninja because ""only a ninja can fight a ninja"" or something like that. Strange, these guys don't seem to fight any better after their training than before... oh well, the movie does move along pretty briskly. The fight scenes may not be great.. but they are plentiful... and the overdone sound effects are good for a few chuckles.",0 +24014,"They had such potential for this movie and they completely fall flat. In the first Cruel Intentions, we are left wondering what motivated the lead characters to become the way they are and act the way they do. There is almost NO character development whatsoever in this prequel. It's actually a very sad story but this film did nothing for me. It was as if they left out good writing in place of unneeded f-words. And the end makes absolutely no sense and doesn't explain anything. The writing was just terrible. Another thing that bothered me was that they used at lease 3 of the EXACT SAME lines that were in the original. Such as ""down boy"", or the kissing scene, and a few others I can't remember. I was not impressed at all by Robin's acting, but Amy did a great job. That's about the only thing that reconciled this movie.",0 +23554,"As a Southern Baptist, it pains me that I must give a below average rating to an overtly Christian movie. There certainly aren't so many that I want to discourage film-makers from a genre that's woefully under-exploited. Still, I must honestly say that ""Love's Abiding Joy"" is a typically low budget, low key, self-consciously Christian film. The plot is predictable, the acting mediocre (I'm being kind), and the editing atrocious. As a TV movie it might have been slightly above average, but as a feature film it leaves much to be desired. Keep trying guys. You've got to have a movie about about real Christians inside you somewhere. Might I suggest you turn to G. K. Chesterton or C. S. Lewis for some inspiration?",0 +12660,"As Steven Segal movies go this one is bottom of the barrel. His best was just fodder for bored teenagers. This one tips the scales, then falls off. The characters are all cardboard. The story is double lame. I can't spoil it by telling you the ending. You already know how all Steven Segal movies end if you have seen one. Here goes. He is a super-dooper government agent who know too much to turn loose so they decide, instead of killing him, to dope his brain until he don't remember squat. He escapes, of course, gets arrested and is located by his old general who needs his one man in a million experience to get back a stealth plane that has been handed over to a terrorist gang in Afghanastan by a rogue Air Force pilot who, surprise, surprise, Segal trained. All the heroes, except Segal's character and his dusky girlfriend, die heroically and Steve-Baby save the whole world in one swell foop, or fell swoop. Whatever. Made with some surplus Air Force and Navy flying film. And a lot of boom-booms. Get some Popeye cartoons instead.",0 +23467,"The previous poster obviously worked on the movie. It's a joke how bad it is and no one would review this kind of movie the way he did.Mentioning all of the actors' names and what they were in previously is a sure sign that he's involved with it in some way.<br /><br />It's on Cinemax right now and I was sure this was some movie where porn stars (the one called Ava is gorgeous and well-endowed) were forced to make something else for some crazy tax reason.<br /><br />Also, when I first saw it, I was sure it was made in about 1986, and I was born in '73, so I thought I knew what i was talking about...but no...it was made in 1993!! Unbelievable!<br /><br />Though I would call it one of those so bad it's good movies. Like watching a train wreck.",0 +17401,"Much of ""Over Her Dead Body"" is so painfully unfunny that I was actually squirming in my seat out of embarrassment for the actors.<br /><br />Eva Longoria proves that she can't carry a film in this terrible romantic comedy, and further, that she doesn't really even have any comedic timing. She's grating and annoying as a ghost who returns to earth to keep a cooky psychic from dating her widower fiancé. The fiancé is played by Paul Rudd, drippy and charmless, while the psychic is played by Lake Bell, bringing the movie whatever anemic energy it has. I felt most sorry for Bell, as she appears to have some comic abilities and was working overtime in an effort to make the material work. Unfortunately, she is up against the insurmountable task of making any movie that features Jason Biggs tolerable, and she is dragged down with the rest of the cast like Leo DiCaprio at the end of ""Titanic."" <br /><br />""Over Her Dead Body"" actually pi**ed me off, because of its laziness and utter lack of effort. I started to think of all the interesting projects that can't get funded because vast amounts of money are being funneled into bland crap like this. Seriously, does Hollywood think movies like this are good enough? How stupid do they really think the movie-going public is? <br /><br />Grade: F",0 +20446,"I went in expecting the movie to be completely dumb. With such a low expectation, any form of entertainment would be a pleasant surprise. The soundtrack was the best part of the movie, but poking fun at the nonsense that goes on in singles wards was also amusing.<br /><br />This said, there were many things about The Singles Ward that were completely annoying. The entire film was poorly dubbed and made watching mouths while listening to their voices very irritating. This lack of professionalism was surpassed only by the cameos of Mormon celebrities who have no business acting.<br /><br />This film will do well among Mormondom, especially in college communities where singles ward exist. However the conclusion will offer no hope for the poor losers who find themselves unmarried. (Only the pretty girls in the Singles Ward get married, the fat, ugly ones don't, but all the ugly men do) Ultimately we realize that the whole film was an advertisement for LDSSingles.com",0 +964,"The first of two films by Johnny To, this film won many awards, but none so prestigious as a Cannes Golden Palm nomination.<br /><br />The Triad elects their leader, but it is far from democratic with the behind the scenes machinations.<br /><br />Tony Leung Ka Fai (Zhou Yu's Train, Ashes of Time Redux) is Big D, who plans to take the baton no matter what it takes, even if it means a war. Well, war is not going to happen as that is bad for business. Big D will change his tune or...<br /><br />Good performances by Simon Yam, Louis Koo and Ka Tung Lam (Infernal Affairs I & III), along with Tony Leung Ka Fai.<br /><br />Whether Masons, made men in the Mafia, or members of the Wo Sing Society, the ceremonies are the same; fascinating to watch.<br /><br />To be continued...",1 +24488,"The only reason to see this movie is for a brilliant performance by Thom-Adcox Hernandez who is underused in the movie within the movie. As usual Tom Villard is good, too. Otherwise it's c**p. The possesor doesn't even exist how does he magically change the letters on the theatre marquee to spell out ""The Possessor""? Lame.",0 +2342,"Yakitate! Ja-pan (translated as Fresh Baked! Japanese Bread) is the story of a young man named Azuma Kazuma and his journey to make the perfect Japanese Bread or Ja-pan, for Japan, and for the Japanese, that will be recognized the the whole world.<br /><br />Of course, that's just on the outside. In reality, Yakitate! Ja-pan isn't really about the bread, but the reaction that come after eating the bread, and the pun that comes with the reaction. The series is lovable because of these puns. From popular anime titles like Naruto, Detective Conan, and Dragon Ball to blockbuster movies like The Matrix and Lord of the Rings. It's all there.<br /><br />So what makes this title different from other titles of the same genre like Cooking Master Boy or Mr. Ajikko? Well, unlike the others who use cooking for world domination, Yakitate! Ja-pan is purely comedy. Sure, there are times that the story turns to drama, or even murder, but the comedic atmosphere makes you laugh at them. You'll be laughing at their own view of heaven. Just watch it.<br /><br />Just remember that this is also fiction, although some of the bread made here are based on real bread, eating the home made Japan #2 won't turn you to a Super Saiyan or turn your body to rubber.",1 +7212,"Excellent film from Thaddeus O'Sullivan featuring strong performances from a host of British and Irish actors. The film deals well with a thorny subject matter, and effectively captures the hopelessness and grim atmosphere of 1970s Belfast. Surprisingly realistic, it does nothing to glorify either side in this conflict. On one hand, it shows a young Catholic father trying to raise his family without getting drawn into the troubles. On the other it deals with a Loyalist gang who are intent on propagating violence. Very interesting and, thankfully, entertaining. Don't be expecting any laughs, though. 7 out of 10.",1 +23758,"""Dominique"" is one of those films that the expression ""slow-as-molasses"" must have been invented for. Too many endless and repetitive sequences (how many times do we see Robertson walking down the stairs slowly because he can hear someone playing the piano?). It is ALMOST redeemed at the end by a surprising twist, which, unfortunately, is followed by a second twist that succeeds only in leaving a bad taste in our mouths. Not a very enjoyable film.",0 +10930,"I'll be honest,I finally checked this movie not because of the stars--though they were reasonably watchable and compelling,particularly the three leads--or even the compelling story of a breach in the Presidential Secret Service(something,I've been informed through the DVD extras of this show,has yet to ever happen.Assuming that's true,that's remarkable!). I got it because it was directed and has a choice cameo by none other than Detective Meldrick Lewis!! Well,okay,Clark Johnson,one of my faves from ""Homicide:Life on the Street"" and a veteran (mostly) TV director. I'd say that he does about as good as he can with a project that is watchable but pretty average,despite the possibilities.<br /><br />Veteran and ace Secret agent Pete Garrison(Michael Douglass)has to find out both who is blackmailing him AND who killed his friend,targeted and blew up an Air Force One chopper and is gunning for the Prez.(David Rasche. Anyone remember ""Sledgehammer""?). His affair with the first lady(Kim Basinger,clearly one of the HOTTER first ladies we've ever had,fictional or real)is certainly not helping his standing. He's got to both ferret out the real mole in the service and avoid the hound dog like hunting of his former best friend and fellow agent and chief(Kiefer Sutherland,almost still completely in ""24"" mode). Throw in some other pivotal Service agents(Martin Donovan and the foxy,somewhat hard to buy as the gig Eva Longorria) and shady foreign characters and you have a fairly standard political thriller that doesn't aim as high as it purports and reaches the desired,if underwhelming,results.<br /><br />The summary line is about the best way to describe how this show plays out without giving spoilers. The DVD extras to me seemed more insightful and interesting than the movie,though the film itself was entertaining enough to keep most (myself included) interested.",1 +11121,"It's refreshing to see a movie that you think will end happily just like almost every other American movie, and then be surprised when that doesn't happen. I like a happy ending as much as the next guy, but sometimes it's better to portray things in a more realistic manner, and I thought Brokedown Palace did this very well.<br /><br />The ending, with one friend basically sacrificing herself for the other, thus redeeming her earlier poor behavior which got them into the situation in the first place, was very moving. I almost rather would have done without the last line, which proved that she didn't actually do the deed she confessed to, because that would have made the movie more about the friendship between the two girls, and less about the crime. Whether she did it or not wasn't that important.<br /><br />The story itself bordered on the cliché, but the actresses kept my attention with their excellent performances. Very realistic, very captivating.<br /><br />7 out of 10.",1 +8715,"I happened to borrow this movie from a friend knowing nothing about it, and it turned out to be an outstanding documentary about a journey on an ancient vessel across vast expanses of the ocean. Thor Heyerdahl had developed a theory that the ancient Incas in Peru managed to travel thousands of miles across the ocean to Polynesia, based on certain relics that are found in both places, certain types of ancient sea-going vessels that we know they had available, analysis of ocean and wind currents, and the knowledge that the Incas did, in fact, travel in some undetermined amount at sea.<br /><br />In order to test his hypothesis, Heyerdahl and his crew construct a vessel as closely as possible to what the ancient Incas had available, using only balsa wood and other materials available at the time, and set out from Lima, Peru's capital, to try to reach the islands of Polynesia, some 5,000 miles away.<br /><br />His theory, like so much about ancient history, is impossible to prove with 100% certainty, but the coverage of their journey provides for strong support that he is right. The film is really little more than narration of footage taken during the 100+ day expedition, but it is a very detailed description of what it was like and the trials and tribulations that they faced. I often wish that Academy Award winning documentaries were easier to find, and this one from more than 50 years ago is still as interesting and informative as I am sure it was when it was first released.",1 +19323,"they have sex with melons in Asia.<br /><br />okay. first, i doubted that, but after seeing the wayward cloud, i changed my mind and was finally convinced that they have sex with watermelons, with people dead or alive. no safe sex of course. the (terrifyingly ugly) leading man shoots it all into the lady's mouth after he did the dead lady. never heard of HIV? guess not.<br /><br />the rest of this movie is mainly boring, but also incredibly revolting. as a matter of fact, in parts it got so disgusting i couldn't take my virgin eyes off. sex with dead people! how gross is that? and what's the message behind it all? we need water, we need melons, we need to be dead to have sex? sorry, but this stinks!",0 +3792,"I simply love this movie. It is a perfect example of the well-rounded surprising stories that come out of Asian cinema. There was a recent Hollywood remake of this movie, with Richard Gere and the simply awful Jennifer Lopez. Please do not confuse the two movies. The original Japanese film is touching, subtle and wonderfully acted. The Hollywood version is the exact opposite. I was aghast when I first saw the trailer for the remade US Version and who was starring in it. It's typical Hollywood unoriginal crass commercialism at it's worst. The remake cements the argument that some foreign films can never be improved upon. The ONLY reason the original film did not become more widely viewed is the US audience's aversion to subtitles.<br /><br />One of the main reasons this movie would never work in an American telling is that the reserved, ultra socially conservative character of the public Japanese persona is at issue in this movie. Certainly the main character awakens to a more full understanding of living a vivacious life through dance, but half of the movie's tension comes from the stereotypes and ridicule ballroom dancers face in Japan.<br /><br />Please try to see this movie in it's original form, not the terrible full screen. And please DO skip the US remake....it's a shallow travesty in comparison to the original Japanese movie.<br /><br />Yes, I know the ""original"" movie is much older, and this is simply a Japanese take on the story, but the only two people are likely to see any time soon are this one and the new US remake.<br /><br />Speaking of foreign films, I'll make a few quick recommendations: 1.Monsoon Wedding-I list this first for a reason, outstanding film! 2.Johnny Stechino-Very funny Italian mistaken identity flic! 3.Shiri-A Korean action pic that mixes both Asian flare & US style plot 4.Run Lola Run-A German film that integrates it's techno score ingeniously.<br /><br />Well, just a quick list anyway :-)",1 +18113,"I know that actors and actresses like to try different kinds of movies - hey, no one wants to get typecast - but Danny Glover, Brenda Fricker (happy birthday, Brenda!) and Christopher Lloyd should have known better than this. ""Angels in the Outfield"" is another movie in which everything seems lost until someone or something magically comes and saves the day. Do I even need to tell you how it ends? The movie is just plain lowly escapism (examples of high escapism are the various sci-fi movies from the '50s). If these movies had some political undertone - or at least offered us a new look at life - then they would be OK; this one is just pointless. Far closer to diabolical than angelic. Also starring Tony Danza, Adrien Brody and Matthew McConaughey, and I suspect that they don't wish to stress this in their resumes.",0 +11488,"""Hollywood Hotel"" is a fast-moving, exuberant, wonderfully entertaining musical comedy from Warners which is sadly overlooked. It should be remembered if only for providing the official theme song of Tinseltown -- ""Hooray for Hollywood."" The score by Richard Whiting and Johnny Mercer has a number of other gems, however, including the charming ""I'm Like a Fish Out of Water,"" and ""Silhouetted in the Moonlight."" The best musical number is ""Let That Be a Lesson to You,"" in which Dick Powell and company detail the misadventures of people who found themselves ""behind the eight-ball,"" a fate which literally befalls slow-burning Edgar Kennedy at the number's end. The picture celebrates Hollywood glamour and punctures it all at once, as it gets a lot of comic mileage out of pompous and ego-maniacal actors and duplicitous studio executives. The cast includes a gaggle of great character comedians--Allyn Joslyn as a crafty press agent, Ted Healy as Dick Powell's would-be manager, Fritz Feld as an excitable restaurant patron, Glenda Farrell as Mona Marshall's sarcastic Gal Friday, Edgar Kennedy as a put-upon drive-in manager, Mabel Todd as Mona's goofy sister, and Hugh Herbert as her even goofier dad. The ""racist"" element mentioned in another review here is a ten-second bit where Herbert appears in black-face during a pseudo-""Gone With the Wind"" sequence. It's in questionable taste, but it shouldn't prevent you from seeing the other delights in this film, notably the Benny Goodman Quartet (including Teddy Wilson and Lionel Hampton!) in what I believe is the only footage available on this incredible jazz combo. The ""Dark Eyes"" sequence goes on a bit too long and comes in too late, but otherwise ""Hollywood Hotel"" is a gem, well worth your time and certainly a film which should be considered for DVD release.",1 +21967,"This could have been the gay counterpart to Gone With The Wind given its epic lenght, but instead it satisfied itself by being a huge chain of empty episodes in which absolutely nothing occurs. The characters are uni-dimensional and have no other development in the story (there's actually no story either) than looking for each other and kissing. It's a shame that an interesting aesthetic proposition like having almost no dialog is completely wasted in a film than makes no effort in examining the psychology of its characters with some dignity, and achieving true emotional resonance. On top of that, it pretends to be an ""art"" film by using the worst naive clichés of the cinematic snobbery. But anyway, if someone can identify with its heavy banality, I guess that's fine.",0 +503,"While traveling by train through Europe, the American Jesse (Ethan Hawke) and the French Celine (Julie Delpy) meet each other and decide to spend the night together in Austria. On the next morning, Jesse returns to United States of America, and Celine to Paris. <br /><br />""Before Sunrise"" is one of my favorite romances, indeed one of the most beautiful love stories I have ever seen. It is a low budget movie with a very simple and real storyline, but the chemistry between Ethan Hawke and Julie Delpy is perfect, and the dialogs are stunning. The direction is amazing, transmitting the feelings of Celine and Jesse to the viewer. I have just completed my review number 1,000 in IMDb, and I choose ""Before Sunrise"" for this significant number because it is a very special film for me. I cannot understand why this movie was not nominated to the Oscar, with such a magnificent screenplay, direction and performances. Yesterday I have probably watched this movie for the third or fourth time, and I still love it. My vote is ten.<br /><br />Title (Brazil): ""Antes do Amanhecer"" (""Before Sunrise"")",1 +7293,"i first saw this movie at the sundance film festival this year, and being a teenager myself i found the movie to be quite appealing. these kids are out of the ordinary and very unexpected to be in a movie of this stature but with the right dialog and junk they made the movie a complete success. i enjoyed this movie more then others but i highly recommend releasing and watching this movie. it is a mixture of witty comments and hilarious reality. capturing the essence of high school, high school record has topped my favorites list and hopefully has a chance to be released into theaters. i truly thank all of the kids who put the hard work into making this film, it helped me cry my eyes our in laughter.",1 +22252,"This is even worse than the original Game of Death. A jumbled, incoherent storyline leads to ""Billy Lo"" falling from a helicopter to the ground below, killing him, as we're left to follow his younger brother, Bobby Lo. So not only do we start out following some Bruce Lee clone, the film kills that one off and has us follow another one thirty minutes into the story. The main reason to watch this one is when Bobby Lo fights a lion, which is quite obviously a guy in a lion costume. Jang Lee Hwang is also the villain, who is usually pretty awesome but his screen time is significantly small. Mainly watched this and the original Game of Death because they're a part of the Bruce Lee boxed set. It's no wonder they're included with Lee's finished works. No one would buy them otherwise.",0 +21707,"This is truly an awful movie and a waste of 2 hours of your life. It is simultaneously bland and offensive, with nudity and lots and lots of violence. However, the nudity is not that exciting, and the violence is repetitive and boring. Also, the plot is flimsy at best, the characters are unrealistic and undeveloped, and the acting is some of the worst I have ever seen. <br /><br />I have heard that this movie is supposed to be funny, but it's not. I did not laugh once while watching it, nor did I even crack a smile. The makers of this film tried to combine a comedy movie with an action movie, and they failed on both counts. <br /><br />Some poorly made movies are funny because they are so bad, but this is not one of them.",0 +18276,"I cheer for films that fill in subject matter gaps in world cinema. So after watching the trailer for ""Water Lilies,"" I expected to like this film because I thought I'd stumbled on something unique: a movie that honestly portrays teen lesbian love - sort of a female version of ""Beautiful Thing."" <br /><br />The main characters are young French women 15 years old. Marie is slender, reticent and pretty in a tomboyish way; Floriane is outgoing, athletic and beautiful; and Anne is loyal, pudgy and behaviorally immature. The erotic interrelationship between Marie and Floriane is always simmering in this movie, if not at the surface, then just below it. <br /><br />""Water Lilies,"" however, is not about the dawning of lesbian love upon two teens; it is about sexual frustration, suffering, ennui, teens working at cross-purposes and - in at least two instances - joyless, mechanical sex. It also proves that screenwriters and film-makers mar their own creations when they become too manipulative.<br /><br />In the extra features on the ""Lord of the Flies"" DVD, director Peter Brook says, ""French cynicism starts with the arousal of sex,"" meaning the French regard children as angels while they regard adolescents and adults with a pervasive cynicism. Part of the downfall of this film is film-maker Celine Sciamma has gulped a mighty dose of this cynicism.<br /><br />""Where is the joy?"" I asked myself while watching this film. Yes, first love can be painful and frustrating, but it can also be joyful and triumphantly erotic in a fresh, life-affirming way. These positive aspects are missing from this movie; there is no balance.<br /><br />Organically, this movie wants to be a poignant celebration of first love. But Sciamma is too impressed with her own cynicism and cleverness and ruins the film. First, what is the point of showing only the plump girl nude? I know there is an established tradition of tasteful teen nudity in European cinema, as evidenced by films like ""The Slingshot; The Rascals; The Devil, Probably; The Little Thief; Murmur of the Heart; Friends; Beau Pere"" and ""Europa, Europa""; but this instance is a petty authorial intrusion - ""See, audience, I can make a film where I show only the unattractive person nude."" Either no nudity or evenly distributed nudity would've been an honest way to go.<br /><br />There is a scene in a club where Floriane and Marie are dancing. What follows next is not just Floriane cynically manipulating Marie; it is film-maker Sciamma cynically manipulating her audience.<br /><br />Perhaps the biggest betrayal of authenticity and organic honesty takes place when Floriane warns Marie she's about to request something that is ""not normal."" Marie understandably asks, ""Who cares about being normal?"" Then Sciamma plays false with her audience and the hurtling momentum of the movie, because Floriane's request is a phony, derivative and substitute question - not the authentic, heartfelt question the movie, Marie's character and the viewers who've invested their time deserve. <br /><br />Here are also two moments which clank falsely on the viewer's nerves: 1) Since when do the French - of all people - take baths wearing bathing suits, and with a turtle to boot? 2) What teen - of any nationality - would chomp down on an apple core that's been thrown in the garbage in order to get a taste of the beloved's mouth?<br /><br />The three main actresses are promising and, if they find better vehicles for their talents, may become excellent actors. Louise Blachere (Anne) is the best actress in terms of technique and could have a successful career in supporting roles. Adele Haenel (Floriane) could become a leading lady, or a bombshell, or both. Pauline Acquart (Marie) possesses an intensity and magnetism which are unmistakable. In the future, she could play everything from an emotionally crippled librarian to a mysteriously sensual seductress to a reluctant politician riding a meteoric rise in acclaim.<br /><br />All in all, ""Water Lilies"" was very disappointing. Will an honest film-maker please make an authentic movie about two young women falling in love! No - not necessarily for the sake of this middle-aged guy - but so young lesbian girls can have something of quality they can watch and identify with. And yes, to fill a subject matter gap in world cinema.",0 +16328,"The Brain (or head) that Wouldn't Die is one of the more thoughtful low budget exploitation films of the early 1960s. It is very difficult to imagine how a script this repulsively sexist could have been written without the intention of self-parody. And the themes that are expressed repeatedly by the female lead, Ginny Leith - a detached head kept alive by machines, I-Vs and clamps - seem to confirm that the film was meant to simultaneously exploit and critique gender stereotypes. Shades of the under-rated Boxing Helena.<br /><br />The genderisms are plentiful, and about as irritating as an army of angry ants. The dialog is hyperbolic, over-dramatic and unbelievable, and the acting is merely OK (but not consistent). Why have I given this film a 4? Because some thought clearly went into it. I am really not sure what point the film was really trying to make, but it seems clear that it strives for an unusually edgy and raw sort of horror (without the blood and guts today's audiences expect).<br /><br />Another unique and interesting aspect of the Brain is that there really are not any heroes in this film, and none of the characters are particularly likable.<br /><br />All considered, this is a fairly painful and disturbing look at early 1960s American pop sexuality, from the viewpoint of a woman kept alive despite her missing body after what should have been a fatal car crash. Her lover is threatening to sew a fresh, high quality, body onto her and force her to continue living with him. She is understandably non-plussed by all of this and forced to befriend a creature who is almost as monstrous as her boyfriend. Oh, there are also some vague references to the 1950s/60s cliché about the evils of science run amok.<br /><br />Recommended for B sci fi buffs and graduate students in gender studies. O/w not recommended.",0 +16796,"This film was pure pain. Sitting in the theater for x-amount of minutes, I was wondering when the film was going to start. All the setups were in place; typical love story, characters have to overcome their short-givings, villain has to emerge, but none of it ever initiated. By the time these things happened, I was already bored stiff and the devices were completely ineffective. In scenes that required immense tension and buildup, it felt like necessary frames were cut. Kid's stuff does not have to be this way. Children's films can be as riveting and engaging as adult ones. The excuse, ""hey , its for kids,"" is bull. I'll take ""Sword in the Stone"" any day. This was terrible. I'm getting the feeling that Disney will put out anything these days. And as for the kids, the 10-year I saw this with will agree...pure trash.",0 +20782,"Violence whether real or not always has an impact. In this film the violence is about as crass as you could ask for. In the Great Ecstacy the director has successfully demonstrated what extremes of violence people are capable of. But what was the point? The violence looks like a mix of Noë's 'Irreversible, and ' Kubrick's 'Clockwork Orange'...both of which are remarkable films. Don't get me wrong, I'm not opposed to screen violence at all and I've seen some nasty stuff in my film-going years, but this film as a whole is totally juvenile. The story is never developed enough to offer any reason for the extreme violence, the rizla paper thin reason we are give for Robert's demise is his introduction to drugs. Danny Dyer plays the character who is partly responsible for Robert's drug fuelled demise, however he is on screen for less than 5 minutes. Lesley Manville is Robert's unable to cope mum, I am not sure what either of these actors is doing in a film of this low caliber. The acting is wooden, the scene in the kitchen with the TV-cook and his wife for instance is as painful to watch if not more so than the shocking finale- who wrote those dialogues?! Some of the comments the boys make...'looks like she's enjoying it' are so trite as to tempt one to laugh if it were not for Clay's ardent desire to bombard us with harrowing images of mutilated female genitals. Why we need to be shown such detail possibly down to the director's adolescent obsession with sadistic pornographic imagery...one can only wonder at this young man's psychology.<br /><br />The 'political meaning' of the film was repeatedly brought to our attention due to the amount of scenes; in the bar, outside the TV-cook's house, war in Iraq reports, was perhaps too obvious in my opinion. Yes, war is violent, social determinism causes frustration, we're all prone to horrifingly violent acts whether you're in politics or on the street popping E. Juxtaposing all these things as part of the same underlying issue is evading the actual issue which is the meaning of violence in man. This issue is one that we still haven't managed to grasp and certainly not in this film.<br /><br />My opinion: derivative, badly-made and pointless.",0 +1603,"This film is mesmerizing in its beauty and creativity. An artist's profound vision, his art that springs intuitively from its natural source brings us an inspiring Hosanna, blending his creations with trees, white water dashing against rocks, fields and rain...Andy Goldsworthy makes the viewer feel joy in being alive, aware that we are all made of the clay of this glorious earth. He doesn't spare us his occasional frustration, but on the whole we see the miracle in joining art with nature. Credit also goes of course to the filmmaker, Thomas Riedelsheimer, who directed, photographed and edited the movie with incredible sensibility and perfect timing.<br /><br />If you have any feeling for beauty, nature and art...do not miss this fantastic film!",1 +5652,"THE FOURTH MAN (Paul Verhoeven - Netherlands 1983).<br /><br />A film based on a novella by Gerard Reve, that works best as a thriller. That's quite surprising, considering Reve roughly needs a hundred pages for just a minor plot twist and tension is the last thing on my mind when reading his work.<br /><br />""The Fourth Man"" is top-heavy on symbolism. Paul Verhoeven is generally extremely preoccupied with proving something to mostly hostile critics and I'm never sure what it is exactly he is trying to prove. He usually underestimates his audience and tells his story in such an unsubtle way, he quickly diverges from the original idea or storyline, and almost seems to forget what needs to be seen on screen and what needs to be left out. In ""The Fourth Man"" he is not as explicit on detailing the plot as he is with sex and nudity (of which there's plenty) but, as in most of his films, he seems afraid the audience wouldn't get it and hammers home the story with overt symbolism mixed with some supposedly shocking nudity and graphic sex scenes. There's hardly a scene without sex or full-frontal nudity, most of it so maddeningly gratuitous and in your face, it undermines an otherwise good story. <br /><br />Nevertheless, when you can cope with Verhoeven's pretty obvious satiric approach, it's quite an entertaining thriller at times with some intriguing plot twists and good performances all round, Thom Hoffman and Jeroen Krabbé in particular.<br /><br />Camera Obscura --- 7/10",1 +7581,"Peter M. Cohen has a winner satire on the mating game, twisted around and turned inside out. The critical bashing of the movie in mainstream media publications as ""offensive"" and ""raunchy"" only serves to underscore its intensity as a refreshing and concentrated dissection of people's sexual pursuits and passions. It is in the tradition of what I call ""reality based"" satire following in the footsteps of ""In The Company of Men,"" ""Chasing Amy"", ""Your Friends and Neighbors"" and ""Two Girls and a Guy"". Cohen's dialogue is hilarious and I was continually intrigued by how perfectly he captured the real pace of today's conversations. Brian Van Holt, Zorie Barber, and Jonathan Abrahams are three distinct, unrelenting sex-obsessed predators who along with the foil of their recently married buddy (superbly played by Judah Domke) are turned upside down on their own terms by a female predator (Amanda Peet). Underneath the satiric surface lurks a romantic comedy far more satisfying than most sugar-coated studio products.",1 +2714,"I enjoyed this film. It was a joy to see a version so close to the vision of Peter O'Donnell.<br /><br />A number of people have disliked the film, but it has to be seen in context of the origin story that it is. The film uses flashback to show the young Modesty and the events that shaped her into the woman that she became. Before the Network. Before Willie Garvin.<br /><br />The pace is a trifle slow, and for my taste not enough tension is developed in the present day scenes. However this is acceptable just to get such a faithful version.<br /><br />If you like Modesty Blaise, you will enjoy it even with its faults, if you just want an action flick with car chases - forget it.<br /><br />It has the feeling of being the first of a franchise, but as I have never seen it promoted anywhere, I suspect there will be no more to follow. Sadly.",1 +18615,"I cannot believe the same guy directed this crap and Dracula 2000. Dracula 2000 was innovative, fresh, and well written, if poorly acted.<br /><br />This pile can't even claim that. It starts with the defeat of Dracula at the end of Dracula 2000. Then ignores the narrative afterwards describing what happened after that. Following the narrative properly could have made this a good sequel somehow, but Craven chose to go in the style of his older films, having no good tie but the main villain's name.<br /><br />Even the actor playing Dracula was different (going from dark hair in Dracula 2000 to a blonde here).<br /><br />Avoid this movie if you have any respect for your taste in movies.",0 +22014,"I wasted 5.75 to see this crappy movie so I just want to know a few things:<br /><br />What was the point of the dog being split in half at the beginning of the movie, the disease had nothing to do with being split in half.<br /><br />What was the point of dragging Karen into the shed, she already totally infected her room, they could have just locked her in there where she would have been safer.<br /><br />Why would the Hermit be running around the forest asking strangers to help him when he could have just asked his relative, the hog lady, to take him to the hospital?<br /><br />Why didn't any of the characters bother to walk into town to get help when things started getting bad, are they all really that lazy?<br /><br />Even if Paul was threatened by the guy w/ the shotgun for peeping on his wife, Paul could have just sent Jeff or Bert back to the house to ask for help. the girl he loves is deteriorating.<br /><br />What was the point of the box?<br /><br />Why did Jeff go back to the cabin after he left when everyone else was getting infected, if he was that big of a jerk to leave in the first place wouldn't he have just gone back home?<br /><br />If the police went to all the trouble of gathering up the kids and burning them on the fire pit, why did they throw Paul halfway into the river, it wasn't even necessary for the plot because the water was already contaminated.<br /><br />Who makes lemonade out of river water, that crap has dirt leaves and bugs in it. Why couldn't the two kids have just use the tap water, it was contaminated too, so the stupid ending would still work.",0 +928,"I thought this movie was fantastic. It was hilarious. Kinda reminded me of Spinal Tap. This is a must see for any fan of 70's rock. (I hope me and my friends aren't like that in twenty years!)<br /><br />Bill Nighy gives an excellent performance as the off kilter lead singer trying to recapture that old spirit,<br /><br />Stephen Rea fits perfectly into the movie as the glue trying to hold the band together, but not succeeding well.<br /><br />If you love music, and were ever in a band, this movie is definitely for you. You won't regret seeing this movie. I know I don't. Even my family found it funny, and that's saying something.",1 +3268,"Like the great classic Bugs Bunny cartoons, this movie has humor at different levels. I just introduced this to my 10 year old daughter and 11 year old son. Both enjoyed the movie - busting out laughing quite a few times... and my daughter is not much of a sci-fi fan. The movie kept me laughing despite having seen a few times... the adult-level humor (that is, humor that adults will get simply because of greater life experiences, no baudy or R-rated stuff to be found here) keeps the movie equally enjoyable for adults. For example of the adult level humor, the Martian voices are based on characters of different movies/actors. The Martian pilot, Blaznee, has the voice and mannerisms of Jack Nicholson; the scientist, that of Peter Seller's Dr. Strangelove. The special effects are surprisingly good for this film. The lack of top 10 actors actually works in the movie's favor, and the actors/actresses play their part well - in fact I would say the producers picked out actors and their skills for the roles' needs over box-office draw power (an excellent example is Wayne Alexander's ""Vern"" character). I had to write this review... the kids are playing this for the 3rd time in 4 days over dinner right now. Good for a rainy day or a late night weekend there's-nothing-on-and-I'm-bored movie.",1 +5572,"Visual creative epic of inimitable style.<br /><br />This film may neither have the most alternative dramaturgy nor the most artistic acting. But who dares to say this film is no art? I'm not a supporter of the idea, that an important film must be serious, non-commercial or bothering me with questions. Even there are a lot of films, apposite to this attributes, that I like.<br /><br />Bogus Journey, for sure, is not one of this films. What you get is pure, excessive creativity with a very positive charged, childlike energy. This film doesn't reflect reality. Its friendly-naive and utopian. Imagine the world of the future described by Rufus - for me it would be a pretty nice time-place combination to live in! Except of that music ;- )<br /><br />Technically, Bogus Jorney is very well made. I always liked the cinematography and the sceneries of this movie. Especially in this point Bogus Journey tops its prequel by far. Also the effects are good, and I think most of them very made without cgi. I generally prefer the good old effects in big budget movies. Sure its 'just another Hollywood movie' out of some peoples view. But I think it is this in a very charismatic way.<br /><br />A short word to the soundtrack: all the band and orchestral music fits very well into the film. Also the sound design has no lack. I am not a big fan of rock music, but I had to get this track by Winger from the scene 'station' builds the bill and ted robots in the van. I love the unorthodox camera work at its beginning.<br /><br />Let me conclude saying this:<br /><br />This film is very naive and very imaginative! It is way better than Panzerkreuzer Potemkin, The Godfather, Eraserhead or Aguirre - the wrath of god. It is absolutely superior to citizen kane, apocalypse now or chris markers sans soleil... ...it is even better than Total Recall... No way!? Yes way!<br /><br />Bill and Ted's Bogus Journey is simply the best movie ever made.<br /><br />Who dares to disagree makes himself guilty of ""artsie-fartsy behavior"" or likes Terminator Salvation (what is the bigger self-defamation)<br /><br />PS: part 1 is not the better movie. So Bogus Jorney is a superior sequel. Not even Terminator 2 is a superior sequel! Its NOT!",1 +5721,"One of the very best Three Stooges shorts ever. A spooky house full of evil guys and ""The Goon"" challenge the Alert Detective Agency's best men. Shemp is in top form in the famous in-the-dark scene. Emil Sitka provides excellent support in his Mr. Goodrich role, as the target of a murder plot. Before it's over, Shemp's ""trusty little shovel"" is employed to great effect. This 16 minute gem moves about as fast as any Stooge's short and packs twice the wallop. Highly recommended.",1 +1644,"Cutting to the chase: This is one of the most amazing, most intense film I've seen in a long time. The first movie in years that left me absolutely staggered. I could barely feel my way out of the theatre, I was so overwhelmed.<br /><br />I've been staring at the screen for about fifteen minutes trying to find some way to describe the power of this film, and just failing. Highlighting any one aspect of it -- the documentary-style video diary format, the unflinching portrayal of the events, the force of the characters -- just seems to trivialise it all. Some may find it laughable that any killer could be characterised as normal. But then not all killers are raving lunatics foaming at the mouth. Many are quite regular, unassuming people. They're just wired differently.<br /><br />And that's perhaps the most chilling thought of all.",1 +23931,"A noble effort, I guess, but ultimately a poor one. Before seeing this film, I felt ""Bartleby, The Scrivener"" was unfilmable. After seeing it, I still do. Unfortunately, I think only those who have read the story will understand what is going on, and they will be upset at the film's needless revisions (updating from 1850 to 1970, moving from New York to London). Even the superb talents of Paul Scofield can't salvage what looks to me like a well meaning but misguided effort to film Melville's metaphysical classic.",0 +23717,"This U.S soap opera, 'Knots Landing' has all the entertainment value of being trapped in an elevator. Every episode contained plots such as rape, murder, kidnapping and drug smuggling, not much different to the plots of other drama shows of the period. As for the cast, I've seen better actors on a cereal box. From the mid to late '90's, repeats of 'Knots' stunk up U.K-Gold like a mountain of mildewing nappies. I regret to announce that I had to suffer this as my mother was a huge fan of the show and would watch it religiously. Though since then, re-runs have been few and far between (let's hope it stays that way). The only positive thing that can be said of 'Knots' is the catchy saxophone signature tune, later used as the title music for the I.T.V sitcom, 'The Upper Hand'. Great legacy that, eh?",0 +2111,"Both visually and musically stunning. A treat for both the eye and the ear. The quintessential Victorian element of the opening sequences were completely enchanting, helping to create a Christmas scene of which Dickens himself would have been justifiably proud. Technically the production is visually stimulating and the special effects are both imaginatively devised and creatively achieved in a traditional stage setting. The dancing of many of the lead artistes is breathtakingly good. The photography and lighting are first class and the sound recording admirably matches the overall high level of technical skills employed. A great film for all the family at Christmas time and a most delightful discovery which will withstand multiple viewing.",1 +11919,"Tian's remake is no good at all. I only click on his remake documentary to see Wei Wei, the original actress back in the classic 1948 film say a few words to the crew. We are going to meet Wei Wei this Sunday (28/3/2010) after the showing of Xiao Cheng Zhi Chun in the Hong Kong Film Archiev. Wei Wei is almost 90 years old in silver hair, her cameo appearance in Hong Kong films is always a surprise to her fans. In this year's Hong Kong Film Festival, a special program is dedicated to Fei Mu, director of this epic movie and Wei Wei's still shot from the movie is being seen all around in Hong Kong. My son, who turns 21 this year, is surprised Wei Wei was so beautiful then.",1 +828,"I live in Missouri, so the direct effects of terrorism are largely unknown to me, this brought it home. That two men would put themselves on the line in the way that those members of FDNY and NYPD did, just to document the horror that unfolded on that day. This film is a testament to those who lost their lives and the true evil that terror brings.",1 +3971,"As I watched this movie I began to feel very nostalgic. As a child growing up in a rural area I felt as if I was a kid again! The swimming pond (it's called a ""tank"" in Central Texas), the running through the countryside like a wild free spirit! The story was very believable and I totally lost it and cried toward the end. Through the pain we go through in life...life goes on and there can be forgiveness.",1 +7747,"so, being a fairly deep fan of horror movies, it's been a while since i've seen one that really made me jump (or fidget nervously.)<br /><br />definitely going to get this on DVD when it comes out... a hell of a lot better than the ring. the thing that i don't get is that so many people that we talkd with after the movie thought that it was horrible, well, if that's what you think, then so be it... i know what i liked and it takes a fair amount to get me to actually feel scared, so i have to say that this one is worth watching.<br /><br />now, you might be disappointed in the story if you need everything in a neat and tidy line, because the plot goes back an forth a little bit to help build the story (i think that if it was shown in chronological order, it would have ruined the whole thing.)<br /><br />i'm actually glad that this movie had very little bloody messes in it... maybe the rest of you studio writers and whathaveyous will realize that you don't have to splash the red stuff all over the set to make people afraid.",1 +17940,"It's a good thing I didn't watch this while i was pregnant.I definitely would have cried my eyes out and/or vomit. It was Kind of gruesome mainly disturbing. I personally thought the baby was adorable in its own twisted little way.However as a mom I cringed when Beth stabbed herself in the stomach and when Virgina aborted the child during her 3rd trimester with rusty utensils no less.Also,as an animal lover i almost cried when she scratched the cat to a bloody pulp.However,As creepy and sinister as the baby was I was rooting for it to live.And as twisted as the movie was I am extremely intrigued to see the sequel...... ......... ....... ......... ......... ....... ...... .....",0 +18813,"Tatie Danielle is all about a ghastly old hag who torments her loving and oblivious family out of sheer spite. There's a bit of subtext that might be about France's colonial past but it's mostly just Danielle doing the sorts of things (like deliberately abandoning a small child in a park) that would soon have a man picking up his teeth with broken fingers. Sadly, that doesn't happen here. It looks good and the acting is fine and there's nothing really wrong with the concept but it's just so SMUG. God, does this movie love itself. Pity it isn't nearly as clever or as funny as it thinks it is. The only impetus in the show - sorry, movie - comes from Danielle getting nastier and nastier, and the only surprise comes from watching the increasingly improbable ways she does this. That's right: just like in a sitcom, which is what this is, with the added 'bonus' of delusions of grandeur and a 110-minute running time.",0 +3806,"A story of obsessive love pushed to its limits and of a lovely swan whose beauty is the very ticket to her own premature demise. Placed at the beginning of talkies, PRIX DE BEAUTE walks a thin line in being a full-on silent film -- which is still is at heart -- and flirting with sound and sound effects. The effect is a little irritating for anyone coming into this film because the recorded audio is extremely tinny and just doesn't help it at all. Hearing sound stage conversation edited over the beginning sequence which takes place in a beach, for example, is as part of the movie as the actress who dubs Louise Brooks' dialog and in doing so robs the audience of a fine performance. Other than that, the movie rolls along more or less well, with little jumps in continuity here and there -- something quite common in films from this era -- and has that vague sped up feel typical of silents. In a way, this is an experiment of a movie, and closer to the style of Sergei Eisenstein in visual presentation and near-intimate closeups that elevate it from what would be a more pedestrian level. Louise Brooks here plays a character less flapper than what she was known for: she's a stenographer who on a lark decides to enter a beauty contest despite the furious opposition of her extremely smothering boyfriend. Her role is quite Thirties and contemporary for its time; the last of the flapper/Jazz Baby roles were being shown on screen and now, with the onset of female independence, women as professionals were being represented in film. That Brooks's character decides to leave her boyfriend (even if she does ""reconcile"" with him later) is also a little ahead of her time. However, her character's fatal flaw is its willing to believe what isn't there -- that her boyfriend wants her to succeed -- and this is what leads to her end at the movie theatre. This final sequence looks like something straight out of Hitchcock in its heightened suspense (seen in THE MAN WHO KNEW TOO MUCH) and cuts from Brooks, her image on screen, and the murderous boyfriend. Even more dramatic is the placement of the still singing ""live"" Brooks with the now dead one -- a chilling effect to a chilling, powerful movie.",1 +2434,"The Lady From Shanghai is weird even by the standards of its eminent director, Orson Welles, whose last Hollywood film this was for many a moon. It's a kind of post-modern film noir made during the period when more conventional films of this type were quite popular, and it concerns a happy go lucky Irish sailor (played by Welles) who falls in with a mysterious lady (Rita Hayworth, who was married to Welles at the time), and her crippled, and probably impotent husband, played with a brainy, malevolent gusto by Everett Sloan. A long sea voyage follows, with Welles in tow as bodyguard, and the plot thickens when Sloan's law partner (Glenn Anders) turns up and starts making trouble by giving odd speeches about suicide and other morbid topics that suggest that the man is on the verge of mental breakdown. A murder plot ensues, and all sorts of calamities follow for Welles and his employers, and at this point the story, fuzzy and told at a leisurely pace thus far, goes off the deep end, and the last part of the film consists of brilliant directorial set-pieces that seem to have been thrown in to give the movie some of the drive and urgency its story does not, by itself, possess, and the result is a very watchable and often pleasing at all times incomprehensible mess.<br /><br />It's hard to know what Welles was trying to do with this film aside from maybe resurrect his career in Hollywood by making a vehicle for his wife. But self-destruction intervenes, as it often does with Welles, and Miss Hayworth has never looked less fetching. That she is also cast as a femme fatale seems peculiar, as aside from her beauty her most appealing trait as a screen personality was lovableness, a quality she does not possess in this picture. The director himself is strangely unappealing and hammy at O'Hara, the (presumably) easygoing sailor, since Welles, for all his many gifts, was not known as an easy man to work with. This is a role that twenty or thirty years later Sean Connery or Robert Shaw might have been able to breath life into. Welles does not. The most interesting performance in the movie is Glenn Anders' as Grisby, Sloan's loony, treacherous law partner. Anders works wonders with the part, and is photographed to look bizarre, while his scenes end on odd, sour notes, and are often choppily edited; but for all this he manages to make Grisby's derangement palpable and disturbing, and anticipates, in a genteel way, the more flamboyant Method actors of the fifties, such as Timothy Carey.<br /><br />There is a question that nags me about this film: what was Welles trying to say? He was a highly talented and intelligent man, and tended to make statements in his movies, which, whether one agrees with his world view or not, were brilliantly put forth. I think I have an answer, or a partial one: Welles was summing up his movie career. He had reached the end of his rope in the Hollywood studio system he despised, and he knew it. The Lady From Shanghai isn't exactly a nose-thumbing at the studio moguls of the day, but I suspect that it is, in its portrait of amoral, rival big shot lawyers (read: producers) expressing Welles' opinion of the power brokers of Hollywood. That he presented himself as a rootless sailor is telling. Welles himself was certainly an inveterate traveler, and he rarely lived in one place for long. He was hired by a studio to provide it with a big, prestigious film (Citizen Kane), which caused a firestorm of controversy from which he never fully recovered. This may be the issue that dares not speak its name in this film, which is to say Welles' personal failure in not getting over the shock of his newness in the movie colony, and his inability to deliver the goods, as promised. The mere fact of him turning up in Hollywood, like his mere presence in the film, could not forestall disasters well beyond his control. That he presented himself in the movie as an amiable, naive outsider shows a lack of self-knowledge on Welles' part. He was much more of an inside player than he let on, and I imagine that he despised his knowledge of the worldlier aspects of life, and himself for knowing so much.",1 +11968,"This is the first Tom Hanks movie I have gotten the privilege of seeing in the theater, although he is my favorite. When I heard he was going to play a hit-man, I was a little stunned thinking ""can Mr. Hanks pull this one off""? And he did in high fashion. This 1930's depression era film is a about loyalty, redemption, and one path that you don't want your children stumbling down. Tom Hanks leads a stellar cast as Michael Sullivan. Being the family man, and the secret life of the contract killer for the Oscar nominated Paul Newman. This movie Tom Hanks relies more on reaction and gaze rather than dialogue, which he delivers a knockout performance.<br /><br />On one night of one of his jobs, Michael's son Michael Jr., played by newcomer Tyler Hoechlin, witnesses the hit. And Michael Sr.'s partner in crime, fellow stage actor Daniel Craig can't have that information out. So he wacks out the son and wife of Michael Sr., except Michael Jr. So the two head for Chicago to get Conner Rooney(son of Paul Newman's Mr. Rooney).<br /><br />The drama and intense plot really thickens from their as father trys to set things right, even though son is along for the ride. While on this deadly journey, someone has hired a hit for Michael Sr. The assassin would be the photographer of the deceased Harlen Maguire, played by a stain-teethed Jude Law.<br /><br />The movie will have you feeling the old days. And with Thomas Newman's beautiful and haunting Oscar nominated score to go along with it, you can't help but appreciate this film from Oscar winning director Sam Mendes. So sit back, and enjoy the wild ride.",1 +17598,"Barry, a medical transcriptionist has his mind corroding from his job coupled with memories of an abusive upbringing at the hands of his stepfather, Barry (the original Leatherface Gunnar Hansen). He spirals into madness and eventually a serial killer. Good (in the form of a gay man) and evil (in the form of a bald mute guy) battle for control of his soul. This film is undone by some bad acting and unintentional humorous scenes. Not to say it's horrible or anything, just that you cal tell that it's only as known as it is on account of Bruce Campbell's rabid fan base (of which I am one) who will likely see anything he's in or involved with in some way.<br /><br />My Grade: C- <br /><br />DVD Extras: Commentary with Michael Kallio, and Bruce Campbell; Second commentary by Kallio and Sound designer Joel Newport; 'Hating every minute' a 17 minute documentary; deleted and extended scenes; alternate takes; outtakes, footage of the world premiere; Poster & still gallery; Talent bios; and theatrical trailer <br /><br />DVD-Rom: Screenplay in .PDF format <br /><br />2 Easter Eggs: highlight the eyes for a laughing outtake (left eye) and one minute of nothing but an actual Easter egg (right eye)",0 +15260,"Bette Davis brings her full trunk of tics to this miserable flop which is another variation on the ""hilariously mismatched"" lovers theme. Sadly, Cagney and Davis are truly mismatched in acting styles and the mix is not simply unpalatable but distasteful. The only distinction in the film comes from Eugene Pallette who, literally, phones in his usual part as the deb's misunderstood dad. Jack Carson's performance can only be described as an act of mayhem on the audience",0 +11832,"My first child was born the year this program came out, and I played the record album for the boys every Christmas thereafter. When the CD came out, I bought about ten copies and still give them to friends and relatives as they start families...it invariably becomes their favorite Christmas album. I recently found several DVD's (made on DVD-R from video tapes, probably) for sale on eBay. The one I bought was an excellent copy, and it was so great to see the show again after more than 25 years. There are some songs on the show that were not on the album, and some of the songs on the album were studio versions of the same songs on the show. But both the CD and DVD will stay in our library as the best Christmas entertainment ever.",1 +13207,"I do regret that I have bought this series. I expected more action, more objective picture and more consistency. This is just a pure propaganda series, very dark, without any charm, or romanticism, it is just boredom itself. I find the actors work quite weak as well. O'Donnell might seem charming as Robin (with Batman), but in this picture he lacks any charm. Probably while he becomes older, he is loosing his childish charm but does not gain any charm of a grown up. It comes as no surprise, that it was not shown in a lot of countries and is being sold in the UK for 40% of the recommended price and was not even released in the Netherlands.",0 +5836,"At the beginning of the film we watch May and Toots preparing for their trip to London for a visit to their grown children. One can see Toots is not in the best of health, but he goes along. When he dies suddenly, May's world, begins to spin out of control.<br /><br />The film directed by Roger Michell, based on a screen play by Hanif Kureshi, is a study of how this mother figure comes to terms with her new status in life and her awakening into a world that she doesn't even know it existed until now.<br /><br />May's life as a suburban wife was probably boring. Obviously her sexual life was next to nothing. We get to know she's had a short extra marital affair, then nothing at all. When May loses her husband she can't go back home, so instead, she stays behind minding her grandson at her daughter's home. It is in this setting that May begins lusting after young and hunky Darren, her daughter's occasional lover.<br /><br />Darren awakes in May a passion she has not ever known. May responds by transforming herself in front of our eyes. May, who at the beginning of the film is dowdy, suddenly starts dressing up, becoming an interesting and attractive woman. She ends up falling heads over heels with this young man that keeps her sated with a passion she never felt before.<br /><br />Having known a couple of cases similar to this story, it came as no surprise to me to watch May's reaction. Her own chance of a normal relationship with Bruce, a widower, ends up frustratingly for May, who realizes how great her sex is with Darren. The younger man, we figure, is only into this affair to satisfy himself and for a possibility of extorting money from May. Finally, the daughter, Helen discovers what Mum has been doing behind her back when she discovers the erotic paintings her mother has made.<br /><br />The film is a triumph for the director. In Anne Reid, Mr. Michell has found an extraordinary actress who brings so much to the role of May. Also amazing is Daniel Craig. He knows how Darren will react to the situation. Anna Wilson Jones as Helen is also vital to the story as she is the one that has to confront the mother about what has been going on behind her back. Oliver Ford Davies plays a small part as Bruce the older man in Helen's class and is quite effective.<br /><br />The film is rewarding for those that will see it with an open mind.<br /><br />",1 +23234,"We expected something great when we went to see this bomb. It is basically a Broadway play put on film. The music is plain terrible. There isn't one memorable song in the movie -- heard any hits from this movie? You won't because there aren't any. Some of the musical numbers go on so long that I got up to go to the restroom and get some pop corn and it was still going when I got back! If they were good songs well -- but they suck. The pace is slow, terrible character development. The lead was praised for her singing but sounded like she screamed every song -- it was almost impossible to stand. This movie has NOTHING to offer anyone but die-hard Broadway enthusiasts. This is without a doubt the most over rated movie I've seen in my entire life. A complete waist of time and money. There is nothing memorable about this movie except Danny Glover -- who wasn't on screen enough and whose character wasn't developed enough. Rent the video and you'll agree -- this movie was an expensive, over produced, polished dog do.",0 +3226,"Soap Opera about a small town married woman (Kay Francis) who works at the local newsstand, performs as leading lady in her local playhouse, but dreams of becoming a star on Broadway. When a famous actor who is a ham, a windbag, and a womanizer to boot, arrives in town she visits him in his room with dreams of him giving her tips to stardom - he pretends his valet is his ""manager"" tricking her into believing she has all it takes but ""experience"" to become a big star. Her husband finds out and punches the guy resulting in the actor's unexpected death - which leads to a murder trial and even more unexpected: a life prison sentence for hubby. Next thing you know she's joined a traveling Burlesque show in hopes of one day making it to Broadway and making enough money to get her man's freedom - all the while her baby is sleeping in a trunk!<br /><br />This film has a pretty interesting plot, well, a bit far-fetched perhaps, but very melodramatic (with tons of melodramatic music to make sure you get it) - all *greatly* enhanced by the strong, emotional performance given by Kay Francis - she just makes this film. Also helping here is the well-done acting by Minna Gombell in her role as a ""getting close to forty"" older lady who works the burlesque and befriends Kay. Worth seeing, especially for Kay Francis fans.",1 +21578,"I went to a prescreening of this film and was shocked how cheesy it was. It was a combination of every horror/thriller cliché, trying to comment on many things including pedophilia, Satan worship, undercover cops, affairs, religion... and it was a mess. the acting was pretty washboard; the kid and the Jesus dude were alright, but apart from them.... Anyways. I admire the effort (though slightly failed) on the attempt at showing the Christian people in a different way...even though they did that, the way it presented the gospel was a bit stock and kiddish. But then again, it may have to be since he was talking to a little kid... no. actually, I've decided it's just all around bad. music... oh my gosh... horrible... toooo over-dramatic. Okay. I felt bad for the people who made this movie at the premier; It seemed like a poor student project. I'm going to stop ranting about this now and say bottom line, go see this movie if you want to waste an hour and fifty minutes of your life on crap. there you go.",0 +24781,"Power rangers, the moronic merchandising television kids show from the 1990s, has got to be the most pointless and ridiculous television show ever created.<br /><br />What exactly is the point of this show anyway, other than to sell second rate plastic nonsense to children? There is nothing even remotely redeeming or interesting about this show in anyway.<br /><br />Look at the costumes, which look like spandex gone bad.<br /><br />The mullet style hair, earrings, and fashions of the early 1990s look completely ridiculous these days.<br /><br />Avoid this show at all costs!",0 +22499,"This movie was the worst movie ever made on the planet, I like BARNEY more than this movie. The graphics suck, half the movie is animated, the deaths suck, and over all, I was ready to SUE the people that made this movie!PLEASE DO NOT WASTE HOURS OF YOUR LIFE WATCHING THIS MOVIE. The only good part was when the movie ******* ended! This movie is 50 percent Jurassic park, .1 percent Sabretooth, and 49.9 percent DUMB! Please do not waste your time watching this movie, you will regret it.You want to know why this movie sucks? Well, the cover sucked, the graphics sucked, the blood looked ( I mean is) ketchup, the people tried to blow themselves up, the college students think there all that and can stand up to the animal. I mean, there was a 5 ft. tiger running straight at a woman, she throws a spear at it from 100 ft away! WAIT TILL YOU CAN Actually HIT IT! The acting was horrible too. Jurrasic Park is actually a good movie, and this just had to go and ruin it.",0 +14791,"When great director/actor combinations are talked about the team of J. Lee Thompson and Charles Bronson is not usually mentioned. Probably because the output of nine joint ventures between the two of them runs the gamut from the really good action entertainment to the mediocre. Unfortunately Kinjite: Forbidden Subjects falls in the latter. <br /><br />That's sad because Kinjite could have been a whole lot better. But for the life of me I don't understand why it was necessary to make the father of the missing Japanese girl, a guy used to getting some cheap jollies because the romance in his marriage has run out. That might have been good for another film altogether, but it served no purpose here.<br /><br />A straightforward cop drama with Charles Bronson as a vice cop who's seen a bit too much in his line of work and has a strong prejudice against orientals. That part could also have used a little explaining as well. But he's going to have to overcome it if he and patient partner Perry Lopez are going to locate a captured Japanese school girl.<br /><br />Bronson's time in the vice squad have told him exactly where to look for the kidnapper. A stylish, murderous pimp played by Jaime Fernandez is the guy and he and Bronson have some history. In fact in the film's best scene, Bronson made him eat an expensive rolex watch and set his car on fire.<br /><br />At one point Fernandez happens to spot Bronson and Lopez in an all night delicatessen and this being after his rolex snack, he sprays the place with an Uzi killing everyone, but Bronson and Lopez. I really think that little incident would have had more than a couple vice cops from the LAPD after Fernandez. But that's another terribly big hole in the plot.<br /><br />Still there is a very rough justice in the end for Fernandez. I wish the whole film had been better though. This was the last film of the Bronson-Thompson team and J. Lee Thompson's last as a director. He should have gone out with something better.",0 +2904,"I remember Parker Posey on ""As The World Turns"" before she became the Queen of the Independent movies. In this film, Posey shows her potential as a top fledged actress. In this film with supporting cast that includes Omar Townsend as Moustafa, a Lebanese immigrant who works as a falafel salesman on the street, who aspires to become a teacher. The supporting cast features a wonderful actress who plays her godmother and only family relative as Judy, the librarian who is old fashioned, dedicated and menopausal. Posey as Mary learns that she has to grow up and mature. Losing her librarian clerk position makes her realize how much she misses it as a place in her life. Mary's life is surrounded by friends in the Lower East Side Village of New York City before it became gentrified with yuppies. This film is quite good for an independent and I have come to enjoy Parker Posey as Mary as well as other characters in other films.",1 +10727,"I am proud to say I own an uncut copy of this choice chunk of 70's Crown International drive-in sexploitation comedy cheese on DVD. It's a really goofy and enjoyably inconsequential flick with a nicely breezy'n'easy 70's vibe to it. It does attempt to make a sincere point about true love and friendship being more important in life than a cool set of wheels and a quick piece of tail. Sure, it's essentially a blatant adolescent male fantasy pic -- the main teen goofus character Bobby Hamilton gets the girls, the respect of his friends, and a chance to show-up a local van-racing bully -- but it's way too dopey and good-natured to hate. Stuart Getz as our gawky protagonist makes for an endearingly dorky lead, Deborah White as the main object of Getz's affection is a definite cutie, Connie Lisa Marie is likewise quite luscious as a beauteous blonde babe, and sneering beefcake Neanderthal Stephan Oliver (a 60's biker movie perennial) is wonderfully hateful as the brutish Dugan Hicks. A pre-stardom Danny DeVito in particular is an absolute riot as Getz's cranky carwash owner boss Andy, a lovably cantankerous ne'er-do-well slob who wears very ugly loud Hawaiian shirts and suffers from a severe gambling habit. I especially love the scene where two thugs brutally beat Danny up -- one holds his arms behind his back while the other guy works over Danny's torso! And Sammy Johns' insidiously catchy fluke hit theme song will be bouncing around your skull for at least a week. In short, it's great groovy retro-70's fun!",1 +17906,"If you merely look at the cover of this movie, it's cool. DON'T. The movie itself put me to sleep. It was slow paced, had minimal violence and a poor use of suspense. The acting was bottom feeder material and the plot, while it would've been cool for a different movie, was poorly shown here. They even kill the only likeable character in the whole film! I give it a 2 out of 10 because the only thing that was good was the plot twist at the end. Other than that, you might want to save yourself from this movie trash.",0 +14585,"Really, when it comes down to it, this movie is just not funny. Josh Kornbluth is the antithesis of funny, and yet he thinks he's hilarious. The plot about mailing the 17 letters was fine at first, until Josh's ""look at me, I'm wacky"" approach began infesting each and every scene. The Judas Priest joke may have been the least funny thing I have ever been privy to, and that is saying quite a bit, since it does have stiff competition from all the other jokes in the movie. And as for the incredible overuse of the Pixies' ""Debaser,"" I have just one thing to say: What did the Pixies ever do to deserve a fate like this? What did anyone do to Josh Kornbluth to cause him to write/direct/produce/star in such a terrible movie?",0 +10152,"The Movie Freddy's dead the final nightmare is just as horrific and disturbing as every other Nightmare on Elm Street , yes it has Comedy essence about it , so has all the other films, but how can anyone possibly say that you wouldn't find Freddy Krueger scary , if you were to come across this man in your dreams you wouldn't find him even more scary with a comic essence about him because his comedy shows that he doesn't care at all about killing you that he finds it extremely funny, and Freddy also plays comic mind games with them, which in its own way is very disturbing , by using his comic ways i think that makes the horror movies Nightmare on elm street what they are today, The writers are extremely clever making Krueger comic and scary as oppose to Jason Vorhees , who doesn't say anything and hasn't got the wit to truly frighten his victims, This Movie is about as good as Freddy's wit gets and i would recommend it to anyone with a sense of humour and by the way "" Don't Fall Asleep!"".",1 +8510,me and my sister saw the premiere last night... it was so good we were glued for the whole thing.. hahaha..i think I'm hooked for the season!!.... they have some really good actors in this thing.. the head coach guy and the player that likes pete were very good and the plot has already got me but i don't really understand how they'll keep it stretched for a whole season.. there will probably be some big twist tho..i cant wait till Tuesday.. finally Jeremy sumpter who is he? i can tell hes going to be big!! he was soo good we fell in love with his character right away.. cant wait for the next episode.. GO Jeremy!<br /><br />'Aimee,1 +11854,"I first saw this version of ""A Christmas Carol"" when it first appeared on television. I actually anticipated seeing the film when it was advertised and it more than lived up to my expectations. I have now purchased the DVD and plan to watch it every year. With the exception of ""It's A Wonderful Life"" I consider this version of ""A Christmas Carol"" one of the best Christmas movies ever made. George C. Scott is excellent and a superb cast led by Roger Rees surrounds him! Scott proves once again that he is one of finest actors of our time. Scott has the artistic talent and acting ability to play any role and keep the character unique to himself. How can someone be remembered as both Patton and Scrooge? Scott does so easily. The direction is marvelous with the fine sets, costumes and music that give the movie a special feeling of the time, place and era depicted. You will simply love this movie and will place it among your favorites to watch during the holiday season.",1 +18570,"Wow, i'm a huge Henry VIII/Tudor era fan and, well, this was .... interesting. The only one I watched was the Catherine of Aragon one. And wow...just wow. I've seen bad acting before, but this reached new heights. When the actress who played Catherine was umm.. crying? she wails and screams and i have to admit i rewinded many times... many, many times .... funny, funny stuff. The only person who even showed any slight sliver of talent was the actress playing Anne Boleyn (i might be prejudiced though, i do have a slight obsession with Anne Boleyn, she was a really facinating woman, read up on her, it's worth it!) Also, i have read a lot about the Tudor time period and i think that the characters weren't very acurately displayed, they were all very stereotypical. Only see this movie if you are prepared to see a very important time period, and the important lives of those involved turned into a laughing stock.",0 +18415,I expect the same excitement as I SPIT ON YOUR GRAVE but I was let down by just junk how can you even call this a movie ( its kinda of a mini porno) . It made my sick when the guy was made to eat his own business. There is no story line to it at all it jumps to quickly from each murder. If you like seeing a women naked or even mens parts then there's spots in the movie for and there's even a masturbation spot in the movie which makes it a porno and not a movie at all. I have seen some dumb movies in my time but this is number 1 . I want be watching it again at all. The actors even look bored during the movie to me so they probably were in need of money badly to make this movie.,0 +15654,"Warning Spoilers following. Superb recreation of the base in Antarctica where the real events of the film took place. Other than that, libelous!, scandalous! Filmed in Canada; presumably by a largely Canadian crew and cast. I caught the last half of this film recently on Global television here in Canada. Nothing much to say other than how thoroughly appalled I was at what a blatant piece of American historical revisionist propaganda it is; and starring Susan Sarandon of all people! I can only assume that Canadian born director Roger Spottiswoode was coerced to make the USAF the heroes of the film when in fact the real rescuers where a small private airline based in Calgary; Kenn Borek Air.",0 +1921,"And yet another run of South Park comes to an end. This wasn't as strong an episode as I'd hoped for, but Night of the Living Homeless was a stronger finisher then Stanley's Cup, Tsst, Bloody Mary, or Erection Day. It still can't hold a candle to Woodland Critter Christmas and Goobacks, but few episodes can.<br /><br />Night of the Living Homeless is a spoof of the zombie genre, done in a way only South Park would think of. Instead of flesh eating zombies, the entities are homeless that request change and seem to survive off of it.<br /><br />Randy and other residents are locked in the Community Center, though this time on the roof, where they can survey the scene. A particularly funny moment is when one member finds out his home is gone, and becomes homeless, leaving Randy no choice but to shoot him.<br /><br />Meanwhile, the four boys set out to solve the problem, with the whole story behind the homeless takeover trying to convey a message, but being seriously uninspired. South Park is at it's best a lot of the times when it is being ridiculous. Matt and Trey played it safe this week, and didn't really critique the homeless problem, just lampooned it.<br /><br />The shock moment of the episode comes when a scientist shoots himself in an attempt to avoid the homeless. This is the first time a suicide on South Park goes wrong, and we watch the poor man miss his brain and then attempt to shoot himself many times while he painfully dies. Another inspired South Park moment.<br /><br />Overall, the episode was funny, but it was kept from being great by withholding any real commentary on the homeless and sticking straight with the zombie shtick. The ending is somewhat funny, but nothing new.<br /><br />Now we must wait until October for the next batch of episodes. It's a long haul, but South Park must be applauded for it's run. The show seemed to be running out of steam last season, but now it's back in full form.",1 +13094,"<br /><br />According to reviewers, the year is 1955 and the players are 20 year-old college kids about to enter grad school. Jolly joke!<br /><br />1955? The synthesizer keyboard was not invented yet, but there it is on the bandstand. The Ford Pony Car was not invented yet, but there it is playing oldies music. The synthesizer appeared to be a model from the mid 1970's. The Pony Car at best is from the mid 1960's.<br /><br />20 year-old college kids? Josh Brolin had seen 32 birthdays when this made-for-TV movie was produced.<br /><br />The plot is so predictable that viewers have plenty of spare time to think of all the errors appearing upon their TV's.",0 +8977,"Many reviews here explain the story and characters of 'Opening Night' in some detail so I won't do that. I just want to add my comment that I believe the film is a wonderful affirmation of life.<br /><br />At the beginning Myrtle Gordon is remembering how 'easy' it was to act when she was 17, when she had youth and energy and felt she knew the truth. Experience has left her emotionally fragile, wondering what her life has been for and, indeed, if she can even continue living. A tragic accident triggers a personal crisis that almost overwhelms her.<br /><br />Almost - but not quite. At the eleventh hour she rediscovers the power of her art and reasserts herself (""I'm going to bury that bastard,"" she says of fellow actor Maurice as she goes on stage). It seems almost sadistic when Myrtle's director prevents people from helping her when she arrives hopelessly drunk for her first performance. He knows, however, that she has to have the guts to make it herself if she is to make it at all.<br /><br />Some critics wonder if this triumph is just a temporary pause on Myrtle's downward path. I believe this is truly her 'opening night' - she opens like a flower to new possibilities of life and action, she sees a way forward. It is tremendously moving.<br /><br />Gena Rowlands is superb. The film is superb. Thank you, Mr Cassavetes, wherever you are.",1 +2361,"I saw this film again and noticed how close it is to the novel if we ignore the part about Cary's [Leslie Howard] childhood. Considering that<br /><br />at the time not much can be shown on the screen, [not that there is much in the novel] the obsession of the character with Mildred [Bette Davis] is very well conveyed to the audience. I recommend this film to anyone who ever fell for another person and the other side tried to take advantage of him or her. I have read that Maugham was asked to make a recording of the novel for sale, but when he started to in the studio he began crying and could not finish more than a few lines and whole project was chucked. One can tell the novel is written from the heart and the film is a good<br /><br />adaptation of a part of it at least.",1 +22747,"It's interesting at first. A naive park ranger (Colin Firth) marries a pretty, mysterious woman (Lisa Zane) he's only known for a short time. They seem to be happy, then she disappears without warning. He searches for her and, after a few dead ends, stumbles upon some of her abused childhood and sleazy recent past, which may include criminal activity. And then, it seems the filmmakers didn't know what to do with the story. The beginning, while not as suspenseful as it sounds, is at least watchable. Then it ceases to be interesting or even make much sense. And the ending is so lame, so dull, and so devoid of any excitement or intelligence, you'll think the screenwriters didn't know what to do with it and got bored trying. What a sorry waste of a good idea!",0 +7270,"""Pecker"" proves that Waters has no intention of changing his tacky ways in his old age. A lot of things have changed since Waters started making films in the 1960s, but 40 years later he is still doing what he wants to do. Over the years, the budget of Waters' films has increased considerably. This is one of his most recent productions, but I was amazed to see that Waters still has that ""trailer-park"" touch. Edward Furlong plays Pecker, a kid who is obsessed with photography. He lives a quite life in Baltimore, MD, with his friends and family. But Pecker attracts the attention of a New York art agent (the always watchable Lili Taylor), and his life changes for the worst. Once again, Waters makes fun of art, fame and heterosexuality. It is not among his best films, but there are some big belly laughs here (""Memama"" has the best lines in the film!). It is consistently clever and funny, and has that very ""queer"" sensibility that I have come to love in Warters' movies.",1 +24124,"the only value in this movie is basically to laugh at how bad it really is. with a plot that makes your average middle-school writer look good, and acting which is almost as good, it gets my bottom score. one of tom hanks very early films where he obviously didn't have the pleasure to be real picky. the best special effect of the movie consists of a guy dressed up in an incredibly fake rubber monster consume.",0 +6051,"'Shock Corridor (1963)' was my first film from Samuel Fuller, and there I was impressed with the director's astute blending of B-movie and big-budget aesthetics, even if the story itself was pure schlock. 'Pickup on South Street (1953)' was released a decade earlier in Fuller's career, obviously produced on a larger budget from a big-name studio, Twentieth Century-Fox. Nevertheless, the visuals are still notable in that there's a somewhat raw, naturalistic element to the photography, not unlike Dassin's 'The Night and the City (1950)' and Kazan's 'Panic in the Streets (1950)' {the latter was also shot by cinematographer Joe McDonald}. In some scenes, Fuller shoves the camera so close to his actors' faces that they're out of focus, bluntly registering the intimate thoughts, emotions and brief inflections that are communicated through that most revealing of facial features, the eye. Though (unexpectedly) prone to melodrama, and with just a hint of anti-Communist propaganda, 'Pickup on South Street' is a strong film noir that succeeds most outstandingly in its evocation of setting the underground of New York City.<br /><br />When just-out-of-prison pickpocket Skip McCoy (Richard Widmark) snags the purse of a woman on the subway (Jean Peters), he pockets more than he'd originally bargained for. The woman, Candy, and her cowardly ex-boyfriend Joey (Richard Kiley) had been smuggling top-secret information to the Communists, and McKoy has unexpectedly retrieved an important roll of micro-film. Will he turn in the MacGuffin to the proper authorities, or sell it to the highest bidder? If 'Pickup on South Street' has a flaw, it's that the story seems designed solely to bolster an anti-Communist agenda, reeking of propaganda like nothing since WWII {Dwight Taylor, who supplied the story, also notably wrote 'The Thin Man Goes Home (1944),' the only propagandistic movie of the series}. For no apparent reason, every identifiable character even the smugly self-serving Skip McCoy eventually becomes a self-sacrificing patriot, the transformation predictable from the outset. In traditional film noir, the unapologetic criminal always gets his comeuppance, the rational punishment for his sins, but apparently not when they've served their country; patriotism wipes the slate clean.<br /><br />Richard Widmark, an actor who I'm really beginning to like, plays the haughty pickpocket with composure, though always with that hint of ill-ease that suggests he's biting off more than he can chew. The opening scene on the train is the film's finest, as McCoy breathlessly and silently fishes around in his victim's hand bag, recalling Bresson's 'Pickpocket (1959).' Thelma Ritter is terrific as a tired street-woman who'll peddle information to anybody willing to pay for it (though, of course, she draws the line at Commies). Jean Peters is well-cast as the trashy dame passing information to the other side, playing the role almost completely devoid of glamour; Fuller reportedly cast the actress on the observation that she had the slightly bow-legged strut of a prostitute. Nevertheless, Peters must suffer a contrived love affair with Widmark that really brings down the film's attempts at realism. Fascinatingly, upon its release, 'Pickup on South Street' was promptly condemned as Communist propaganda by the FBI, and the Communist Party condemned it for being the exact opposite. Go figure.",1 +3799,"question: how do you steal a scene from the expert of expert scene stealers Walther Mathau in full, furious and brilliant Grumpy Old Man mode? answer: quietly, deadpan, and with perfect timing as George Burns does here.<br /><br />I know nothing of Vaudeville but this remains a favourite film, the two leads are hilarious, the script funny, the direction and pacing very fine. Richard Benjamin is very funny as straight man - trying to get at Burns through the window etc. Even the small parts are great.<br /><br />There are so many funny scenes, Mathau messing up the commercial, Burns repeating his answers as if senile...<br /><br />A delight.<br /><br />Enterrrrrr!",1 +8588,"This was by far the best war documentary ever made. From the very beginning of the first episode when Sir Laurence Olivier described the horrific events in Oradour-Sur-Glane 'The day the soldiers came'. To the final days of the war when the mushroom clouds appeared over Japan, I never missed a second of this classic series and I remember it well even though it was screened way back in 1974. Each and every aspect of this tragedy was covered in detail. This whole series should be compulsory viewing for as many of the world's children as possible so that the tragedy of World War Two is not repeated and that bigotry, hatred, greed and intolerance are not confused with patriotism or religious zeal.",1 +16182,"Oh dear. While Chevy Chase and the gang at SNL set new highs with the sketch show format this fails miserably at every level. Fortunately Chevy is barely in this at all and can't be blamed for this utter tripe. It seriously is very, very bad. While meant to be a political comment on USA at the time of it's release (1974) it still remains neither funny or acutely observed. The sketches are all way too long and any satirical impact they may have had is lost as they're all drawn out to the point of complete boredom. This is credited as Chevy's movie debut and I'm pleased to say that everything he did after this bettered it. Avoid even if curious.",0 +9295,"No one would argue that this 1945 war film was a masterpiece. (How could any 1945 war film be a masterpiece?) And yet this is an extremely effective telling of a true story, that of Al Schmidt, blinded on Guadalcanal, as played by John Garfield, who spent days wearing a blindfold to capture the nuances of a blind person's actions. Robert Leckie, in ""Helmet for My Pillow"",denigrates Schmidt's popularity in favor of his foxhole mate, who was killed, writing that ""the country must have needed live heroes."" <br /><br />Well, I suppose the country did. And they had one here. There is a single combat scene in the movie, bound to the studio lot, lasting only ten minutes or so, and occurring less than halfway through the film instead of being saved for the climax, but it is the scariest and most realistic depiction of men under fire that I can remember having seen on screen, including those in ""Saving Private Ryan"". Men yell with fear, scream at each other and at the enemy, and bleed and die, without the aid of color, stereophonic sound, squibs, or gore.<br /><br />Simply from a technological point of view, the film is outstanding. It isn't just that we learn how complicated a mechanism a .30 caliber, water-cooled Browning machine gun is, or that it must be fired in bursts of only a few rounds, or that it isn't waved around like a fire hose, as in so many other war movies. The technical precision adds to the scene's riveting quality. The need to stick to short bursts is horrifying when dozens of shrieking enemies are pouring across a creek fifty feet away with the sole aim of exterminating you and your two isolated comrades confined to a small gun emplacement. <br /><br />The performances are solid, if not bravura, including those of the ubiquitous 1940s support, John Ridgeley, and a radiant, youthful Eleanor Parker. The framing love story is spare, but it works, and ultimately is quite moving. A striking dream sequence is included. It's not Bunuel, but for a routine 1945 film, it stands out as original and effective. <br /><br />Albert Maltz may have overwritten the script, or it may have been altered by someone else. It could have used the kind of pruning that might have introduced some much needed ambiguity. Still, there are odd verbal punctuations that have a surprising impact on the viewer -- ""Why don't God strike me dead?"" And, ""In the eyes, Lee. Get 'em in the eyes!"" Depths of anguish in a few corny words. And a surprising amount of bitterness expressed by wounded veterans in a 1945 war film. <br /><br />Notes that might seem false to a contemporary viewer but perhaps shouldn't: the dated vernacular which it's difficult to believe many of today's kids could think was actually ever spoken -- ""private gab,"" ""dope"", ""drip,"" ""Gee,"" ""you dumb coot,"" ""dame,"" ""a swell guy,"" and ""feeling sorry for yourself."" Let us consider the historical context and be kind in our judgments. At the time, some of this goofy lingo was at the cutting edge. <br /><br />Real weak points? The wounded veterans get together and argue with each other about how much of a collective future they have and the argument is oversimply resolved with a conclusion along the lines of, ""Just because you have a silver plate in your head doesn't mean people will think you're a bad person."" There are sometimes voice overs and silent prayers that are both unnecessary and downright unimaginative. ""Please, God, let him return to me,"" and that sort of thing. <br /><br />Well, the film makers were operating within the constraints of their times. Maybe that's why the final fade is on a shot of Independence Hall and the inspiring strains of ""America the Beautiful"" swell in the back. <br /><br />None of this can undo the film's virtues, which are considerable, particularly the impact of that horrifying combat scene. It's not on television that often. If you have a chance, by all means catch it.",1 +3922,"Hard to categorize the film - perhaps it's an avant garde spy thriller? Mother Night is a very good Vonnegut novel, and most certainly one of his easiest novels to adapt into a feature length film. The film adaptation is very faithful to the original book. The ""indie"" approach to how this film was produced is probably more effective than having a big Hollywood studio financing it. These days, I doubt an intelligent novel like Mother Night would ever get the green light from the big Hollywood grindhouses. And normally that is too bad, but not in this case. Mother Night has tight direction and a solid cast. Nick Nolte who seems to be getting better roles as he gets older, still has that ""everyman"" persona that allows him to take on a wide range of different characters. Sheryl Lee is beautiful and great as always. I always thought she deserved better than she got out of the entertainment industry. I guess making your debut as a dead girl (Twin Peaks)with little air time isn't the choicest of roles, even if the TV show becomes a minor phenomenon. Anyway this film is totally enjoyable and you don't have to read the book to understand the movie. In fact, given today's geopolitical realities, the novel's premise may appear dated, and some younger viewers with little knowledge of history will be utterly confused by the events unfolding (I am talking to you, fellow Americans who are students and scoring the lowest in the industrialized world in geography, history, and lord knows what other subjects!).",1 +6544,"It's one of the best movies I've seen in the last 2 years (I've seen the premier in Tel-Aviv, Israel in the summer of 2006, exactly when the last war has began...) This problem in communication between the people, that causes wars, is interesting me for a long time, and it doesn't matter who- boys and girls, straight and gays, Jews and Arabs... I've seen the Bubble already 3 times, and it still surprising and exciting me- each character reminds me of one of the many people i know, and the difference between them, like between Tel Aviv and Jerusalem... The last time i saw it- was with my friend, who is a Christian Arab, and it was on the independence day of Israel ( the most symbolic i could ! how ironic) and... he cried in the end!!! - if he's been touched and wasn't embarrassed- everyone would be touched by The Bubble!",1 +13555,"If I had known this movie was filmed in the exasperating and quease-inducing Dogme 95 style, I would never have rented it. Nevertheless, I took a dramamine for the seasickness and gave it a shot. I lasted a very, very, very long forty minutes before giving up. It's just boring, pretentious twaddle.<br /><br />The last French movie I saw was ""Romance"" and it too was pretty dismal, but at least the camera was steady and not breathing down the necks of the characters all the time. I am baffled at the continuing popularity of Dogme 95 overseas -- it'll catch on in America about the same time as the next big outbreak of leprosy. (It's called Dogme 95 because that's the average number of times the actors are poked in the eye by the camera.)<br /><br />",0 +19913,"What ""Noise"" fails to do is get us to understand its character. Tim Robbins plays an obsessive New Yorker who can't deal with the obtrusive noises of the city any longer, particularly car alarms. It's an odd idea for a film, which has about as much creative credibility as ""Death Wish."" It is clever at points; particularly a scene in which our hero is trying to read through Hagel, ""I'm too stupid to be understanding this."" He reads and rereads a paragraph in confusion, we read it and don't get it either.Just then a car alarm goes off. Throughout the movie is constant interference of alarms and city noises. Though, all in all it does little to help us understand our hero, who allows this all to ruin his marriage and gets distracted with side plots instead of digging deeper-into his persona. <br /><br />The film-making itself is too oblivious to notice its own sound problems, shoddy editing, and visible boom mikes. No, ""Noise"" isn't all-bad. William Hurt is at least colorful. At least the ending doesn't fall flat. Overall it drives home a logistical point, one you haven't probably thought of. At least I hadn't. Though all in all, ninety minutes long, it couldn't have ended sooner. The story dragged on and seemed to be lost as soon as it started.<br /><br />This is another one of those movies that you might see at a film festival, but probably won't get picked up for distribution. Check it out on DVD if you're really partial to someone involved in the project. Otherwise skip it.",0 +7395,"The 4th Pokemon movie made me cry when Celebi died. Don't you dare say that Pokemon sucks! I don't like it when people say that.... I've liked Pokemon for 5 or 6 years, so everyone should enjoy Pokemon, including this movie and other Pokemon movies. So, without further ado, please say that Pokemon is great and should be enjoyed by people for all ages. And also, why do Pokemon-haters give low ratings for all or most of the Pokemon movies? I don't understand.... They shouldn't do that.... There's absolutely no reason why people should just vote without proving that Pokemon sucks besides the fact that: 1) Pokemon is for little kids ONLY. 2) Pokemon is stupid. and 3) People shouldn't like Pokemon. I think this is why people don't like Pokemon.",1 +1675,"I'd love to give Kolchak a higher rating but the show quickly went from scary/suspenseful to silly. ABC's fault. They moved the show to Friday nights at 8:00 p.m., then known as the ""family hour"". Never should have been on Fridays in the first place. I was a sophomore in high school and loved the early episodes! It was first up against Police Woman on NBC. ABC had huge problems with Friday nights. Bad season for them overall until Barney Miller, Baretta, and SWAT debuted in January of '75. Kolchak should have been a hit. Darren McGavin begged to get out of his contract to end the show. Too bad the writing wasn't up to Richard Matheson's in the original TV movies. Still, McGavin made Kolchak his own, as actors can do. Jackie Gleason as Ralph Kramden and Caroll O'Connor as Archie Bunker come to mind. That INS set with the manual typewriters and clacking teletypes seems quaint and ancient today, yet that was part of the appeal. They were very lucky to have Simon Oakland reprise ""Vincenzo"" from the TV films.",1 +23797,"I first saw this when it was picked as a suggestion from my TiVo system. I like Danny Elfman and thought it might be interesting. On top of that, I'm a fan of Max Fleischer's work, and this started out with the look and feel of his 30s cartoon. With both of those, I thought it would hold my interest. I was wrong. Just a few minutes in, and I had the fast forward button down. I ran through it in about 15 minutes, and thought that was it.<br /><br />Afterwards, I read some of the other reviews here and figured I didn't give it enough of a chance. I recorded it again and watched it through. There's 75 minutes of my life I'm not getting back.<br /><br />I can't believe there aren't more bad reviews. Personally, I think it's because it's hard to get to the 10 line comment minimum. How many ways are there to say this is a waste of time?<br /><br />The movie comes across as though it was made by a few junior high kids ready to outrage the world and thinking they can with breasts, profanity, and puke jokes. The characters are flat. The parody of ""Swinging the Alphabet"" is lame, essentially cobbling the tune, getting through A - E, hitting the obvious profanity a ""F"", and then having no idea where to go. The trip through the intestines to the expected landing doesn't work the first time, let alone the following ones. <br /><br />Across the board, the entire movie is what you would expect from someone trying to ""out-South Park"" Stone and Parker without the ability to determine what is and isn't funny. This might be amusing if you're high. Otherwise, it's not.",0 +10312,"This is one military drama I like a lot! Tom Berenger playing military assassin Thomas Beckett. This Marine is no-nonsense, in your face, and no questions asked kind of person who gets the job done. There you have Billy Zane(""The Phantom"" and others) who plays Richard Miller, a former SWAT form D.C., works for the government and takes orders only from them. Who needs a bureaucrat? I don't! When these two are paired, sparks should be flying. And how. However, Beckett teaches the young bureaucrat on how it works. When the other sniper hits, it's wits vs. wits, cat vs. mouse, gunman vs. gunman. And when the seasoned sniper is caught, it's up to Miller to put politics aside and save him. Who needs politics when you a pro like Beckett, he took orders from no one but himself, plays by the rules and not the book, and mutual respect is brought out despite the politics. The movie was a direct hit. Watch it. Rating 4 out of 5 stars.",1 +13552,"What were they thinking at ""Cannes""? One of the most irritating, films of all time. Every detail of this film, no matter how meaningless was shown. If I had to watch her put on those boots one more time I think I would have shouted. If the point of this film was to show how pathetic a life Rosetta had, then it was covered within the first fifteen minutes of the movie and then the credits should have been running. But no, we had to see countless redundant scenes over and over. The whole thing was filled with un-likeable and unsympathetic characters. They deserved the misery that was Rosetta. And to think I passed up ""Tumbleweeds"" to see this over-hyped film of boredom. It was like watching grass grow, only that is more exciting.",0 +12623,"This movie was by far the worst movie that I have ever seen in my entire life. I'm not even kidding. It was poorly made and the actors couldn't act. It was a waste of my time and money. It looked like a movie that my friends and I could have put together on our own. The case the movie came in is definitely a disguise. Nothing in the movie looks like the zombie on the front of the case. It appears that the director or make-up artist has just put black eye liner under someones eyes an called them a zombie. The credits at the beginning of the movie take up almost 20 minutes of the movie. Which watching the credits was the best part of the movie. This was honestly an awful movie and I couldn't believe how badly it was put together. Scenes jumped from one thing to the other and sometimes u were like ""whats going on?"" The audio was awful and the action shots looked like a couple of teen's joking around making a fake fight scene.<br /><br />IF you are considering renting or buying this movie I would advise you to at least watch the trailer for it because it show's how awful it truly is. I wish i would have watched it before i rented it.",0 +20571,"Left Behind is an incredible waste of more than 17 million dollars. The acting is weak and uninspiring, the story even weaker. The audience is asked to believe the totally implausible and many times laughable plot line and given nothing in return for their good faith. Not only is the film poorly acted and scripted it is severely lacking in all the technical areas of filmmaking. The production design does nothing to help the credibility of the action. The effects are wholly unoriginal and flat. The lighting and overall continuity are inexcusably awful; even compared to movies with a tenth of the budget. However none of this will matter in that millions of families will no doubt embrace the film for it's wholesomeness and it's religious leanings; and who can blame them. However it is unfortunate that they will be forced to accept 3rd rate amatuer filmmaking.",0 +19707,"One of, if not the worst film to come out of Britain in the 80s. <br /><br />This tawdry tale of a middle aged lecher who 'seduces' two teenage scrubbers who babysit for him and his faux-posh wife has nothing to redeem it.<br /><br />In turns gratuitous, puerile, uncouth and unrealistic, this film plumbs the depths as it fails miserably in its attempts to be funny, provocative, intellectual and controversial. <br /><br />Perhaps the worst thing about this film is the way the strong cast of George Costigan, Michelle Holmes and Siobhan Finneran are completely stitched by such a lame script. It's no surprise that this was the late Andrea Dunbar's only work to make it onto the screen. Complete and utter rubbish on every level.",0 +4229,"I, myself am a kid at heart, meaning I love watching cartoons, still do! I remember watching Bugs Bunny when I was a kid, he was my favourite still is. I thought man, this was a great ""new"" show on TV, and than my dad said, ""Bugs Bunny, I remember watching him when I was younger"" and I'm like, ""Dad, Bugs didn't exist when you were younger"". So I guess he's definitely pleased more than one generation, possibly 3. I love the show it's great for kids and adults, OK, everybody. It's very funny, me and my husband, both in our 20s, love watching the shows, and we don't mind the re-runs either. This show brings back a lot of memories, happy ones. I love the Christmas special too with Tweety as Tiny Tim, it's cute. I can't pick my favourite Looney Toons character, because they've changed over the years. When I was little it was Bugs of course, and Porky Pig. Pepe is cool, I always loved him. Actually, I have to say there all my favourite. I'm giving this show a 10 out of 10, because it's a great show for all ages, very funny, voice acting is incredible, the only flaw is that unfortunately it came to an end, 2 decades ago, but the re-runs are great!",1 +8117,"Super Speedway makes a great demo of your new DVD / bigscreen / 5.1 channel sound system. The IMAX camera puts you right in the race car, where you cruise around various tracks at high speed, reminiscent of the driving sequences in Grand Prix (if only that would appear on DVD!). I enjoy watching it again and again.<br /><br />The only minus, and why I didn't give it a 10, is some of the driving sequences look suspiciously like the film was speeded up. The soundtrack also requires a little suspension of disbelief - all you can hear in a real car is the engine. You won't hear swooshes as you go under bridges.",1 +7277,"This movie is incredible. If you have the chance, watch it. Although, a warning, you'll cry your eyes out. I do, every time I see it, and I own it and have watched it many times. The performances are outstanding. It deals with darkness and pain and loss, but there is hope. This movie made me look at the world differently: vicarious experience, according to my English teacher. Also, if you've seen it, note the interesting use of shadows and light. Home room is a phenomenal movie, and I rate it 10/10 - for real - because of the excellent acting, amazing plot, and heart-wrenching dialogue. Very tense, very moving. Doesn't give all the answers, but makes many good points about humankind",1 +15050,"A really very bad movie, with a very few good moments or qualities.<br /><br />It starts off with pregnant Linda Blair, who runs down a hallways to flee what might be monsters or people with pitchforks, I'm not sure. She jumps through a window and wakes up, and we see she is very pregnant. The degree to which she is pregnant varies widely throughout the movie.<br /><br />She and an annoying and possibly retarded little boy who I thought was her son travel to an abandoned hotel on an island. Italian horror directors find the most irritating little boys to put in their movies! On the island already are David Hasselhoff and his German-speaking virgin girlfriend (you know how Germans are said to love Hasselhoff...). He's taking photographs, and she's translating an esoteric German book about witches, I think.<br /><br />Also traveling to the island are an older couple who have purchased it, and a real estate agent, and a woman I thought was their daughter. Evidently she was an architect, and Linda Blair and the boy are the older couple's children. I guess they all traveled to the island together, but it really seemed like Linda and the boy were apart from the rest of them (maybe they were filmed separately).<br /><br />The hotel seems neat, certainly from the exteriors, but it isn't used to any great effect. An old woman in bad makeup and a black cloak keeps appearing to the boy and chants something in German sometimes, which he eventually records on his Sesame Street tape recorder.<br /><br />People start getting killed, either in their dreams, or sucked into hell or something. Some of these gore scenes are OK, but not enough to recommend the movie. Though the copy I watched stated it is uncut on the box cover, the death of one character whose veins explode really seems to have been cut. Much of the scene is showing another character's reaction shots, since we're not seeing anything ourselves. The creepiest scene is one in which a man or demon with a really messy-looking wound of a mouth rapes someone. He looked particularly nasty. There's a laughably and painfully bad scene in which Linda Blair is possessed. I wish if a horror movie is going to cast her, they would do something original with her role, and let her leave Exorcist behind her (except for the yearly horror conventions).<br /><br />In the weird, largely Italian, tradition of claiming to be a sequel to something it is unrelated to, this is also AKA La Casa 4 and Ghosthouse 2. That is, it is supposedly a sequel to Casa 3 - Ghosthouse, La (1988) - it's not (that's also a better movie than this one). La Casa 1 and two were The Evil Dead (1981) and Evil Dead II (1987) - again unrelated to Witchery and La Casa 3 (and much better than those). There's also a Casa 5, La (1990) AKA House 5, which seems to want to be a sequel to the fake La Casa series and the series House: House (1986) House II: The Second Story (1987), The Horror Show (1989) AKA House III, and House IV (1992). How's The Horror Show fit in there? It doesn't really, it claimed to be a sequel, thus requiring the real series entry to renumber itself to cause less (or more?) confusion. Oddly, The Horror Show is also AKA Horror House, and La Casa 5 is also AKA Horror House 2. Does your head hurt yet?",0 +14717,"this movie has lot of downsides and thats all i could see. it is painfully long and awfully directed. i could see whole audience getting impatient and waiting for it to end. run time is way over 3 hrs which could have been edited to less then 2 hrs.<br /><br />transition between stories is average. most people confessed being on seating expecting something better to come out.<br /><br />its funny only in pockets. ambitious project and a below par execution. govinda does a fair job, anil kapoor disappointed me, rest we as expected. if u r expecting anything close to babel or love actually then its no where close.",0 +7567,"Ok, needless to say, this film is only going to appeal to a certain audience; namely stoners and like-minded people.<br /><br />That being said, if you are one of these aformentioned people, this film is a MUST. In fact, I think it should be mandatory for head shops to sell a copy of it to anyone purchasing their first bong. What Monty Python's Holy Grail is to geeks and nerds, so is this movie to potheads. I first saw this film 10 years ago or so, and I still crack up every time I watch it. The jokes perfectly lampoon the pothead lifestyle, far better than latter day knockoffs like Half-Baked attempt to.<br /><br />There isn't a plot, so to speak; the film is more of a collection of various skits; as the films protagonists wander around Los Angeles in their legendary haze. Despite this, the film has an excellent sense of pace, and doesn't drag at all. Many people cite Up In Smoke as C&C's best work, but I would have to say that Next Movie is superior.<br /><br />So if you're in the mood for an hour and half of belly laughs, light up, tune in, and let your mind float away =)<br /><br />Oh, and FREE TOMMY CHONG!",1 +20502,"How has this piece of crap stayed on TV this long? It's terrible. It makes me want to shoot someone. It's so fake that it is actually worse than a 1940s sci-fi movie. I'd rather have a stroke than watch this nonsense. I remember watching it when it first came out. I thought, hey this could be interesting, then I found out how absolutely, insanely, ridiculously stupid it really was. It was so bad that I actually took out my pocket knife and stuck my hand to the table.<br /><br />Please people, stop watching this and all other reality shows, they're the trash that is jamming the networks and canceling quality programming that requires some thought to create.",0 +9093,"James Stewart stars in a classic western tale of revenge which ties in with the fate of the films other star the Winchester Rifle. Stewart is it goes without saying excellent adding some cold hard obsession to his usual laid back cowboy. The story follows the fate of a Winchester rifle and its owners after being won in a competition by our hero and stolen by the man he is hunting.<br /><br />We meet a selection of gamblers, gun fighters, Indian traders and bank robers as we follow the rifles path through Indian battles, bank heists etc. The supporting cast are all solid with Dan Durya standing out as Waco Johnny Dean the live-wire gunfighter with an itchy trigger finger. Also as a trivia note a very early appearance from Rock Hudson as an Indian chief.<br /><br />The end showdown is a classic a tense rifle battle fought at long range in and around a rocky outcrop. Throw in some good old western action, fist fights, shootouts and horseback chases it makes for a rollicking western adventure. 8/10",1 +16325,"A demented scientist girlfriend is decapitated so he brings her head back to life. Honest this is the plot of the movie. He try's to get her another body he searches through the sleaze area of town for that perfect body. For some reason he has ugly looking monster in a closet at his cabin. The sleaze style of the movie is laughable. No one in the movie can actually act including the head. The closet monster is a man with a mask tie on and you can really tell. The plot is slow, weak and the ending is so badly done. Watch the Mystery Science Theater 3000 version of this move. Believe me folks I wouldn't watch this movie on its own.",0 +3473,"Arthur Bach is decidedly unhappy in his life as a multi-millionaire and is attracted to people 'below him' in social standing - he pays for a hooker in the opening scenes and then is enormously attracted to a shoplifter.<br /><br />He drinks quite a lot too, and sometimes he is driving while drinking, too, which of course is not funny, ever. <br /><br />The movie is great but behind the comedy is some reality, too. John Gielgud wipes the floor with everyone else on screen and created a character for the ages. Talk about deserving an Oscar. Moore and Minnelli have their moments, but its Gielgud as ""Hobson"" you'll remember the most.",1 +7997,"Hello again, I have to comment on this wonderful, exciting, and believable tale of romance and intrigue. The music in wonderful and memorable. Very good colorful movie. Another movie I liked as well later on was High Society with Bing Crosby. Wonderful music. Thanks for listening, Florence Forrester-Stockton, Reno, Nevada",1 +12147,"This movie brought tears to my eyes; John Roberts really knew how to get to viewers' hearts, directing this wonderful picture where life is viewed through the mind and heart of Paulie. We discover from time to time, with the help of sensitive and talented directors like John, that even small creatures like Paulie have a heart. I just couldn't stop my tears, even though the film has a happy end. This is great, after thousands of films I saw through my life, ""Paulie"" really touched me deeply. This is, after the ""Ugly Duckling"", the second picture that really turned me upside down.",1 +5354,"Turned out to be a classy production with what must have been a low budget. The variety of characters is amazing, from axe-wielding dwarfs to 7ft ghouls! I enjoyed the relationship between the leads, not overly sentimental but romantic enough to keep the interest going. I also enjoyed the mix of humour (which can be very easy to get wrong, too much/not enough) which meant it didn't get too dark, nor too spoofy. It was a great step up from Eaves' other efforts, Hellbreeder and Sanitarium, in terms of storyline and production. They have a great website which is worth checking out. Can't wait for Bane, if the level of improvement continues, it should be fantastic.",1 +6602,"Johnny Dangerously falls completely in the hit or miss category with it's overblown gags and complete lack of a comprehensive script or story that makes ANY sense. But that's the point, right?<br /><br />The cast is likable; Michael Keaton an excellent comic performer before he took himself too seriously as the years passed. Griffin Dunne, Peter Boyle, Joe Piscopo, Marilu Henner and Danny DeVito all perform with enthusiasm and at least get a lot of laughs from me. But the complete scene stealer here is Richard Dimitri (sneaking the word ""Iceholes"" into movie history) as a mobster who fares best at murdering the English language.<br /><br />I associate many childhood memories with this film, as I watched it quite often so maybe I'm prone to enjoy it more than many others. Johnny Dangerously is at least a completely innocent gangster film spoof that even relays some well meaning messages about the dangers of smoking (and sex).<br /><br />I like it but it's hard to recommend.<br /><br />7 out of 10.",1 +10908,"This is just as good as the original 101 if not better. Of course, Cruella steals the show with her outrageous behaviour and outfits, and the movie was probably made because the public wanted to see more of Cruella. We see a lot more of her this time round. I also like Ioan Gruffudd as Kevin, the rather bumbling male lead. To use Paris as the climax of the movie was a clever idea. The movie is well worth watching whatever your age, provided you like animals.",1 +13243,"I saw ""Paris Je T'Aime"" because a friend really wanted to see it so I went along with him. Going in, I was indifferent about the film but leaving the theater I really regretted wasting 2 hours of my life sitting through this tepid production. The ""stories"" are almost completely forgettable except for the fact that most of them were awful. What do Gena Rowlands and Ben Gazzara have to do with Paris? The endless parade of American actors most definitely gave this French film a remarkably non-French feel. The clichés about Paris were endless. Yes, most of them were playing with clichés about Paris but by spending so much time making fun of French clichés, they directly and regrettably promoted them once more. Yes, Paris is the city of love. We get it.<br /><br />The worst segments were: the one directed by Wes Craven (Oscar Wilde); the one with Nick Nolte; the mime one (the worst?); the hair products one; the one with Juliette Binoche (Willem Dafoe as a cowboy in the middle of Paris?); the vampire one (When I think of Paris I think of Elijah Wood). The one with Natalie Portman, which really looked like a Mentos commercial and it was stupid (the blind young man should know Portman was just playing a part when she called him). On and on it went. It felt endless.<br /><br />I didn't like the Coen Bros one as well. It really plays with those Parisien clichés but I didn't find it funny. Just annoying. The Gus Van Sant one was interesting but it was so slight (and the punchline was obvious) that it barely registered.<br /><br />There were only two ""successful"" segments and they were the one about the immigrant nanny who leaves her baby at a kindergarten only to babysit a baby for a rich woman. Nice irony there. And the segment about the African who is stabbed. It's the best segment in the whole film but this segment has nothing to do with Paris. The story could have taken place in any city around the world.<br /><br />The last segment, the one with the chubby middle aged woman was sorta interesting too but the underlying tone was bad. They wanted to celebrate her limited grasp of French but the segment came off as being condescending.<br /><br />The whole project felt forced and uninspired. Almost like the French government sponsored this film to promote tourism. All in all, with only about 10 to 15 minutes of interesting stuff, ""Paris Je T'Aime"" was an awful cinematic experience.",0 +22968,"A cannibalistic backwoods killer is on the prowl and two bickering couples might be his next source of protein in this bargain basement Friday the 13th-clone cheapie. There s literally nothing of interest to see in this one, the killings are surprisingly sparse and when they do happen, completely amateurish. It also adds ghosts into the mix for no reason what so ever. I felt drained after watching it as if my brain was liquefying and draining out my nose. And it remains without a doubt Donald Jones' worst movie. If you're thinking of renting it because of Code Red's snazzy new DVD re-release Don't bother<br /><br />My Grade: F",0 +13196,"I notice that most of the people who think this film speaks the truth were either not born before the moon landings (1969-1972), or not old enough to appreciate them. I think it is much easier to question an historic event if you did not live through it.<br /><br />I was a youngster at the time of Apollo, but I was old enough to understand what was going on. The entire world followed the moon landings. Our families gathered around the TV to watch the launch. Newspaper headlines screamed the latest goings-on each day, from launch to landing, from moonwalks to moon liftoff, all the way to splashdown, in a multitude of languages. In school, some classes were cancelled so we could watch the main events on TV. During Apollo 13 the world prayed and held its collective breath as the men limped home to an uncertain fate. You couldn't go anywhere without someone asking what the latest was. The world was truly one community. <br /><br />Now with a buffer of 30-odd years after the fact, it is easy to claim fraud because worldwide enthusiasm and interest has died down. We are left with our history books, and anybody can claim that history is wrong and attempt to ""prove"" it with a bunch of lies and made-up facts while completely ignoring the preponderance of evidence showing otherwise--not to mention the proof that dwells in the souls and memories of those who lived through these wonderfully heady and fantastic days.",0 +7071,"While Urban Cowboy did not ooze with the same testosterone you might find at a rodeo, it did provide an accurate glimpse of that day and age, in urban Texas. I also think that to truly critique this movie, one would have to have lived in the time and relative place that it was made. There was good music, fun times and, yes, a few ""rough and tumbles"" at the honky tonk roadhouses. The relationship of Bud and Sissy, like ""two ships passing in the night"", was well conceived. When Pam tore up the note that Sissy had written to Bud, it echoed the tragedy of many true life romances. The entire story was well thought out. I thought the cast and crew did an excellent job. I thought the screen play was well written and directed. Scott Glenn should have received an Oscar for best supporting actor.",1 +12678,"A typical Lanza flick that had limited audience appeal with a weak story line that was put together simply to justify Lanza's MGM contract at the time.<br /><br />As reported by member Lastliberal (above) Grayson could not stand Lanza because of his obscene advances towards her off (and sometimes on) camera. In addition, his gutter mannerism and the continual smell of alcohol in her face during scenes they did together were intolerable. After doing their second (and last) film together, ""Toast of New Orleans"", the normally quiet Grayson stormed into Louie B. Mayer's office and told him in no uncertain words that she would never work with Lanza again period. Mayer felt that Grayson was much more valuable to MGM then Lanza, so Grayson's statement stuck. Grayson went on to star in a number of widely received (and far more profitable) musicals with Howard Keel and others. Later in life when asked to compare Lanza and Keel her reply was that there was no comparison between them, and that Keel was great to work with and had much more appeal to the ""real people"" in the audiences.",0 +3690,"For those of us Baby Boomers who arrived too late on the scene to appreciate James Dean et. al., Martin Sheen showed us The Way in this great feature.<br /><br />The premise is easy enough: cool hood meets small town sheriff and All-Hell ensues, but the nuts and bolts of this movie enthrall the car nut in all of us. <br /><br />No, this isn't Casablanca, nor is it great Literature, but it IS a serious movie about cars, rebellion, and the genius that is Martin Sheen.<br /><br />Enjoy this and appreciate it for what it is, and for what Martin will become. I loved this movie growing up as a teen in the 70's, and you will too.",1 +22886,"This was a great book and the possibilities for a truly great film were definitely there. But the casting decisions completely wrecked the movie. Hanks is a great actor to be sure, but lacks the smarmy, morally ambivalent characteristics needed for the lead role. Jeff Daniels would have been my choice.<br /><br />Putting Melanie Griffiths in, for eye candy reasons, is understandable, but again, she did not portray the depth or ambivalence, so need to pull this off.<br /><br />This movie is a great example of how every decision, even those early on in the movie production can make or break a file.",0 +18246,"Predictable parody, just about failed to impress throughout it's looooooong eight minutes. The only thing that made it worthwhile was the DO NOT COLORIZE line at the end credits. Shame something more entertaining wasn't put on the DVD, like Jonathan Ross' enjoyable profile of Romero on 'The Incredible Strange Film Show.'",0 +24194,"This is a truly wretched little film. Admittedly the original (un)holy trinity was governed by the law of diminishing returns with the third, ""The Final Conflict"" degenerating into a ridiculous sub-plot about half-way through the film apparently merely to provide the requisite needlessly convoluted deaths that had by now become the whole raison d'etre for the ""Omen"" series. But then to foist this jumped-up TV movie (beware purchasers of the Omen box set on DVD - don't be fooled by the widescreen ratio of the transfer, this was and is strictly small-screen stuff) on the back of a series of generally fine demonic chillers was unforgivable, particularly, endorsed as it was, by the exec.producer and producer of the first three movies Mace Neufeld and Harvey Bernhard. I'd give-away the plot if there was any, besides the usual death scenes (hopelessly toned down for TV sensibilities) and some of the worst acting I've seen. All involved in this project down to the catering people should be ashamed this travesty ever made it to the screen, let alone masquerading under the Omen name. If one person is convinced by my review to avoid this mess, I'll feel better for it.",0 +21010,"Chilly, alienating adaptation of Rebecca West's book about an Army Captain returning from duty in WWII with his memory impaired (now there's an original idea!). It seems he remembers old flame Glenda Jackson but not current wife Julie Christie, which should be enough to set off some emotional sparks. This extremely well-cast soaper brings together leading man Alan Bates with director Alan Bridges and co-stars Jackson, Christie, Ann-Margret, and Ian Holm, but the burners are all on low. There are a handful of good scenes (particularly whenever Jackson is on-screen), but Bridges' pacing is unrelievedly sluggish and the film's dulled-out color is enervating. Long on the shelf, this ""Soldier"" is best left forgotten. *1/2 from ****",0 +17821,"As other reviewers have noted the film dies in the last 1/2 hour. However before that it suffers from predictability and a stunningly vapid performance by Kate Capshaw, who clearly never found her character and ruins every scene she's in. Connery is fine as is Fishbourne, but most scenes are manipulated for effect rather than truth which overlays the entirety with a sense of unreality. And the ending is simply bizarre. The film makers apparently knew when they pieced this mess together that all they needed were sweet potatoes and pumpkin pie to have Thanksgiving dinner, so to compensate they added an overloud ""dramatic"" score. Every little jump is accompanied by a crescendo of orchestration, to the point where it becomes laughable. If you want an example of major league bad film this is one to see, otherwise skip it.",0 +10735,"Those engaging the movie camera so early in the century must have figured out some of its potential very early on. This is a good story of a playboy type who needs money and inadvertently sells his soul to Satan for a lot of money. Unfortunately, the soul is his double and he must confront him frequently, tearing his life apart. There are some wonderful scenes with people fading out and, of course, the scenes when the two are on the stage at the same time. The middle part is a bit dull, but the Faustian story is always in the minds of the viewer. One thing I have to mention is the general unattractiveness of the people in the movie. Also, they pretty much shied away from much action which would have at least given some life to the thing. I first was made aware of this movie about 25 years ago and have finally been able to see it. I was not disappointed.",1 +21101,"I wasn't entirely sure what to expect from a Comedy, Drama, Fantasy, Sci-Fi genre, but, given the actors involved I thought I'd give it a spin. The tone of the film felt awkward, going through patches of each of the genres but never quite felt balanced, so eventually I gave up trying, and concentrated on the cinematography and individual performances, which I thought were good on the whole, considering each character had little depth because of the nature of the story (won't give anything away here). I have to say it felt a LOT longer than its 96 minute runtime, and not in a good way. In the end I was looking for closure, some measure of satisfaction but it didn't turn out to be the clever or ingenious piece I had hoped it would be. I think Tony mistakenly thought what he did do at the end of the film gave us that... but it was a tragic mistake to try and validate the previous 95 minutes with the ill-conceived conclusion. Ultimately I feel cheated. IMO it would have been better to let it stand without the ""ending"" as a piece of Art... just. Or... I may have missed the point completely :)",0 +7223,"well ""Wayne's World"" is long gone and the years since then have been hard for snl off-shoot movies. from such cinematic offal as ""It's Pat"" to the recent 80 minute yawn, ""A Night at the Roxbury,"" many have, no doubt, lost faith that any other snl skit will ever make a successful transition to the silver screen. well fear not because Tim Meadows comes through in spades. the well-written plot maintains audience interest until the very end and while it remains true to the Leon Phelps character introduced in the five minute skit, the storyline allows the character to develop. the humor (consisting largely of sex jokes) is fresh and interesting and made me laugh harder than i have in any movie in recent memory. its a just great time if you don't feel like taking yourself too seriously. Tiffany-Amber Thiessen of ""Saved by the Bell"" fame, makes an appearance in the film and looks incredible. finally Billy Dee Williams, reliving his Colt 45 days, gives the movie a touch of class. and for those out there who are mindless movie quoters like myself, you will find this movie to be eminently quotable, ""ooh, it's a lady!""",1 +7168,"The Human Tornado is a campy 70's Blaxploitation movie starring nightclub comedian Rudy Ray Moore in perhaps his most endearing role to date. The movie tells the tale of Dolemite, a bad ass pimpin' hustler who gets on the wrong side of a white, racist sheriff by sleeping with his wife. Dolemite barely escapes, and journeys to sunny California to visit an old friend, a nightclub owner (and Madam to Dolemite's 'ladies') named Queen Bee. However, it seems that a rival nightclub owner with Mob connections is trying to muscle in on her racket, so Dolemite takes matters into his own hands. Rudy Ray Moore showcases many diverse talents in this landmark film, including strong dramatic skills, a mastery of Kung Fu, an impressive singing voice (he provides two of the songs on the soundtrack), a touching, compassionate side with the ladies, and an overall compelling charisma and keen sense of comic timing. This film has it all, people: A deep plot, blistering action, laugh-a-minute comedy, beautiful women in distress, a slam-bang ending...what more could you ask from a movie? Run, don't walk, to your local video store and rent The Human Tornado today. And be sure to share it with your family.",1 +14004,"I, also having endured hundreds of children's movies in the past, consider this to be one of the worst I have ever seen.<br /><br />1) I resent in this day and age having to explain to my children that Russia is not ""the bad guys"". Also, that mocking Russian names like ""Poopchev"" is inappropriate.<br /><br />2) The grandfather fly's birthday party scene contained a quasi-sexist joke in which he implied that males drink beer and women talk on the phone. Two other flies also needlessly use the word ""crap"" twice.<br /><br />3) The whole movie largely smacks of 1950's stereotypes and propaganda that I thought we, as a nation, were proud to have risen above.<br /><br />In all it's just crude, badly animated, even more badly written and not worth wasting the time to view.",0 +20655,"Originally called The Changer. The Nostril Picker is a poorly constructed tale about a loner named Joe Bukowski (Carl Zschering) who ""likes em young"". Unable to socially interact with girls he bumps into a tramp who teaches him a special Vietnamese chant. This ""chant"" involves whistling 'London Bridge is Falling Down' whilst hopping around like an epileptic morris dancer. Nonetheless, Ugly Joe tries it out and hey presto! He is now a girl. Ideally he needs to be a young guy in order attract girls. But lets not talk about ideals here - this film was made in 1983 and released in 1993, in an ideal world it should have NEVER been released.<br /><br />The Film Asylum dubbed this horror hokum as ""mind numbing, ham handed story telling"". Its worse than that. The Nostril Picker really takes the biscuit, in fact the whole god-damn cookie jar. Terribly scripted dialogue delivered by brain-dead actors, a ridiculous plot and a predictable twist. Just when things couldn't get any more absurd the story goes off on its own nonsensical tangent. For instance, Joe decides to kill the girls by changing back into himself. But i thought he wanted to get close to them? Not content with being a murderer Joe also turns into a cannibal and eats some of his victims, of which there were only around 3-4.<br /><br />The highlight of this terrible movie involves Joe picking up a hooker (Steven Andrews) then taking ""her"" back to his apartment. What happens next defies belief... Joe turns back into a man, but also discovers the hooker is a man. How does he react? Well, in a Benny Hill-esquire fashion, he chases ""her"" around the apartment with a bunch of squirty dildo's only to trip up on a blow up doll. God knows what Patrick J Matthews and Stephen Hodge were thinking of. At least this scene paved the way for another priceless moment. This involved the male hooker reporting the incident to a curly haired police officer with a 2-bit joke shop 'cop' uniform. The hilarious acting is a must see. Especially the hooker's inability at saying ""dildo"" and his demand for ""satisfaction"".<br /><br />Apart from the above mentioned incident this monotonous slash flick was a complete bore. You know a movie's bad when the DVD trailers were more exciting. Normally, i'd fast forward to the good bits, only there weren't any here. The main action sequences involved Joe simply stabbing his victims repeatedly. Forget quick cuts, Matthews utilizes fadeouts (one during a stab scene) to limit any form of suspense there might already be. One girl's non-reaction to her fingers being chopped off is laughable. Normally i'd relish the words ""uncut"" but in this case they were far from a blessing. Just more agonizing cinematic torture. The whole movie felt like an unedited episode of Midsummer Murders, only less entertaining. I'd hate to see the cut version.<br /><br />To sum up, The Nostril picker is the most unentertaining thing i've seen since Richard Hammond's 5 O' Clock Show. Dismal performances made worse by a terribly tinny soundtrack and bad dubbing. Don't be fooled by the box label, this is NOT a cult classic unless it qualifies for the lets-use-shitty-horror-dvds-for-coffee-coasters cult. Which i think it does. Unless re-edited to 30 minutes stay away from this coma inducing mess.",0 +15843,"I watched Cabin by the Lake this afternoon on USA. Considering this movie was made for TV is was interesting enough to watch the sequel. So, I tune in for the airing this evening and was extremely disappointed. I knew I wouldn't like the movie, but I was not expecting to be perplexed by the use of DV (digital video). The movie would have been tolerable if it wasn't for these juxtaposed digital shots that seemed to come from nowhere. I expected the plot line to be tied in with these shots, but there seemed to be no logical explanation. (WARNING: THE FOLLOWING MAYBE A SPOILER!!!!) The open ending in Cabin by the Lake was acceptable, but the open ending on the sequel is ridiculous. I can only foresee Return of Return to The Cabin by the Lake being watch able is if the movie was shown up against nothing, but infomercials at 4 o'clock in the morning.",0 +14582,"Mmm, doesn't a big stack of pancakes sound good? Maple syrup and fruit preserves on top. Take a bite. Mmmmmmm. Take another bite. Another. Another. EAT. EAT it, you!!! Keep shoveling it down your throat until your face turns green with nausea. You have just had the Ally McBeal experience.<br /><br />I stumbled on this show in the winter of '98 and was instantly hooked. Like that stack of pancakes, I gorged myself on it. But the enjoyment soon wore off, because the Ally McBeal character (whom we see to be cute & endearing at first sight) soon becomes the most annoying, insecure, whining complainer you've ever met. (Call me a feminist, but I prefer my female leads to have a spine.) The gags & gimmicks of the show also become hackneyed, the music of Vonda Shepherd (which is really shoved in your face) becomes grating, and the incessant character changes & rewrites make the show into a damn soap opera.<br /><br />My advice to you is to take this show in small doses, and quit as soon as it becomes bothersome (and it will). I made it through 2.5 seasons before my enjoyment had totally soured. It was good while it lasted, but like a crazy, neurotic ex-girlfriend it just turned ugly after it had overstayed its welcome.<br /><br />And next time you go to IHOP, skip the pancakes. Order something healthy like the fruit cup. It'll sit with you much better.",0 +10455,"Brian Yuzna is often frowned upon as a director for his trashy gore-fests, but the truth is that his films actually aren't bad at all. The Re-Animator sequels aren't as great as the original, but are still worthy as far as horror sequels are concerned. Return of the Living Dead 3 is the best of the series; and Society isn't a world away from being a surrealist horror masterpiece. This thriller certainly isn't a masterpiece; but it shows Yuzna's eye for horror excellently, and the plot moves in a way that is always thrilling and engaging. I'm really surprised that a horror movie about dentistry didn't turn up until 1996, as going to the dentist is almost a primal fear - it's running away from a tiger for the modern world. Dentistry doesn't frighten me, but surprisingly; I would appear to be in the minority. The plot follows perfectionist dentist Dr Feinstone. He has a nice house, a successful career and a beautiful wife - pretty much everything most people want. However, his life takes a turn for the worse when he discovers his wife's affair with the pool cleaner. And his life isn't the only one; as it's his patients who feel the full brunt of his anger...<br /><br />When it comes to scaring the audience, this movie really makes itself. However, credit has to go to the director for extracting the full quota of scares from the central theme. The fact that he does a good job is summed up by the fact that I'm not squeamish about going to the dentist - yet one particular scene actually made me cover my eyes! The film follows the standard man going insane plot outline, only with The Dentist you always get the impression that there's more to the film than what we're seeing. It isn't very often that a gore film can impress on a substance level - and while this won't be winning any awards, the parody on the upper class is nicely tied into the plot. The acting, while B-class, is actually quite impressive; with Corbin Bernsen taking the lead role and doing a good job of convincing the audience that he really is a man on the edge. I should thank Brian Yuzna for casting Ken Foree in the movie. The Dawn of the Dead star doesn't get enough work, and I really love seeing him in films. The rest of the cast doesn't massively impress, but all do their jobs well enough. Overall, The Dentist offers a refreshing change for nineties slasher movies. The gore scenes are sure to please horror fans, and I don't hesitate to recommend this film.",1 +10349,"Maybe it's because I looked up the history of the Irish troubles in the 1920s and then the sad Civil War that engulfed the Free State after the signing of the treaty before watching this movie. Anyway, the sudden turn at the end brought tears to my eyes.<br /><br />Victor McLaglen isn't as famous today as he was back then, and he should be better remembered. In this film, I think he's playing himself as he would have been without his innate talent and brains. For example, the scenes where his buddy in the crowd is challenging men to fight with him is probably quite reminiscent of what McLaglen actually did in earlier years, when he was a world-class bare-knuckles boxer. John Ford is partly responsible for that; the IMDb trivia section shows how he tricked McLaglen into getting a really bad hangover for the trial scene. This director also could bring out a lot in his actors, even without such tricks. Mostly, though, McLaglen is firmly in control, especially when his character is almost totally blotto (which is difficult for an actor to do believably), and he also plays Gypo Nolan with a depth and emotional power that is surprising for someone who has only seen McLaglen later in his career, in ""The Quiet Man."" I especially like the contrast between this role as an IRA man and the much more obviously controlled performance he gave as the IRA man Denis Hogan in ""Hangman's House."" <br /><br />In ""The Quiet Man,"" of course, McLaglen is a country squire at odds with the local IRA. Victor McLaglen was big and bully, in the old-fashioned sense of the word, but he was a good actor, too, and capable of wide range and fine nuances of performance that we just wouldn't expect of a such a man today. It's a rather sad comment on our own set of expectations and prejudices.<br /><br />Ford, as usual, packs a lot into a little bit of film. All the characters are excellent (though the Commandant's mostly American accent is distracting) -- NOTE: There be spoilers ahead! -- Knowing that Gypo once drew the short straw and was ordered to kill a man but let him talk his way out of it instead, we really empathize with the man who draws the short straw for executing Gypo, and the humanity he shows, most notably when they go to take Gypo in Mary's room. <br /><br />John Ford really shows his genius here, taking what could have been a gruesome and yet expected outcome to the whole story and instead using it to set up a totally unexpected and yet very satisfying ending that makes us think not just of Gypo and the other characters, but of poor Ireland during that tortured time.",1 +21158,"The 1990's begun to have day time talk shows sprout up left and right. Every network had one, and they all lacked one thing Originality. Ricky Lake was just another show to entertain the obese trailer park mother with a Marlboro cigarette hanging out of her mouth while breast feeding one of her dozens of toothless, illiterate children. The English language and other cornerstones of mankind where ruined by this shows existence. Titltes ranging from Girl you a Pigeon Head and so on. How could anyone want to watch this pure and utter garbage? Has our society really became nothing more than a bunch of hill billy's and dead beat fathers? The people who appear on this show were Trash. The people who watched this show were Trash. Anyone that wishes to see this show re aired or put onto DVD is TRASH. People wonder why Americans are becoming huge piles of lard and too fat to even get jobs, its having shows like this tell them Its OK to be 500lbs overweight, and have 12 year old girls act like prostitutes. Having such trash on TV has ruined morals.",0 +12286,"Randolph Scott is heading into Albuquerque to take a job with his uncle. However, on the way there, the stage is held up--even though they are not carrying a strongbox. However, a nice lady on board is concealing $10,000 for her and her brother's business...and the robbers seem to know this.<br /><br />Once in town, Scott goes to this uncle about the job. However, he soon learns that this uncle is a jerk--the typical bad guy from Westerns. You know, the rich guy who only wants to become richer by cheating and stealing and threatening until he owns everything. And, it just so happens that this jerk was behind the robbery. Scott demands that the uncle returns the money and then Scott goes into business with the nice lady and her brother.<br /><br />Not surprisingly, this is NOT the end of the problems---just the beginning. Again and again, intrigues of various types occur to try to crush the uncle's opposition. One trick is to bring in a pretty lady to befriend Scott and his partners. She's a crack shot and it looks bad for Scott--until he figures out why she's come to town.<br /><br />Unlike most later Randolph Scott films, this one shows Scott as a bit more headstrong man. All too often in his films he's the last one to suggest violence, but in this film he's quick to suggest a lynching (screw the law, let's have a hangin') and later he's quick to threaten the uncle. What a surprise to see him as such a hot-head--though in most other ways, he's the same old Scott you'd expect.<br /><br />As far as the film goes, there's nothing particularly unusual about it. Gabby Hayes plays the usual character, Scott is a hero, the baddie cannot be reasoned with and ultimately is destroyed and Scott gets the girl. Despite this very typical plot, it's all handled very well and as a result is well worth your time.<br /><br />By the way, there are two weird scenes in the film. First, late in the movie, there is a fist fight between Scott and the uncle's #1 henchman, Lon Chaney, Jr.. In it, Chaney smokes as he fights--something I never saw before and I did admire how he could puff away as he got his butt kicked. Second, get a load of that runaway cart scene with the whip--now THAT was one impossible feat!",1 +17094,"Horrible, Horrible, Horrible do not waste your money to rent this movie. Its like a low budget made for TV Canadian movie. Absolutely the worst movie I have ever seen and there have been many others out there. This movie is not worth the time it takes to put it in the DVD player or VCR. :~( . Is it possible to write ten lines? The acting was horrific. It had absolutely no flow. I saw the made for TV movie on the BTK killer and it was much better(in comparison to this one). I am not sure what they were going for in producing this film but if it was to educate us or tell a story about the BTK killer they missed by a mile. It appeared to be more of a infomercial for animal rights.",0 +3211,"""Heartland"" is a wonderful depiction of what it was really like to live on the frontier. The hard work and individual strength that were needed to survive the hardships of the climate and the lack of medical care are blended with the camaraderie and the interdependence of the settlers. The drama was especially meaningful because the story is based on the diaries of real people whose descendants still live there. It was also nice to see the west inhabited by real people. No one was glamorous or looked as if they had just spent a session with the makeup or costume department. Conchatta Ferrell is just wonderful. She is an example of the strong, persevering people who came to Wyoming in the early 20th century and let no hardship stand in their way of a new life in a new land.",1 +20991,"I will admit that I did not give this movie much of a chance. I decided pretty early on that this just wasn't my kind of movie.<br /><br />For the most part, it has an excellent look in terms of its cinematography. The scenes of early 70's Manhattan look very good, as does the lead actress. It is a very crisp black and white, which could almost make the movie feel undated and fresh. However, some of the other techniques the filmmakers employ shoot that prospect all to hell. The disjointed editing is VERY late-60's, somewhere between surrealism and new wave. The story also feels like it came from a very specific time, somewhere between free love idealism and artsy experimentation.<br /><br />The film follows a young girl around the city as she looks for a man who she had anonymous phone sex with. As she meets other odd characters, she reveals her quirks and they reveal theirs. The movie seems to be meant as an off-the-wall, irreverent comedy, but adds an avant-garde feel. I would expect that if you like Andy Warhol movies, you would be very excited to discover The Telephone Book.<br /><br />Some problems I had: Near the end of the movie, one character tells a rambling anecdote that lasts over twelve minutes-brutal to sit through. Also, there is a very explicit animation sequence that I found gross and juvenile that serves as the film's climax. I did laugh out loud four or five times, and I liked the ending (minus the flat-out disgusting animation). And when the film switched to color for the final phone-booth-at-night sequence, I actually liked the way it looked even better. It ended up being one of those experiences where I felt like I could have really liked it if it been a little different. But this is what the filmmakers gave us. It is obscure, artsy, and way left of the dial, but none of those are reasons to recommend it on their own. I didn't find it to be unique or creative so much as forced and pretentious.",0 +21560,"The clichéd Polynesian males drink, fight and make a stream of sexist, stupid and unfunny remarks. Real life Polynesians are much funnier than these stereotyped, cardboard characters. The supposedly Samoan girl didn't look or act Samoan at all, seemed more like the stock white female who has sex with anyone on a whim. With weak as water story lines you can't say anything about the acting - even the most brilliant actors could do nothing with this script. It's sad to see Polynesian actors willing to play such sad stereotypes in a film with not one good scene, and only two or three 'jokes'. What a waste of Kiwi taxpayers' money, what a lost opportunity to make a great film about a vibrant community. It's better not to make movies if they're as bad and mindless as this.",0 +970,"<br /><br />I must admit, I was expecting something quite different from my first viewing of 'Cut' last night, though was delighted with the unexpected Australian horror gem. I am a true horror fan as true as they come, and found 'Cut' to not only be the best of the genre Australia has ever produced, but one of the great parody/comedy films of late.<br /><br />My only concern is that mainstream audiences may not pick up on a lot of the comedic elements - the film was not overly clever in it's application but made me laugh at every turn trying to fit in EVERY possible cliche of the horror genre they could. I am certain this was intended as humour....hoping this was intended as humour.<br /><br />And of course, there was the gore.<br /><br />The use of the 'customised' garden shears was brilliance - besides the expected stabs and slashes. In short, there was a huge amount of variety and creativity in the many violent deaths, enough to please even the skeptics of this films worth.<br /><br />The appearance of both Kylie Minogue (short that her appearance was) and Molly Ringwald was just another reason to see the film - both performances were fantastic, as well as Simon Bossell ('The Castle') in a brilliant role as the jokey technician.<br /><br />All in all, I think this movie is one of the best horror products of the last couple or years, as well as a beautiful satire/parody - toungue-in-cheek till the very end.<br /><br />Loved it. Go see it!",1 +2435,"This 1947 film stars and was directed and written by Orson Welles (with a funky Irish accent) and also stars the gorgeous Rita Hayworth with less appealing short blonde hair. So, I've hung out with Orson before in Touch of Evil and Citizen Kane and the Third Man etc. but this was my first Rita Hayworth interaction. Our first meeting went well, she does a superb job playing the frightened/cagey Elsa, married to a crippled millionaire lawyer. Mike (Welles) and Elsa fall for each other. He wants to run away with her, she doesn't know if she can live without the things money can buy. Elsa, her husband, and his partner bicker and bite, just like the sharks Mike describes attacking each other and his foretelling proves just too true. Several twists and turns follow in this murder mystery as we come to the climax in the fun house. (Think the ending shootout in The Man with the Golden Gun, which borrowed heavily from this scene). I wasn't sure who the murderer was until the end.<br /><br />This movie is like shrimp in garlic and lemon. The dish centers on the sea, it is subtle, sour, and pungent, all to great effect. These might not be the best, fresh shrimp, but good quality frozen shrimp from Costco. The flavorful sauce adds to the naturalness of the pink shrimp as you fill up on a healthy, but filling alternative to more mundane, common fare. 7/10 http://blog.myspace.com/locoformovies",1 +13538,"I've never been a huge fan of Mormon films. Being a Mormon, I've always felt that the humor was too exclusive to the LDS community and made us seem like a bunch of obsessive wackos. I was hoping this would be the breath of fresh air, the Halestorm movie I could finally discuss with my non-Mormon friends.<br /><br />Boy, was I wrong.<br /><br />I figured, since this had B-list talent like Clint Howard, Gary Coleman, Andrew Wilson, and Fred Willard (one of my favorites), this would have to be at least a little funny. And besides, church basketball is ripe with potential for plenty of hilarious gags and such. But I must say, throughout the entire movie, it seemed as though no one knew what they were doing. Every joke fell flat, and every opportunity for a genuinely funny gag went ignored. The dialogue was bland, and the film had some of the worst character development I have ever seen. Every single character but Wilson's was less than one-dimensional. It's hard to believe that after nine re-writes the film was still as mind-numbingly stale as the train wreck I witnessed. I can't put into words the rage I felt sitting through this. My friends and I were extras in the final game scene, so we went to the premiere in Washington City, UT. Kurt Hale, the director, was there, and I must say, I avoided all contact with him after the show. He waited at the door, seemingly ready for feedback. I couldn't bring myself to tell him that his film not only ripped away a good hour and a half of my life, but it left a nasty, painful scar that I will never forget.<br /><br />Here are a few specific problems I had: There was a minor love story subplot between the janitor and the chubby piano player, but these two characters came out of nowhere, and were impossible to care about, so my friends and I were left constantly wondering why we were supposed to care about these two lame, uninteresting characters. There were many subplots that popped up every now and then, each promising the audience the chance for laughs, but each one came and went in a puff of smoke, ending before you could even start caring. This was pretty much how the whole movie felt.<br /><br />This film was a major letdown, and I feel bad for everyone who's expecting the first REAL funny Mormon movie. True, the jokes in this one aren't too exclusive to Mormons. Then again, it's hard to tell what was a joke and what was a loud ringing sensation in my ears.<br /><br />Please, do NOT see this movie. Keep in your mind the fantasy that this movie is hilarious. Spare yourself the disappointment I went through",0 +12958,"this film is in the MANDINGO & DRUM type<br /><br />they were both dreadful BUT they are 100% better than this tripe,<br /><br />Badly acted & made Oliver Reed is the main name & Eartha Kitt also is in it. Tis a pity. Rating is 1/2* about as low as yu can get<br /><br />as always<br /><br />jay harris",0 +9534,"In a time of magic, barbarians and demons abound a diabolical tyrant named Nekhron and his mother Queen Juliane who lives in the realm of ice and wants to conquer the region of fire ruled by the King Jerol but when his beautiful daughter Princess Teegra has been kidnapped by Nekhron's goons, a warrior named Larn must protect her and must defeat Nekhron from taking over the world and the kingdom with the help of an avenger named Darkwolf.<br /><br />A nicely done and excellent underrated animated fantasy epic that combines live actors with animation traced over them ( rotoscoping), it's Ralph Bakshi's second best movie only with ""American Pop"" being number one and ""Heavy Traffic"" being third and ""Wizards"" being fourth. It's certainly better than his ""Cool World"" or ""Lord of the Rings"", the artwork is designed by famed artist Frank Farzetta and the animation has good coloring and there's also a hottie for the guys.<br /><br />I highly recommend this movie to fantasy and animation lovers everywhere especially the new 2-Disc Limited Edition DVD from Blue Underground.<br /><br />Also recommended: ""The Black Cauldron"", ""The Dark Crystal"", ""Conan The Barbarian"", ""The Wizard of Oz"", "" Rock & Rule"", ""Wizards"", ""Heavy Metal"", ""Starchaser: Legend of Orin"", ""Fantastic Planet"", "" Princess Mononoke"", "" Nausicca: Valley of the Wind"", "" Conan The Destroyer"", "" Willow"", "" The Princess Bride"", ""Lord of the Rings ( 1978)"", "" The Sword in The Stone"", "" Excalibur"", "" Army of Darkness"", "" Krull"", ""Dragonheart"", "" King Arthur"", "" The Hobbit"", "" Return of the King ( 1980)"", ""Conquest"", "" American Pop"", "" Jason and The Argonauts"", "" Clash of the Titans"", "" The Last Unicorn"", "" The Secret of NIMH"", ""The Flight of Dragons"", "" Hercules (Disney)"", "" Legend"", "" The Chronicles of Narnia"", "" Harry Potter and The Goblet of Fire"".",1 +2266,"An hilariously accurate caricature of trying to sell a script. Documentary hits all the beats, plot points, character arcs, seductions, moments of elation and disappointments and the allure but insane prospect of selling a script or getting an agent in Hollywood;and all the fleeting, fantasy-realizing but ultimately empty rites of passage attendant to being socialized into ""the system."" Hotz and Rice capture the moment of thinking you're finally a player, only to find that what goes up comes down fast and in a blind-siding fashion;that for inexplicable reasons, Hollywood has moved on and left you checking your heart, your dreams, and your pockets. Pitch is a must-see for students in film school to taste the mind and ego-bashing gantlet that is, for most, the road that must be traveled to sell oneself and one's projects in Hollywood. If your teacher or guru has never been there, they can't tell you what you need to prepare for this gantlet. To enter the""biz,"" talent is necessary but far from sufficient",1 +12111,"What seemed at first just another introverted French flick offering no more than baleful sentiment became for me, on second viewing, a genuinely insightful and quite satisfying presentation.<br /><br />Spoiler of sorts follows.<br /><br />Poor Cedric; he apparently didn't know what hit him. Poor audience; we were at first caught up in what seemed a really beautiful and romantic story only to be led back and forth into the dark reality of mismatch. These two guys just didn't belong together from their first ambiguous encounter. As much as Mathieu and Cedric were sexually attracted to each other, the absence of a deeper emotional tie made it impossible for Mathieu, an intellectual being, to find fulfillment in sharing life with someone whose sensibilities were more attuned to carnival festivities and romps on the beach.<br /><br />On a purely technical note, I loved the camera action in this film. Subtitles were totally unnecessary, even though my French is ""presque rien."" I could watch it again without the annoying English translation and enjoy it even more. This was a polished, very professionally made motion picture. Though many scenes seem superfluous, I rate it nine out of ten.",1 +13202,"There are so many incorrect statements in this so-called ""documentary"" that I found myself shouting at the television.<br /><br />Bart Sibrel might be able to produce a flashy looking DVD, but he is sadly lacking at looking at the science behind his claims.<br /><br />He relies on either being inaccurate, not telling the full story, or the old favourite ""government always lies to us"" innuendos, and people believing what is told to them and not checking on the accuracy or details behind the claims.<br /><br />What's more, his ""exclusive"" or ""unreleased"" footage is freely available over the internet from various sites.<br /><br />Further reading about the circumstances regarding the filming of this production shows that he used false pretenses to gain interviews, and has used creative editing of the responses in order to promote his own opinions.<br /><br />All of the claims made by Mr Sibrel about ""inaccuracies"", ""mistakes"", or ""whistleblowing"" in the Apollo programme have been thoroughly disproven.<br /><br />How do I get that 40-odd minutes of my life back?",0 +22053,"Polyester was the very first John Water's film I saw, and I have to say that it was also the ""worst"" movie I had seen up to that point.<br /><br />Water's group of ""talent"" included several people who I am sure worked for food, and were willing to say the lines Waters wrote. Every thing about the movie is terrible, acting, camera, editing, and the story about a woman played by 300 lb transvestite Divine was purely absurd.<br /><br />That said, I have to recommend this film because it is very funny, and you won't believe the crap that happens to poor Francine. Her son huffs solvents and stomps unsuspecting women's feet at the grocery store. Her daughter is the sluttiest slut in town. Her husband is a cackling A-hole of a pornographer who does everything in his power to embarrass and humiliate poor Francine.<br /><br />Francine's only friend is played by Edith Massey, possibly the worst actress ever. Edith looks and sounds like she is reading the lines off a cue card and has never seen the script prior to filming.<br /><br />Despite all of Francine's travails, Waters cooks up a fabulous Hollywood ending and everyone (who survives) lives happily ever after.",0 +10734,"This early version of the tale 'The Student of Prague' was made in Germany in 1913, starring Paul Wegener (who was also in 'The Golem' a few years later). In this film he plays a dual role (technically impressive for a 95 year old film to see them in the same shot) after meeting a mysterious old man who makes a pact with him for gold - the gold he needs to woo a countess he's previously saved from drowning.<br /><br />Moving at a fast pace (the film runs just over an hour) and fairly well written and characterised, 'The Student of Prague' has echoes of the Faust legend as well as Dr Jekyll and Mr Hyde, starting as it does with a pact with a mysterious figure of potential evil, and developing into good and evil sides of the same person.",1 +11793,"I saw this at a screening last night too. I was totally blown away at how much better this movie was than what I expected. Not many movies can combine dark comedy and current event drama and not have it fall apart in the conclusion.<br /><br />I won't bother rehashing the plot too much because I think the less you know about this movie going into it makes it that much better. But I will say that Adam Sandler's performance was really refreshing and real. He was funny, and much funnier than most of his most recent comedies. Don Cheadle was believable as always.<br /><br />This movie isn't funny like Borat or Billy Madison but it has a good pace about it. I'd say 90% of the audience laughed for most of the film. Midway through the movie slows down to address the drama end of things and does a really nice job of tying it all together.<br /><br />I also thought it was really cool how instead of playing up the whole black friend/white friend thing they chose to just ignore it and focus on the relationships themselves.",1 +14535,"From the creators of Shrek .. OK, that grabbed my attention.<br /><br />Well the creators of Shrek also made Madagascar. Madagascar was half as good as Shrek.<br /><br />And now Flushed Away is half as good as Madagascar.<br /><br />That means Flushed Away isn't good. The animation and all that special effects were extremely good but the movie wasn't.<br /><br />The story of this movie was only meant for kids. It's seriously not possible for adults to actually love this flick.<br /><br />But there were many jokes meant for adults. I bet kids dint understand the jokes.<br /><br />Despite that I dint like this flick.<br /><br />I am completely disappointed. 4/10",0 +1009,"As with all of Angelopoulos' films, ""The Suspended Step of the Stork"" implicitly demands a close and intimate participation on the part of the viewer, a fact that has certainly contributed to the limited popularity of his work. Dialogues are sparing, with no monologues or exchanges exteriorizing the characters' inner conflicts, doubts, or feelings. The filmmaker prefers to keep the viewers away from their own emotional responses, and instead forces them to explore and study the characters' identities for themselves. As a result, the acting is understated and implicit, as opposed to overt and explicit.<br /><br />The action scenes are set between long intervals of contemplation, where the viewer is asked to become a participant, to participate as an actor, by probing his or her own psyche. As in a novel, where the drama rests entirely on the author's writing to provide a template where the reader's imagination and/or past experience flourish, Angelopoulos' drama rests within his images: his uses of the long shots, the long takes, the leisurely pacing, the sparing dialogues that have become his trademark, inviting the viewer to experience the film from his or her personal perspective. Angelopoulos uses silence to capture moments of high intensity, reverting to the non-verbal language of gestures, gazes, sounds, and music, when he believes that words can only take us so far.<br /><br />The music, by Angelopoulos' long time collaborator, Eleni Karaindrou, provides more than just a discreet background, but becomes itself a dramatic element of the story. A large part of the film consists of exterior shots in subtle, subdued colors, recorded in a drab winter light. Angelopoulos presents us with an ""other Greece,"" one far different from the Greece of the tourist brochures, with ethereal blue skies and emerald seas, drowned in an eternal sunshine. Here, the skies are covered and gray, the air is cold and misty, and the sands of the pristine beaches have been replaced by the trampled, dirty snow of the village streets. Angelopoulos' genius through Arvanitis' camera is on display throughout the film.<br /><br />""The Suspended Step of the Stork"" is above all else a political statement aimed at the socio-political situation in the Balkans at the end of the twentieth century. It is deeply concerned with the meaning of ""borders,"" and with those who are the victims of the confusion between nations. In the ""waiting room"" facing the Albanian border, the refugees, political or other, outcast by the rest of humanity, wait. They may be stuck against a political border, but unfortunately they still carry with them, and hang on, deeper ancestral borders: those of the languages, of the customs, and of the races. Although Angelopoulos' political views are well known, the film steers clear of any political discourse regarding the causes of the refugees' plights. In the process, Angelopoulos forces us to meditate on the concepts of geographical, cultural, political, and personal ""borders."" <br /><br />Angelopoulos considers himself a historian of twentieth century Greece, and he likes to bring lessons from the Hellenic myths into his discussions. In this film, he does some border crossing himself between the Greek and Italian cultures, drawing from a combined Homeric and Dantesque tradition of Odysseus' travel. Alexander is a Telemachus, in search of a story about an aging Greek politician/Odysseus who disappeared, never to be heard of again. This political man, a brilliant orator, unexpectedly and inexplicably left the comfort of his bourgeois existence, his wife, and his brilliant career, to live anonymously in a refugee camp with the lowest of the low. He became a poet in exile wondering how to change the world. Of course, the ""politician"" is not Alexander's father, but the ""politician"" stands before Alexander like a father figure/Odysseus. As with Homer's Telemachus, Alexander grows as a person during his odyssey.<br /><br />Of course, it would be wrong to try and see in the film a retelling of Homer's Odyssey in a contemporary context. Angelopoulos draws on Odysseus's travels only as structuring and thematic elements for his film. In Angelopoulos' ending, ""Odysseus"" is more like the Dante's Odysseus: he does not leave for Ithaca but goes on, ""carrying a suitcase."" And Alexander/Telemachus is ""suspended"" between returning to his home and his career, or embarking on a voyage to ""somewhere else."" He states as much, in a voice-over at the beginning of the film, paraphrasing few lines from Dante's ""Inferno"": ""And don't forget that the time for a voyage has come again. The wind blows your eyes far away."" <br /><br />Finally, although Angelopoulos is not a religious person, there is a Greek Orthodox religious theme introduced during the film in the form of the yellow-suited linesmen, who go around bettering things for their fellow human beings by reconnecting communications, and also the Christ-like figure of the ""politician."" In the final scene, these men in yellow demonstrate once more the Byzantine iconography's influence in Angelopoulos' work. They appear like ""stylites,"" religious figures found in the Orthodox tradition, solitary and fervent men who took up their abode upon the tops of pillars, in a form of asceticism.<br /><br />The film ends without a resolution as to the true identity of the character played by Mastroianni. Angelopoulos does not give us any clues, and the wife's statement, ""It's not him,"" is far from convincing and left ambiguous enough. The important question of the film is not whether he is or is not the vanished politician, but that he could be the politician. But the film still ends on an optimistic note. Whereas the wires strung from pole to pole run only along the river, and thus communications across the border are still not possible, and it remains impenetrable, we note that this final scene is taken from a point of view across the river: the camera has crossed the border, and the reverse tracking shot is inviting Alexander and the viewer to follow beyond the boundary. On this account, Angelopoulos gives us hope that somehow, some of the borders will eventually crumble.",1 +17122,"The highlight of this movie for me was without doubt Tom Hanks. As Mike Sullivan, he was definitely cast against type and showed that he can handle an untraditional (for him) role. Hanks is usually the good guy in a movie - the one you like, admire and root for. Sullivan was definitely not a good guy. It's true that in the context of this movie he came across as somewhat noble - his purpose being to avenge the murders of his wife and youngest son. Even so, he was already a gangster and murderer before those killings. So Hanks took a role I wouldn't have expected him in, and he pulled it off well.<br /><br />Hanks' good performance aside, though, I certainly couldn't call this an enjoyable movie. After an opening that I would best describe as enigmatic (it wasn't entirely clear to me for a while where this was going) it turns into a very sombre movie, about the complicated relationships Sullivan has developed as a gangster - largely raised by Rooney (Paul Newman), who's a sort of mob boss, and trying to raise his own two sons and to keep them ""clean"" so to speak; isolated from his business. After the older son witnesses a murder, the gang tries to kill him to keep him quiet, gets the wrong son (and the mother), and leaves Sullivan and his older son (Mike, Jr.) on the run. It becomes a weird sort of father/son bonding movie.<br /><br />Although it ends on a somewhat hopeful note (at least in the overall context of the story) it's really very dark throughout, that mood being reinforced with many of the scenes being shot in darkness and torrential rainfall. I have to confess that while I appreciated Hanks' performance, the movie as a whole just didn't pull me in. 4/10",0 +210,"The Movie was sub-par, but this Television Pilot delivers a great springboard into what has become a Sci-Fi fans Ideal program. The Actors deliver and the special effects (for a television series) are spectacular. Having an intelligent interesting script doesn't hurt either.<br /><br />Stargate SG1 is currently one of my favorite programs.",1 +9644,"Personnaly I really loved this movie, and it particularly moved me. The two main actors are giving us such great performances, that at the end, it is really heart breaking to know what finally happened to their characters.<br /><br />The alchemy between Barbra Streisand and Kris Kristofferson is marvelous, and the song are just great the way they are. <br /><br />That's why I didn't feel surprised when I learned it had won 5 golden globe awards (the most rewarded movie at the Golden Globes), an Oscar and even a Grammy. This movie is a classic that deserves to be seen by anyone. A great movie, that has often been criticized (maybe because Streisand dared to get involved in it, surely as a ""co-director""). Her artistry is the biggest, and that will surely please you!",1 +5437,"The Rookie is based on the true story of a 40+ year old school teacher in Big Lake, Texas reaching the majors. Jimmy Morris (Dennis Quaid) is a small-town high school science teacher and baseball coach. His team is losing terribly until the team discovers that their coach played in minor leagues and can throw a pitch 98 mph. <br /><br />After throwing batting practice and a wager is made, Jim agrees that if his team wins regional's, he'll try out for the Major Leagues. The movie tells the story from Jimmy being boy to playing in his first game in the majors. It is a great underdog story and a very friendly family movie. Dennis Quaid makes the movie worth while, giving an emotional performance and is supported by an excellent supporting cast which includes: Brian Cox, Rachel Griffiths, and Angus T. Jones. <br /><br />The story takes a little while to develop and some scenes are a bit slow but it all works in well by the end. The baseball scenes are fun, well-filmed, and portrayed excellently. The movie really isn't about baseball but about one man's quest to reach his dream. It's inspiring, it's emotional, and it's funny. I liked it, I hope you do.<br /><br />The Rookie. Starring: Dennis Quaid, Brian Cox, Rachel Griffiths, and Angus T. Jones.<br /><br />4 out of 5 Stars.",1 +9222,"I don't want to spend to long here rambling about the plot- you've seen the trailer, and if you haven't its online. I don't recommend seeing it though- it was poorly crafted and didn't pack any of the laughs or magic from the film. So those avoiding this film due to its lousy trailer should give this one a chance. It's really funny. I was blown away by the cleverness and originality in this film. The first 40 minutes had me on the floor in hysterics- my only problem was that it unnecessarily evolved into a bad Austin Powers film in the final 20. This however, is one of the few films where the campy ending didn't make me dislike the rest of the film (which is normally the case). Everyone gives a great performance (especially Joan Cusack) and there are some really great moments throughout. I personally plan on seeing it again when it comes out- only to catch all the details which I was laughing over during the first viewing!",1 +13083,"The plot was predictable, and fighting with guns gets old, but this is a definate movie to look at if you have a low IQ and don't really care about real movies. I would endulge in true art movies, like 'Clerks', 'Something about Mary', 'El Mariachi', or 'La Taqueria'.",0 +13020,"Yes I admit I cried during this movie. It was so incredibly disappointing, that I couldn't help myself but cry. TBN (Trinity Broadcasting Network) has done it again. First with having the Million Dollar Man (ex-professional wrestler) on their program, and now this.<br /><br />The Omega Code follows a stream of sketchy religiously oriented movies. It was quite amusing, yet at the same time it was disturbing to find it so biblically inaccurate. The movie follows what is known as ""the bible code"" rather than following actual biblical scripture. This film is extremely poorly made; from its writing to its directing to its hilariously horrible acting. Its depressing that people actually put effort into this movie. It appeared more like a late night movie someone would watch on the USA channel or a straight to home video rather than a theatrical released movie.<br /><br />I highly recommend you do not watch this movie, even if your life depended on it.",0 +19714,"Make up your own mind. Personally I found it as much fun as receiving a spinal tap from Stevie Wonder. No offense Mr. Wonder. Maybe it is comedy, but I just found it stupid. Not exactly the first two choices to babysit your kids; Wheeler(Seann William Scott)and Danny(Paul Rudd),two energy drink salesmen, to avert jail time are court ordered to mentor two kids from a development center run by Gayle Sweeny(Jane Lynch). One of the misfits is Ronnie(Bobb'e J. Thompson), a foul-mouthed fifth grader and the other is Augie(Christopher Mintz-Plasse), a bashful young man that roll plays in a fantasy medieval world. Wheeler and Danny desperately try to give their charges an invaluable inside view of life, love and heavy metal. Lynch is hilarious with her dry wit analogies. Supporting are: Elizabeth Banks, Ken Jeongg, Kerri Kenney-Silver, Amanda Righetti and David Wain.",0 +23129,"For a film about a killer this is surprisingly dull.<br /><br />Nothing much happens and even when things do happen they don't generate any real excitement or interest.<br /><br />The acting is good from the two leads, Cassetti in particular delivers a great performance combining the certainty and stupidity of Succo but the rest of the cast also do what they need to.<br /><br />The problem is that there is poor writing and direction and the fact that as a true story it isn't interesting, Succo is not a unique character, he isn't interesting or exciting.<br /><br />Films of this sort normally try to generate tension or empathy or outrage and this generates nothing except a feeling of regret that you wasted your time watching it.",0 +20196,"This would have to be one of the worst, if not the worst, movie I've ever nearly seen. (I couldn't watch it all the way through). Purely and simply it's gratuitous violence just for the sake of it and the ridiculous story line only adds to the lacklustre and incompetent filming. Sick. And only suitable for those with a love for manic mutilation. After murdering several hundred men, women and children, Seed is finally caught after effortlessly killing several more police officers that finally get a tip as to his whereabouts. He's sentenced to death by electric chair and miraculously survives! Buried alive, he digs his way out and plots revenge against those that put him away and flicked the switch. Needless to say, more gruesome murders ensue...",0 +10294,"I first saw this movie in the theater when I was 8 years old and it still cracks me up. The Muppets are so cool and they approach show business in a refreshingly naive way. My favorite scene is when the rats start a whispering campaign on behalf of Kermit at a fancy restaurant. This is one smart and funny movie for kids and parents alike. Long live Kermit, Miss Piggy and the rest of the gang.",1 +17977,"I remember a certain Tuesday, the morning of 18/6/02 to be exact. I was dozed off, trying to convince myself to get out of bed when a horrific explosion was heard. I went to the kitchen where I have a view of several neighborhoods in the southern Jerusalem and saw a pillar of smoke rising from a distant point, the sight of the smoke was followed a minute later by the waling of sirens. I remember rushing to my bedroom, taking out my binoculars, racing back to the kitchen and spotting the image of a glass shattered bus. The bus was still near the pick up station where a terrorist boarded on it and with a single click on a TNT device, murdered 25 passengers, many of whom were on their way to school. The wife of a good friend of mine, sat on the bus at the back row, a seemingly arbitrary and meaningless decision that saved her life.<br /><br />I'm sure that every Israeli has at least one terror-related memory he wishes he never would have had and it was only a matter of time before someone made a film about it. As it turned out, the movie was about to become a repressed memory of its own.<br /><br />The film is about a play-write on a dry run, Haim Buzaglo (portrayed by, hmmm, Haim Buzaglo who also wrote and directed the film) that spends the better part of his day conducting staring contests with his blank word processor page. In the meantime, his girlfriend, a field reporter for the Israeli commercial channel, decides to make a piece about a debt ridden ex-army officer. Buzaglo, bored and a bit paranoid due what is medically known as the ""what on earth this hot babe is dating me"" syndrome, asks a private eye to conduct a stakeout on his girlfriend.<br /><br />As the detective progresses in his investigation, his observations are permeating into the play and later on, to the lives of its actors. In the meantime, the play metamorphoses from a comic play into an indictment against the aloofness of the Israeli society. As for the movie, well, the movie becomes an exercise in frenzy editing, ensconced in its petty cardboard characters and unreliable dialogs while drifting miles away from the subject it was supposed to deal with in the first place.<br /><br />When I say ""cardboard characters"" I refer to the characters that under the writer/director's obsession for a ""meaningful"" film, were devoid of any genuine dialogs and any shred of reliability. I won't elaborate too much about it. Suffice to say that I'm sure that homeless barefoot male prostitutes rarely go the theater. With the intention to see a play, that is.<br /><br />This movie, according to Haim Buzaglo himself is the first part of a current agenda trilogy. I sincerely hope that the other two films will be derived from the experiences like the one I wrote about in the beginning of my review as opposed to the secluded world of characters that are anything but existent and a plot that is anything but compelling.<br /><br />4 out of 10 in my FilmOmeter.<br /><br />P.S. This movie was a landmark in austerity. It was shot in ten days, all the cast worked for free and the entire cost of the film was about 12,000$ (no, I didn't omit a zero or two, twelve thousand dollars). Makes you wonder why it took 34,000$ to complete Blair witch project.",0 +23066,"First off, I would like to point out that while I am not an expert, the way the trial was handled will insult your intelligence. Firstly, the prosecution never proved that 'facilitated learning' actually works. Irresponsible for both the prosecution(because they can get an appeal) and the defense for not acting on this. As another commenter said, facilitated learning was proved untrue. Secondly, they used Terry as the translator who has personal interest, and even will testify, in the trial which is just stupid. If the court had allowed him to testify that way, they would have brought in someone neutral otherwise they would be just asking for an appeal. Thirdly, this child was never asked specific questions about the defendant by the prosecution(birthmarks, details of the event, etc.) and even when asked by the defense specific questions like when it started, he could not answer. If that isn't reasonable doubt I don't know what is and a competent lawyer would have gotten an acquittal.<br /><br />Bottom line, it starts off well with the pressures of being the parent of a child with autism, but the trial makes this movie wholly unbelievable.",0 +21762,"I wouldn't normally write a comment on-line, but this is the worst movie I've ever seen. Not only that it's filmed just like a soap series (""The young and the restless"" is really filmed by professionals compared to this), but it also has awful cuts. It has no action. It is full of useless garbage.<br /><br />Here's an example: a guy wants to kill the main character as he got fired because of him. So (after loads of crap) here they are: the guy puts a knife at his throat and says something like ""You're dead now"". Then the main character says: ""If you kill me you're dead. I've told the police you're threatening me"". So the (killer) guy goes like (just about to cry): ""Oh no... the cops are following me!?!! Oh... my God"".<br /><br />Remember: this is just an example. I really cannot believe this movie actually exists. So: IF you want to see the WORST movie ever... go ahead, I recommend it :)",0 +2166,"I went into this movie knowing nothing about it, and ended up really enjoying it. It lacked authenticity and believability- Some of the things that the characters said and did were completely bizarre, and a lot of the script seemed like it was ad-libbed (perhaps this is typical of Woody Allen? Excuse my ignorance) but the whole audience in the theater was laughing so hard. It wasn't even at the jokes in the movie per se, but at the whole movie itself. The acting reminded me of Seinfeld's acting, where he tries not to laugh at his own jokes- they are corny, but if you don't take the movie too seriously, you can really appreciate the humour of the ACTORS, not the CHARACTERS. If you're looking for a random movie, and you like Woody Allen, I'd definitely recommend it!",1 +9755,"This is so to say a sequel to batman the animated and it is pretty much as good as it to and for all the same reasons it has lots of action in it the storyline to it is good the voice over actors are really good such as Kevin Conroy as batman, Mark Hamil as the Joker, etc. The villains are really good such as The Joker, Two-face, Catwoman, Clayface, etc. So i am sure you will not be disappointed with the new adventures of batman because it is really good. So make sure that you watch it on TV or rent or buy the collectors edition because it is really good.<br /><br />Overall score: ********* out of ********** <br /><br />**** out of *****",1 +17436,"I can count (on one hand) the number of good movies starring Joe Don Baker. This is not one of them.<br /><br />Interminable chase scenes, dim-witted dialogue, and terrible lapses in continuity made this movie a prime choice for getting the send-up on MST3K.<br /><br />And that is the only way I was able to watch this...",0 +3402,"This is one of the greatest movies ever maybe even the greatest movie ever. I had forgotten about the movie for about 12 years. Until I saw an add on TV for ADGTH and it brought back fond memories of me watching it when I was a little kid. And when I watched it a few nights ago I became addicted to the movie. Usually I don't like animated family movies but this one is special it is the perfect family movie.<br /><br />The ending of the movie always touches my heart and saddens me very much but that is what makes this movie amazing better than all of the garbage that is coming out for kid movies today. I mean the movie is G rated and it is about 2 dogs who are involved with gambling, there is a lot of smoking, drinking, murder, death and hell depicted in the movie. Which I Believe makes the movie from good to great. I mean movies today don't bring reality to kids and in this movie they did.<br /><br />RIP Judith Barsi & Dom DeLuise",1 +12114,"Stephane Rideau was already a star for his tour de force in ""Wild Reeds,"" and he is one of France's biggest indie stars. In this film, he plays Cedric, a local boy who meets vacationing Mathieu (newcomer Jamie Elkaim, in a stunning, nuanced, ethereal performance) at the beach. Mathieu has a complex relationship with his ill mother, demanding aunt and sister (with whom he has a competitive relationship). Soon, the two are falling in love.<br /><br />The film's fractured narrative -- which is comprised of lengthy flash-backs, bits and pieces of the present, and real-time forward-movement into the future -- is a little daunting. Director Sebastien Lifshitz doesn't signal which time-period we are in, and the story line can be difficult to follow. But stick it out: The film's final 45 minutes are so engrossing that you won't be able to take your eyes off the screen. By turns heart-breaking and uplifting, this film ranks with ""Beautiful Thing"" as must-see cinema.",1 +649,"Footlight Parade is among the best of the 1930's musical comedy extravaganzas. A snappy script and an all-star cast including Jimmy Cagney, the lovely Joan Blondell, Dick Powell, and Ruby Keeler make this film a cut above the rest. Directed and choreographed by the creative genius Busby Berkeley, this film will have you grinning from ear-to-ear from start to finish.<br /><br />Busby, of course, is the undisputed master of the Hollywood musical with ""Gold Diggers of 1933"" and ""42nd Street"" to his credit (as Dance Director). Footlight Parade is graced by hundreds of scantily-clad chorus girls, a Berkeley trademark. The elaborate dance numbers were shot with only one camera and Busby was the first director to film close-ups of the dancers. His obsession with shapely legs and ""rear-view"" shots is amply demonstrated here. The overall effect is highly erotic and mesmerizing.<br /><br />Our boy Jimmy Cagney plays Chester Kent, a producer of ""prologues"" or short musical stage productions that were performed in movie theaters to entertain the audience before the talkies were shown. He's surrounded by crooked partners, a corporate spy, and a gold-digging girlfriend. Although Cagney had a solid background in vaudeville, this was the first film in which he showed his dancing talents. Joan Blondell is memorable as Cagney's wise-cracking, lovestruck secretary. And Ruby Keeler is adorable, as always.<br /><br />The film climaxes with three outstanding production numbers, ""Honeymoon Hotel"", ""The Waterfall"", and ""Shanghai Lil"", each one a masterpiece and not likely to be duplicated in today's Hollywood where so-called ""special effects"" have replaced creative cinematography.<br /><br />Claudia's Bottom Line: Clever and erotic, with some of the best musical production numbers ever put on celluloid. A thoroughly enjoyable Depression era romp.",1 +11006,"it's amazing that so many people that i know haven't seen this little gem. everybody i have turned on to it have come back with the same reaction: WHAT A GREAT MOVIE!!<br /><br />i've never much cared for Brad Pitt (though his turns in 12 monkeys and Fight Club show improvement) but his performance in this film as a psycho is unnerving, dark and right on target.<br /><br />everyone else in the film gives excellent performances and the movie's slow and deliberate pacing greatly enhance the proceedings. the sense of dread for the characters keeps increasing as they come to realize what has been really happening.<br /><br />the only thing that keeps this from a 10 in my book, is that compared to what came before it, the ending is a bit too long and overblown. but that's the only flaw i could find in this cult classic.<br /><br />if you check this film out, try to get the letterboxed unrated director's cut for the best viewing option.<br /><br />rating:9",1 +217,"Kudos to Cesar Montano for reviving the Cebuano movie! Panaghoy sa Suba is very good -- it has the drama, the action, the romance, and scene that will make you laugh.<br /><br />While the story is not that original (a love triangle -- or make a four-cornered-love, Japanese occupation, rebellion, American as lord), its presentation is something cool, especially it uses it original language -- bisaya for the Filipino, nipongo for the Japanese and English for the American.<br /><br />This movie will go as one of this year's best Pinoy movies.<br /><br />Go watch this!",1 +10408,"Saw it first in 1975 on some German TV channel and was hooked immediately, afterwards I saw this movie around 12 times in cinemas and nowadays I have a videotape which I watch at least once a year - this movie is excellent in every aspect (direction, acting, cut, musical score...). The sets are outstanding and very impressive, the idea of a devastating world war starting in the late thirties seems like prophecy for a 1936 film, the dictator of ""Everytown"" is pure Mussolini and Raymond Massey is just charming, believable and ideally cast as ""the hero"". The positive tone towards technology and progress is quite refreshing by todays usually pessimistic standards - especially the finishing scene which always brings a tear or two to my eyes, even after watching the film so many times.<br /><br />This movie is good on TV but it was made for the big screen, so if you have an opportunity to see it in some cinema. please do, it's overwhelming.",1 +4275,"Having enjoyed Joyce's complex novel so keenly I was prepared to be disappointed by Joseph Strick's and Fred Haines's screenplay, given the fabulous complexity of the original text. However, the film turned out to be very well done and a fine translation of the tone, naturalism, and levity of the book.<br /><br />It certainly helps to have read the original text before viewing the film. I imagine the latter would seem disjointed, with very odd episodes apparently randomly stitched together, without a prior reading of the text to help grasp the plot.<br /><br />It's amazing to see how ""filthy"" the film is, given that it was shot in Dublin in 1967. The Irish film censors only, finally, unbanned it for viewing by general audiences in Ireland as late as 2000 (it was shown to restricted audiences in a private cinema club, the Irish Film Theatre, in the late 1970s). Joyce's eroticism is not simply naturalistic and raunchy, it offers many wildly ""perverse"" episodes. Never mind that so many of these fetishes were unacceptable when the book was published in 1922 - they were still utterly taboo when the film was made in 1967.<br /><br />It is astonishing and heartening to watch the cream of the Irish acting profession of the 1960s, respected players all, daring to utter and enact Joyce's hugely transgressive text with such gusto.<br /><br />Bravo!",1 +4140,"Grand epic as it is, Kenneth Branagh's monumental rendering of what is perhaps William Shakespeare's most popular tragedy suffers under the weight of its four hour playing time and certainly takes some real staying power. Two entirely separate sittings would most likely be better in order to fully appreciate what is certainly high class film making. While I absolutely acknowledge this masterpiece as such, I must confess to a lack of enthusiasm for the old bards flamboyance, his rhetoric (and he sends himself up so well) and his many flourishes. Thus ""Hamlet"" loses its impact as it loses its grip.<br /><br />From Patrick Doyle's music to Alex Thomson's cinematography to Tim Harvey's exquisite sets, the movie is a feast of visual and aural delights, which compliments a fine cast. Branagh has taken on three huge mantels, adapting, directing and playing. His adaptation is superb, his direction strong, but by the time he got to the role of Hamlet, the strain seemed to be showing; yet still he does a fine job in what is an incredibly taxing role. Derek Jacobi gobbles up the sinister Claudius with glee, and Julie Christie is most dramatic as his queen, Gertrude. Richard Briers is marvellous as Polonius, and Charlton Heston is once again a strong screen influence as the player King. Many others drop by, including Jack Lemmon (superb in a very small role), Billy Crystal, Dame Judi Dench, Sir John Mills, Sir John Gielgud, Sir Richard Attenborough and Gerard Depardieu. The acting prize though must go to one of the great thespian discoveries of recent years, Kate Winslet. Hers is a moving portrayal of the most tragic figure in this whole affair, Ophelia.<br /><br />To finish (before this review goes on longer than the film), I must say it is the length that really tests the viewer in this movie. Branagh has directed with purpose, giving many important, impacting scenes. Too many of them outstay their welcome. Watching this film holds a fantastic reminder of the many pearls of wisdom we have garnered from it. ""Neither a lender nor a borrower be"" or ""Be true to thyself"". And of course: ""To be or not to be"".<br /><br />The opening two hours does take some perseverance, but if you do manage to stay tuned you are sure to be treated to a rousing finale which gathers momentum from the tragic funeral onward.<br /><br />Monday, June 8, 1998 - Hoyts Croydon",1 +5621,"Taking a break from his escapist run in the early '80s, Steven Spielberg directed Whoopi Goldberg in an adaptation of Alice Walker's ""The Color Purple"", about about the desperate existence of an African-American woman in the 1930s. Watching Goldberg play Celie, it's incredible that this is the same woman who starred in movies like ""Sister Act"". This is the sort of movie that could easily be - no, make that SHOULD BE - part of the curriculum in Black Studies and Women's Studies. There's one scene that may be the most magnificent editing job that's ever been on screen (you'll know it when you see it). I can't believe that this didn't win a single Oscar; it may be Spielberg's second best movie behind ""Schindler's List"" (maybe even tied with it). Also starring Danny Glover, Adolph Caesar, Margaret Avery, Oprah Winfrey, Willard E. Pugh, Akosua Busia, and Laurence Fishburne.",1 +19892,"I gave this movie a single star only because it was impossible to give it less.<br /><br />Scientists have developed a formula for replicating any organism. In their lab(a run down warehouse in L.A.), they create a T-Rex. A group of industrial spies break in to steal the formula and the remainder of the film is one endless foot chase.<br /><br />Of course the T-Rex(a rubber puppet)gets loose and commences to wipe out the cast. It has the amazing ability to sneak up within 2 or 3 feet of someone without them noticing and then promptly bites their head off.<br /><br />One cast member escapes in a police car and spends the remainder of the film driving aimlessly through the city. She is of such superior mental ability that she can't even operate the radio. She never makes any attempt to drive to a substation or a donut shop and appears hopelessly lost.<br /><br />The T-Rex wreaks havoc throughout the city, there are blazing gun battles and buildings(cardboard mock-ups)blowing up, but a single police car, or the army, nor anyone else ever shows up. Such activity must be commonplace in Los Angeles.<br /><br />We can only hope that a sequel isn't planned.",0 +14070,"Seriously - avoid this movie at any cost. I just saw it in my first ""sneak preview"" ever and although I paid non-refundable money for it, I walked out of the cinema after a mere 15 minutes. Which already includes 2 minutes of discussion among my friends whether or not to leave. First time EVER I walked out of a movie. And I lived through some pretty bad ones.<br /><br />It's one of those films that is dubbed (and badly so) even though it is shown in its original language. It relies on the oldest, simplest and cheapest jokes in the book. On the military (""What do we do once we reach the fighting zone?"" - ""You get out of the car and die""; actually, it's much funnier to read here that the way it was delivered in the film), on drugs (a guy eats some ""space cookies"", behaves really silly and misses his wedding or has to live through it while high - all badly written and acted), on women in the army (""Why do we only get trumpets? We were promised guns!"" - ""That's the way it is, that's the way it'll stay"")... Argh. Okay, you might actually find these genuinely funny, but in that case you seriously scare me.<br /><br />Additionally, I have seen better acting in the kind of soft porn films you get on European late night TV. So it had lame jokes (delivered badly), beyond lower average acting, lacked pace, was badly dubbed and edited It just didn't work. At least not on any level used as a measure for films.<br /><br />I would even be so bold as to say that this flick proves that there are people who can be a lot less funny zan zee Germans. And that's saying something if you like stereotypes. (Which I don't, it's nice to play with them, though. Just in case somebody thinks I'm not being PC enough.)<br /><br />Instead of going to see this film, do something useful. Try to teach crocheting to prawns, paint your toenails in a really irritating colour, disassemble your bicycle, change some light bulbs, try to understand Einstein's theories, convert to a different religion and back - in fact, go and listen to ""Last Christmas"" by Wham! on endless repeat. Anything, but don't watch this awful flick.",0 +4420,"I voted excellent for how well the acting was, not for the content. It still gives me chills after reading the book, then watching the movie. Two ex-cons are traveling to their destination to rob a family of money from a safe one of the cons learned about while in prison. During the ride, the tension begins to mount, as the soundtrack in the movie adds to the overall anticipation. After the killers are done with their work at the farm, the following morning the family's remains are found by the daughter's church friend. The blood-curdling scream, as the scene pans onto the telephone with the cut cord, really made my blood run cold and gave me chills. That the killers met their just fates is a small comfort for this doomed family. Robert Blake was excellent in his portrayal of Perry Smith. The book was also excellently written by Truman Capote.",1 +7850,"The first time I saw this ""film"" I loved it. When I was 11, I was more interested in the music and dancing. As I've grown older, I've become more interested in the acting as well. While the first half is just a retrospective of Michael's career (from the Jackson 5 up to ""Bad""), it was still entertaining to watch. The ""Badder"" sequence could've been left out, though the kids were pretty good. ""Speed Demon"" and ""Leave Me Alone"" were funny, especially when the police officer tells Michael, ""I need your autograph right here"", after stopping him for dancing in a no-dancing zone. But it's ""Smooth Criminal"" that's the icing on the cake. Joe Pesci did an excellent job as the toughie (and that hair was wild). The dancing is perfect, and so are the special effects. The only thing I could have done without was the spiders. Any fan of Michael's should see this, if you haven't already. I give it a 10+!",1 +11467,"Pre-adolescent humor is present in large quantities. The acting and story are wonderful if you can stomach the concept. Those with weak constitutions will have some difficulty since the ""worms"" are realistic enough to cause churning of more than a few in the audience.<br /><br />Tom Cavanagh and Hallie Kate Eisenberg stole the spotlight, but the young Ty Panitz could get some serious time on screen over the next few years.<br /><br />Miss Eisenberg has developed from a cute face into a strong young actress with charm and wonderful comic delivery. <br /><br />The story does a spectacular job in dealing with bullying, friendship, and fairness. It creates an opportunity to discuss these topics in an open and frank manner while recalling some ""gross"" scene from the film.",1 +18648,"Jason Lee's pecks are back! If that's what you are looking for, look no further. If not, better move on...<br /><br />But about the movie. Clichés galore, some poorly shot but kinda exotic fight scenes (used JKD) and lots of bad acting & cheap effects. Poor Lee looks like he's in pain throughout the movie, and no wonder. Not a pleasant comeback.<br /><br />The movie doesn't even cut it as a B-movie - sure, there was a Germanish bleached blonde Rutger-wannabe bad guy, but no gratuitous sex scene or even a single booty shots. None. Zip. Nada. Even in Starship Troopers 2 they had the common sense to include the mandatory nudie scenes (as for rest of my comments on that excellent piece of classic cinema excellence, please refer to our upcoming review on that mind-blowing sequel...). I did get the feeling that the writer was taking his revenge on somebody with this - thus I won't get into the ""plot"" of the movie or pretty much anything else related. Except that it did have some non-heterosexual overtones, so 'nuff said.<br /><br />However, this movie has one thing going for it - no Jean-Claude :)",0 +10560,"Fido is a cute comedy that deserves wider recognition, especially considering the mainstream crap that is supposed to entertain us these days.<br /><br />As has already been pointed out, this is hardly a real zombie film, but rather a sweet satire that employs the undead to point fingers. While there are necessarily some bloody scenes, there is almost no gore and the way this movie is presented (feel-good 50s style), I can't imagine anyone being actually scared or turned off by Fido & his fellow sufferers.<br /><br />While the cast is generally good, I felt that Moss and Nelson stood out. The humor is not in-your-face, but rather subdued; there's a lot of attention to detail and I caught myself smiling benignly several throughout the movie. This is certainly no masterpiece of cinema, but it doesn't strive to be - instead, Currie succeeds in delivering a heart-warming black comedy.",1 +16361,"Honestly I can't understand why this movie rates so well here, nor why Bakshi himself thought it was his finest film. I'm a huge fan of Bakshi's earlier work - particularly 'Heavy Traffic' and 'Wizards', but frankly 'Wizards' (1977) was the last good film he made. After that he turned to the mainstream, beginning with the diabolical 'Lord of the Rings' and then knuckling down with sword and sorcery heavyweight Frank Frazetta, for 'Fire and Ice'.<br /><br />What can I say? The story is puerile, the animation is TV quality - I insist that it's considerably worse than his 70's stuff - and whereas 'Wizards' had real imagination, quirkiness, some gorgeous background art, and an underground, adult sensibility, 'Fire and Ice' is just designed for 14 year old boys, and has the intellectual clout of Robinson Crusoe on Mars.<br /><br />Yes, if you liked the Gor books, you might like this. In my view though, this was just another blip in the slide in quality after 'Wizards' from which Bakshi never recovered (though he's done some decent TV stuff fairly recently)<br /><br />4.5 out of 10",0 +10353,"Victor McLaglen, the title character of John Ford's THE INFORMER, reminded me of the circus man from Fellini's LA STRADA. Anthony Quinn played the brutish man, who may have even been influenced by the pug-faced, Oscar-winning performance given by McLaglen. Poverty-stricken Dublin is the true-life, atmospheric setting of the picture, which takes place in 1922. Dense fog and a long damp night are the main elements of a story about deep Irish patriotism and the fight of the Irish Republican Army. The conflict of individuality and the cause is what makes THE INFORMER tick. McLaglen's large, simple character just wants to go to America and we're reminded by signs of the price for a ticket frequently. Two different signs become the psychological centerpiece for the drunken Irishman. One is the previous, the other a WANTED sign. Should he do it and get the money to go?<br /><br />John Ford once famously said, ""My name is Ford. I make Westerns."" After seeing this film, he obviously could do a heck of a lot more. The serious social issues dealt with here are heartfelt and ones you will find yourself thinking about. And the look of the piece is amazing, consisting of long dark shadows cutting into a miserable Ireland night. Ford was always known for his luminescent, gorgeous cinematography that helped to foresee the conflicts within his characters. This is hard in color, but he did it in pictures like THE SEARCHERS, painting John Wayne in a sometimes vicious manner. Victor McLaglen's performance not only benefits from the lighting, but by the sheer simplicity of his acting. He shoves a lot. He knocks people out. He is a brute who knows no better. He should, however, know whether or not to cross the IRA.<br /><br />See the film to find out the gritty details. See it also for McLaglen and Ford's patriotic portrayal of the IRA. Max Steiner's score is innovative in how it matches gestures of the characters, placing more emphasis on them. This was usually only seen in silent films, especially Chaplin. The topic of naming names or ""informing"" is obviously still important. Just look at how the media covered this year's Oscars, giving much attention to the Elia Kazan scandal.",1 +21040,"Spoilers.<br /><br />First off, nothing really happened in this movie, other than a woman bleeding inexplicably. Second, it wasn't scary. Third, it had the worst soundtrack of any movie ever. Let me elaborate. The sound was edited by either Beavis or Butthead I'm not sure which, so let's just go with Beavis. The movie gradually gets more and more quiet and the people mumble and mutter, forcing you to turn up the volume (I watched this at home). Then Beavis blasts some really loud sounds with supposedly scary/shocking images, forcing you to quickly lower the volume again. This occurs many times until, mercifully, the movie ends. I can picture Beavis laughing vulgarly from behind the two-way mirror while watching the test group franticly reaching for the remote each time. If you have children and prefer to watch scary movies after they fall asleep, this one is a big mistake. But then it's a big mistake anyway. Here's a thought if you're going to make a horror movie, at least add a gratuitous beheading, a 19-year-old blond girl who screams at the top of her lungs just before she can take off her sweater, the shadow on the wall of someone being eaten alive just out of the camera range, a cat being thrown at the camera to scare the audience, some drifty weirdo with a maniacal laugh, or a monster who looks like a stage hand covered in aluminum foil (a la TV's Lost in Space). These people didn't even try to scare me. They just wanted to hurt my ears.",0 +18582,"STAR RATING: ***** The Works **** Just Misses the Mark *** That Little Bit In Between ** Lagging Behind * The Pits <br /><br />In this debut effort for Nick Park's beloved man and dog, they are forced to fly to the moon when good old Wallace runs out of cheese.<br /><br />As well as being the shortest feature at just 22 minutes, this W/G adventure is also the earliest and it kinda shows. The plasticine animation is a little creaky and funny here, sort of reminiscent of the Mork animation about the little man in the box.<br /><br />Admirable though the craftsmanship behind it is, I've never actually been hugely into Wallace & Gromit (maybe a bit too clean and traditional for someone of my generation.) The only one I've really enjoyed is The Wrong Trousers (and that was more from when I was younger and less aware of, shall we say, the seedier pleasures of life.) I was driven to actively seek out this early effort due to the resurgence in popularity as a result of the hugely successful recent film adaptation.<br /><br />As technically impressive as the first two (all things considered!) this one lacks the emotional angle it's successors were to possess. That being said, it's fairly good fun as a first try and certainly set the standard for greater things to come. Two stars, but a good two stars. **",0 +19886,"SPOILERS All too often, Hollywood's Shakespeare adaptations entertaining pieces of cinema. Beautifully shot they are well performed and faithful to the text. Films including Branagh's ""Henry V"" and 1993's ""Much Ado About Nothing"" are powerful pieces of work. Watching ""Love's Labour's Lost"" therefore, it's such a huge disappointment for expectation to be so hideously thrown to waste. Sadly ""Love's Labour's Lost"" is awful! The King of Navarre (Alessandro Nivola) and his friends have forsaken drink and women for three years to focus on their studies. Plans begin to fall apart however when the enigmatic Princess of France (Alicia Silverstone) and her entourage arrive. Soon love is in the air and philosophy is off the Prince's mind.<br /><br />From the start, you realise that this film is not quite Shakespeare. Cleverly relocated into a 1930s musical by Ken Branagh, the plot is still there and the script remains, but now it has been sacrificed in favour of dire musical taste. Classics like ""The Way You Look Tonight"", ""Let's Face The Music and Dance"", ""I'm in Heaven"" are all destroyed by weak singing and a strong feel that they just don't belong here.<br /><br />Aside from weak singing, we are also treated to an increasingly large number of awkward performances by regular stars. Ken Branagh and friends might enjoy making this film, but they provide us with a stomach turning collection of roles.<br /><br />The main eight actors (four men & four women) are all equally dire, and the only positive on their behalf is a vast improvement on the truly dreadful Timothy Spall.<br /><br />In fact, only one individual leaves the film worthy of any praise and that's the consistently magnificent Nathan Lane. Lane has proved over the years that he is a comedy genius and in this feature he once again adds an air of humour to the jester Costard.<br /><br />There's little else to be said really. ""Love's Labour's Lost"" deserves mild praise for Branagh's original take on an old tale. Unfortunately though, that's where the positives end. Weakly acted, performed, sang and constructed, ""Love's Labour's Lost"" is perhaps the weakest Shakespeare adaptation of the last forty years. It should be avoided like the plague and should never have been made. A poor, disappointing choice by Branagh and here's hoping his next effort is better.",0 +13337,"Waiting to go inside the theathre with tickets in my hand, I expected an interesting sci-fi fantasy movie which could finally feed my appetite of movies regarding robot-technology, instead I went disappointed by each aspect of it, once more proving that stunning special effects can't help a boring plot, which by my opinion was the worse in this year. Acting in this movie also dissatisfied me, Will Smith didn't show anything new in this movie, yet I never saw his acting to change since ""Men In Black"" which was his only success by my opinion. He had to retire since than, not spoiling his name with titles like ""I,Robot"" and ""Men In Black 2"". 4/10",0 +2449,"One can only imagine the film Mr. Welles might have finished without the interference of the studio! This film is a flawed Welles, but worth every minute of it because one can see the greatness of perhaps America's best motion picture director of all times!<br /><br />We can see the toll it took on Orson Welles the filming of this movie. The story has a lot of holes in it, perhaps because of the demands of the studio executives that didn't trust the director. <br /><br />It is curious by reading some of the opinions submitted to IMDB that compare Orson Welles with the Coen brothers, Roman Polanski, even Woody Allen, when it should be all of those directors that must be regarded as followers of the great master himself. No one was more original and creative in the history of American cinema than Mr. Welles. Lucky are we to still have his legacy either in retrospective looks such as the one the Film Forum in New York just ended, or his films either on tape or DVD form.<br /><br />Rita Hayworth was never more lovingly photographed than here. If she was a beauty with her red hair, as a blonde, she is just too stunning for words. Everett Sloan and Glenn Anders made an excellent contribution to the movie.<br /><br />The only thing that might have made this film another masterpiece to be added to Orson Welles body of work, was his own appearance in it. Had he concentrated in the directing and had another actor interpret Michael O'Hara, a different film might have been achieved altogether. Orson Welles has to be credited for being perhaps a pioneer in taking the camera away from the studio lot into the street. The visuals in this film are so amazing that we leave the theater after seeing this movie truly impressed for the work, the vision and the talent he gave us.",1 +16454,"I have a high tolerance for the weird, but frankly some movies go way, way beyond weird--so far that they make your brain hurt. This is such a film. Trying to understand it or even explain it is impossible and I think the film is best understood while taking drugs--it's that incomprehensible.<br /><br />The film begins with some very cute Japanese animation involving a cat. However, out of the blue, tons of twisted and occasionally disturbing things occur--making me wonder if I am losing something in the translation. However, even if this is so, why did we need to be treated to images of a magic trick involving dismembering a lady with a clever, defecation, puking, lighting animals on fire, etc.. All this really seemed random and pretty awful. Oddly, and I don't know why, some see this as a work of genius. I just don't get that.",0 +16703,"I agree with most if not all of the previous commenter's Tom (bighouseaz@yahoo.com). The Zatoichi series is a great character study combined with great sword fighting and excitement.<br /><br />I have seen Zatoichi 1-13,15,16; I believe 14 has not been released on Zone 1 (usa). Zatoichi the Outlaw was disappointing. The story line was complicated, and seemed to be a hodgepodge of many previous Zatoichi story lines. At one point, I was wondering if I was not seeing a remake of a previous Zatoichi film.<br /><br />This film was disappointing because it started to depend on effects (a head rolling, limbs severed, blood) and less on the nobility of the Zatoichi character. All the previous films succeeded based on the storyline and action, and won a great following without having to resort to effects.<br /><br />I am just hoping that the remaining Zatoichi films do NOT follow the same trend. This is the first Zatoichi film from his studio. I highly recommend all the previous Zatoichi films -- and recommend them.",0 +21903,"While I certainly consider The Exorcist to be a horror classic, I have to admit that I don't hold it in quite as high regard as many other horror fans do. As a consequence of that, I haven't seen many of The Exorcist rip-offs, and if Exorcismo is anything to go by, I'll have to say that's a good thing as this film is boring as hell and certainly not worth spending ninety minutes on it! In fairness to the other Exorcist rip-offs, this is often considered one of the worst, and so maybe it wasn't the best place for me to start. It's not hard to guess what the plot will be: basically it's the same as the one in The Exorcist and sees a girl get possessed by a demonic spirit (which happens to be the spirit of her dead father). The village priest is then called in to perform the exorcism. Like many Spanish horror films, this one stars Paul Naschy, who is pretty much the best thing about the film. Exorcismo was directed by Juan Bosch, who previously directed the derivative Spanish Giallo 'The Killer Wore Gloves'. I haven't seen any of his other films, but on the basis of these two: I believe that originality wasn't one of his strong points. There's not a lot of good things I can say about the film itself; it mostly just plods along and the exorcism scene isn't worth waiting for. I certainly don't recommend it!",0 +12983,"With these people faking so many shots, using old footage, and gassing animals to get them out, not to mention that some of the scenes were filmed on a created set with actors, what's to believe? Old film of countries is nice, but the animal abuse and degradation of natives is painful to watch in these films. I know, racism is OK in these old films, but there is more to that to make this couple lose credibility. Portrayed as fliers, they never flew their planes, Martin Johnson was an ex-vaudevillian, used friends like Jack London for financial gain while stiffing them of royalties, denying his wife's apparent depression, using her as a cute prop, all this makes these films unbearable. They were by no means the first to travel to these lands, or the first to write about them. He was OK as a filmmaker and photographer, but that's about it.",0 +12840,"After watching a dozen episodes, I decided to give up on this show since it depicts in an unrealistic manner what is mathematical modeling. In the episodes that Charlie would predict the future behavior of individuals using mathematical models, I thought that my profession was being joked about. I am not a mathematician, instead a chemical engineer, but I do work a lot with mathematical models. So I will try to explain to the layman why what is shown is close to ""make-believe"" of fairy tales.<br /><br />First, choosing the right model to predict a situation is a demanding task. Charlie Eppes is shown as a genius, but even him would have to spend considerable time researching for a suitable model, specifically for trying to guess what someone will do or where he will be in the near future. Individuals are erratic and haphazard, there is no modeling for them. Isaac Asimov even wrote about that in the 1950's. Even if there were a model for specific kind of individual, it would be a probabilistic (stoichastic) one, meaning it has good chance of making a wrong prediction.<br /><br />Second, supposing the right model for someone or a situation is found, the model parameters have to be known. These parameters are the constants of the equations, such as the gravity acceleration (9.8 m/s2), and often are not easy to determine. Again, Charlie Eppes would have to be someone beyond genius to know the right parameters for the model he chooses. And after the model and the parameters are chosen, they would have to be tested. Oddly, they are not, and by miracle, they fit exactly the situation that is being predicted.<br /><br />Third, a very important aspect of modeling is almost always neglected, not only by Numbers, but also by sci-fi movies: the computational effort required for solving these models. Try to make Excel solve a complex model with many equations and variables and one will find doing a Herculean job. Even if Charlie Eppes has the right software to solve his models, he might be stuck with hardware that will be dreadfully slow. And even with the right software/hardware combination, the model solution might well take days to be reached. He solves them immediately! I could use his computer in my research work, I would be very glad.<br /><br />As a drama, it is far from being the best show. The characters are somewhat stereotyped, but not even remotely funny as those in Big Bang Theory are. The crimes are dull and the way Charlie Eppes solves them sometimes make the FBI look pretty incompetent.<br /><br />For some layman, the show might work. For others, the way things are handled makes it difficult to swallow!",0 +7932,"'The Italian' is among the great or near-great films of 1915 that are available today. The year was a turning point for the feature-length film, especially in America: Lois Weber's 'Hypocrites', Cecil B. DeMille's 'The Cheat' and, of course, D.W. Griffith's 'The Birth of a Nation' set new benchmarks for the art. Additionally, that year, Russian filmmaker Yevgeni Bauer made two of his best pictures, 'After Death' and 'Daydreams'. The French serial 'Les Vampires' also has its admirers today, although I disagree with them. The emergence of the feature-length film was led by Europe, mainly Denmark, France and Italy, but dominance of this market and, to a degree, the art shifted to across the Atlantic in 1915.<br /><br />The most overriding artistic achievement of 'The Italian' is its stunning and often innovative cinematography. There are some picturesque sunsets, mobile framing, including a brief overhead angled shot of the Italian racing to buy a wedding ring and another shot of him holding onto a moving car, and, in general, there is wise use of varied camera angles and expert lighting throughout. An especially amazing shot is a close-up of the Italian enraged as he slowly approaches the camera for an extreme close-up, in reference to D.W. Griffith's 'Musketeers of Pig Alley' (1912). He's so enraged his environment even begins to shake around his anger.<br /><br />Unfortunately, the cinematographer appears to be unknown. The director, although originally without credit in the film, is now known to have been Reginald Barker. Five or so of his other films made for Ince are also available today, but are rather unremarkable. 'Civilization' (1916), which he worked on, was a large production, but a deeply flawed movie. By the way, I'd guess that one or more of the various cinematographers who worked on 'Civilization' also photographed 'The Italian'.<br /><br />Moreover, the entire production is very advanced for then. Venice and New York are well rendered despite the film being shot in Los Angeles (for romanticized Venice) and San Francisco (for the ethnic slums of New York). There are extensive flashbacks, although perhaps one or two too many. I especially like the clever framing of the narrative as being read in a book by a character played by the same actor, George Beban, who is also the lead in the inner, main narrative. The reading of the story is further briefly framed by the opening at the beginning and closing at the end of curtain drapes, à la the theatre, which is reflected within the inner story during the revenge climax in the child's room, with the opening and closing of window curtains. Parallel editing, in-camera dissolves and irises and such are handled expertly. Additionally, Beban and Clara Williams, as his wife, play their parts well.<br /><br />On the other hand, 'The Italian' does have a few drawbacks. The film's early moments of comedy clash rather disharmoniously with the latter parts of harsh and heavy melodrama, although the environmental changes from romanticized Italy to naturalistic New York works wellmostly because it's supported by the lighting and photography. The harsh dissolution of the American dream in this film, enhanced by the stark photography, must have been poignant to the immigrant classes who comprised a disproportionately large population of the movie-going public back then. The Corrigan character should have been foreshadowed more; his brief introduction campaigning for another politician seems inadequate for his later centrality to the Italian's revenge. In addition, the filmmakers were either medically naïf or careless to not explain the lack of breastfeeding of the infant and the unwarranted faith in the healing powers of quietness for the other child. Aside from the deficiencies in plot, 'The Italian' is exceptionally well made.",1 +22588,"So far Nightmares and Dreamscapes has been erratic and disappointing. The first segment, directed by Brian Henson, may have offered little in the way of groundbreaking storytelling or real scares, but at least it was well-directed, suspenseful, and visually interesting, with solid acting by William Hurt and very impressive special effects for a mini-series.<br /><br />However, the second story in the series was just dreadful, and not in the good way. The screenplay is bad, requiring the shallow, unlikable protagonists to act illogically in order to move the plot, and having characters ramble on endlessly for the purposes of clunky, unnecessary exposition. The acting is overdone and unconvincing, and I felt far more empathy for a cold-blooded killer in the first story than for the newlywed couple in the second. The director used a million tricks to try to make the narrative spooky, but with the amateurish acting and writing, the end result looks like a freshman-year film school project, with camera moves for their own sake, and little in the way of plot or tension.<br /><br />If the rest of the series continues like this, I'll be sorely let down. I look forward to William H. Macy's installment, and hope he gets a decent director and screenwriter for his segment. So far the quality is far too inconsistent to predict either way.",0 +12624,"Horrible acting, Bad story line, cheesy makeup, and this is just the tip of the iceberg. I have never seen a worse movie in my life, 5 minutes in I decided to fast forward to see if anything redeeming would happen... It didn't. (Aside from a nice breast shot) The movie apparently was filmed in some furniture warehouse, and the same warehouse was used for at least 90% of the sets. You even see this same red chair in several different ""locations"" If you are going to make a film at least rent an office building and an apartment, not some warehouse which will echo all your actor's dialog.. (Note to producers) Renting a small office space and an apartment for a month is much cheaper than an entire warehouse, and both are quite a bit more versatile and believable) If you spend your money to rent this people I hope you got it with a return guarantee... You will be demanding your money back... I only spent $2.99 to rent this tonight and I feel ripped off.",0 +2766,Allen and Julie move into a cabin in the mountains after their daughter is murdered one night. No one knows who killed the little girl but it's why they moved to the mountains. So the couple moves into this cabin and it's haunted by people who killed themselves there and no one in the nearby town wants to talk about it.<br /><br />This movie has a lot of creepiness to it and it has a lot of parts that made me jump. Some of the parts are predictable but once in a while there is a part I didn't expect. It was a pretty good movie that wasn't the scariest movie in the world but it was still scary enough to make it pretty good.<br /><br />I also liked the ending because it left the viewer to decide how it ends. It is also kind of a sad movie as well but a well done horror movie.,1 +22643,Animal Farm (1954) was a very good read about the dangers of totalitarianism. How good ideals can be changed and distorted by those who are ignorant or rule with an iron fist and an empty head. Sadly this movie does not portray either of these. What we're shown is a propaganda piece with a lot of finger waving and pointing. The animation and the direction were good considering the budget and the time period but the very essence of George Orwell's novel is sorely missing.<br /><br />If you're one of those who want to see how not to adapt a novel or are just interested in seeing an adaptation of this brilliant novelette then by all means watch. I just found this one to be somewhat mediocre. Just one man's opinion however.<br /><br />The remake is a notch below but not by much.,0 +9351,"I couldn't keep from commenting after reading the very short ""Not bad"" commentary. This movie is much better than just not bad. The acting is stellar, even from the children in the cast, who don't play cute or anything else but act just like my son's friends. The movie is smart and expects it's audience to be as well. The double back flash story lines are imaginative and contribute to the story rather than act as time filler. I watched this movie with my kids and then I watched it again by myself a few days later. If you have kids and are sick to death of movies that inspire a diabetic coma with their syrupy sweetness, then check out ""Holes."" My 6-year-old enjoyed it as much as my 11-year-old, and my husband and I enjoyed it as much as the two of them. How many movies can you say that about?",1 +8477,"Atlantis: The Lost Empire is a better movie than I thought. I never thought this movie would lead to my expectations. True, this movie started slow, but as the movie wore on it became more to my liking. The story takes place in 1914 and is about a guy named Milo. Milo believes in the fabled Atlantis. Along with friends of his grandfather, he embarks on an amazing adventure of his own. Along the way, he must endear friendship, betrayal, trust, and more. The voice cast is great. They surely know how to carry movies with only their voice talent. The music is nothing special but likable anyway. The animation is not the best, but it is still good enough. Overall, this is a good family movie for all ages. I rate this movie 9/10.",1 +7339,"Running Man isn't a great movie, in fact it's kinda silly. But it delivers what you want in an Arnie movie and that is action and entertainment. I don't see how anyone couldn't enjoy this picture, it's so silly and over the top, that it almost makes fun of itself. By the way, this is probably one of the most quotable Arnie movies out there.",1 +16040,"The first half hour or so of this movie I liked. The obvious budding romance between Ingrid Bergman and Mel Ferrer was cute to watch and I wanted to see the inevitable happen between them. However, once the action switched to the home of Ingrid's fiancé, it all completely fell apart. Instead of romance and charm, we see some excruciatingly dopey parallel characters emerge who ruin the film. The fiancé's boorish son and the military attaché's vying for the maid's attention looked stupid--sort of like a subplot from an old Love Boat episode. How the charm and elegance of the first portion of the film can give way to dopiness is beyond me. This film is an obvious attempt by Renoir to recapture the success he had with THE RULES OF THE GAME, as the movie is very similar once the action switches to the country estate (just as in the other film). I was not a huge fan of THE RULES OF THE GAME, but ELENA AND HER MEN had me appreciating the artistry and nuances of the original film.",0 +17595,"This movie was so predictable. Its a complete rip off of those, ""I was abused by daddy I'm gonna kill women"" movies. Stupid scenes, bad acting, unoriginal storyline, really low budget piece of crap film.<br /><br />Don't waste your time people. Trust me.<br /><br />My rating: 0/5.0",0 +18467,Absolutely horrific film. Ameteurish and it isn't funny at all. Lead character played by Mehmet Ali Erbil is very annoying. Edits by E.T and star wars is just plain stupid.<br /><br />Actor Yilmaz Goksal is the only good think about this movie. He should master his English and move to Hollywood. Hollywood can not find an actor with his qualities. Other than Goksal this movie is a garbage.<br /><br />Director Gani Mujde is a comic writer and this movie is his worst written work to this date.<br /><br />Music of Cem Karaca is another plus of this waste of money. Actor Sumer Tilmac also have some presence. Actor who plays the three sons has no talent what so ever.,0 +22540,"I've noticed how all the other reviews of this film mention how ""wholesome"" and ""entertaining"" it is. These people need to get out of the house more often. I don't know why they're shilling for this vapid, insipid, brainless piece of fluff. Pat Boone has absolutely no acting talent whatsoever, and his ineptness is exceeded only by that of his co-star Pamela Austin, a former model (yet one more reason to outlaw the insidious practice of inflicting talentless models on an unsuspecting moveiegoing public, a foul habit that unfortunately persists to this day). A good supporting cast (Terry-Thomas, Edward Everett Hortyon, among others) tries hard to make some sense out of this, but to no avail. I noticed that two directors shared credit, although ""credit"" isn't the word I would use (neither is ""director""). As for ""wholesome entertainment,"" there are plenty of those types of movies available without torturing your loved ones by forcing them to sit through this. Find one of those films, and skip this one.",0 +15044,I and a friend rented this movie. We both found the movie soundtrack and production techniques to be lagging. The movie's plot appeared to drag on throughout with little surprise in the ending. We both agreed that the movie could have been compressed into roughly an hour giving it more suspense and moving plot.,0 +9973,"FORBIDDEN PLANET is the best SF film from the golden age of SF cinema and what makes it a great film is its sense of wonder . As soon as the spaceship lands the audience - via the ships human crew - travels through an intelligent and sometimes terrifying adventure . We meet the unforgetable Robbie , the mysterious Dr Morbuis , his beautiful and innocent daughter Altair and we learn about the former inhabitants of the planet - The Krell who died out overnight . Or did they ? <br /><br />You can nitpick and say the planet is obviously filmed in a movie studio with painted backdrops but that adds to a sense of menace of claustraphobia I feel and Bebe and Louis Barron`s electronic music adds even more atmosphere <br /><br />I`m shocked this film isn`t in the top 250 IMDB films .",1 +20121,"It's not like I have overwhelmingly fond memories of Verhoeven's original pants-down shocker - it always struck me as a glossy, well-made airport-novel-of-a-movie. Thrilling, sexy trash, but trash nonetheless. It was also a film that tapped into a certain sexual zeitgeist. After a decade of anti-sex AIDS-induced hysteria, a film about a wildly-sexual hotbod who thrill-kills to heighten her sexual pleasure was pretty enticing stuff. Basic Instinct 2 was always going to struggle to provide the same social relevance and immediacy, so the fact that it's desperate attempts at raunchiness are so lame can sort-of be overlooked. All it really had to provide was that thin veneer of titillation and a mildly engaging story and all would have been watchable. That it resoundingly fails on so many levels, and in such a way to be a career nadir for everyone involved, is really quite extraordinary to watch. Let's state the obvious for starters - Sharon Stone is too old for the part of sexual magnet Catherine Trammell. What was so photogenic thru Verhoeven's lens looks like mutton dressed as lamb in the hands of gun-for-hire Michael Caton-Jones, who's flat, drab colours and static camera render her undeniable beauty totally moot. I like Sharon Stone a lot, but if the first film launched her career, BI2 could kill it. She has no chemistry with stuffed-shirt David Morrissey - their only sex scene is embarrassing too watch. His dough-faced mamma's boy of a character made me yearn for the swaggering, orange-skin machismo of Michael Douglas. Supporting turns by David Thewlis and Charlotte Rampling waste these fine actors on talky exposition scenes and cliché-heavy posturing. And what of the much-touted sexual shenanigans? Poorly-lit, fleetingly-glimpsed, as utterly mainstream as an episode of Desperate Housewives - the European sensibilities that Verhoeven brought to the sexual content of the first film are sorely missed. Don't watch this film for carnal thrills - there are none and what there is is tragic. The film is, as a whole, convoluted to the point of utter confusion, boring and laughable. The last 40 minutes in particular, where you come to the realisation that the film is, in fact, not going to go anywhere of interest at all, are particularly gruelling and hilarious in equal measure. As a failed sequel, Basic Instinct 2 will come to occupy similar cinematic ground as Exorcist 2 The Heretic, Beyond The Poseidon Adventure and XXX2. As a vanity project, it rivals Battlefield Earth in its misconception. As a multi-million dollar piece of Hollywood film-making, it's a travesty that will be hard to top as the years worst.",0 +2299,"This movie is great, the music ""with the exception of the very first song in the movie"" was awesome. The story line is awesome too, it's just basically a wonderfull movie, for ALL ages. I found the last battle scene awesome! Basically this was a great flick!",1 +24159,"One can deal with historical inaccuracies, but this film was just too much. Practically nothing was even close to truth, and even for the era, it was seen as silly.<br /><br />In defense of ford, it was revealed on an old talk show, that he was operating on the story as told to him by the real Wyatt Earp, who was obviously old, senile, and replayed the scene his own way. Earp told the director about the stagecoach, and how it was planned to happen during the stagecoach arrival, so despite what other historians claim, Wyat himself asserts that it was premeditated.<br /><br />This movie portrays Earp as an honest man, and also his brothers. History doesn't exactly say they were or weren't. Most people like to interject a bit of deceit and lawlessness into their characters, but that is nothing new. The truth is probably closer to them being the law abiding sorts of GUNFIGHT AT THE OK CORRAL. Men who saw it as a career, and believe me, in the old West, you didn't have time to think about too much else.<br /><br />Characters that don't exist, characters depicted dying at the corral who really didn't, all make this a weaker film. It is further weakened by Mature, who really didn't make a convincing Doc. He may be the worst cast choice ever for Doc, but at the same time we must remember that older movies were closer to the era and closer to a feel for the truth. After all, ford did get information first hand from Wyatt Earp.<br /><br />It is also weakened by the all so predictable events involving the Mexican girl. Hollywood was very pro Nazi in those days, and ready to kill off brunette women in very predictable fashion to show their patronage to Hitler idealism. This occurs in most movies until the eighties. It is no excuse, and does cheapen the art, however.<br /><br />The actors who play the Earps do well, and Brennan is always a thrill. In fact, Mature may be the only acting downside of this flick. Still, it is the weakest of the old OK Corral movies.",0 +11000,"Kalifornia came out in 1993, just as 3 of the 4 lead characters were up and coming to the levels of fame they now possess in 2006. This is a nice psycho-thriller that should appeal to all David Duchovny fans because of his dry and intelligent narratives that find their ways into his work, like with most of his episodes of the X-Files, Playing God, and Red Shoe Diaries.<br /><br />People who were put off by the heavy southern accent from Brad Pitt and Juliette Lewis' characters obviously have never spent much time in the south. For every ""Brian and Carrie"" in the south, there is an ""Adele and Early"" and in 2006, that's the real horror of this flick.<br /><br />Aside from that, I think the film was written with a cult film intention - like with Carrie's photography, it's not suitable for mass consumption. But if you have a copy of this in your personal library, I think it says something positive about your tastes for freaky movies.",1 +10159,"In the opening scenes of this movie a man shot arrows through his hotel room into another man's bathroom and blew out all the lights. This must have been very hep for 1936, but rather way way out and had nothing to do with the film, Robin Hood did not make an appearance as far as I could see. However, Bette Davis(Daisey Appleby),""The Whales of August"",'87 was very young and attractive and performed one of her best roles in a long career in Hollywood. Daisey never stopped teasing or being very sexy with her nightgowns and so called swim suit on her yacht with George Brent(Johnny Jones),""The Spiral Staircase"",'46. Daisey even proposed marriage to Johnny in a Ferris Wheel upside down and even got a black eye. Davis and Brent made a great couple, one suppose to be very rich and the other a very poor reporter. Off stage, Davis and Brent were having a real torrid love affair, which is good reason why there was sparks when these two appeared in this film. If you liked Bette Davis and George Brent, this is the film for you!",1 +5814,"As part of the celebration of the release of Casino Royale, this film with the new Bond starring in it was shown, from director Roger Michell (Notting Hill). I almost turned it off for being a bit boring, but I'm glad I stuck with it. Basically May (Anne Reid) is a single mother of Helen (Anna Wilson-Jones) who hardly sees anyone and has not had a boyfriend in years. Her daughter says that she might want to get married to her new boyfriend, Darren (Daniel Craig, of course). After knowing each other only a few days, May and Darren have a secret affair. And at her age, with a 30-something, and the new Bond?! Anyway, they obviously want to keep it a secret, but May has regrets and wonders if Helen will find out. When she does, Darren gets less hassle than May. In fact, Helen asks her permission to hit her. Also starring Peter Vaughan as Toots, Danira Govich as Au Pair, Harry Michell as Harry, Rosie Michell as Rosie and Johnny English's Oliver Ford Davies as Bruce. Very good!",1 +9272,"I had the privilege of seeing this film at a preview screening years ago, and outside the theater I was confronted by a camera crew from a local TV station looking for comments on the film. At the time, the only words that escaped my mouth were ""Awesome. Just awesome."" I like to think I can articulate myself a little better than that, but at the time I was somewhat incapable of doing so.<br /><br />The story is intriguing and thought provoking, and the acting is first rate from all the principals. This film was the first one that Terry Gilliam directed that he didn't have a hand in the writing credit for. Back with Universal after his long, arduous battle with them over ""Brazil"", Terry had achieved what he wanted most; the ""final cut"". Terry is a master craftsman, and each shot is like a beautifully conceived painting that has been constructed carefully with determination and conviction. It is only justice that such an individual should be unfettered in his attempts to convey a concept. Unfortunately, limitations still exist in such arrangements.<br /><br />The Universal Collector's Edition DVD of this film is simply amazing, although most of the bonus features aren't listed on the box. It contains among other things, a director/producer audio commentary and an informative and extremely interesting 90 minute documentary on the making of the film called ""The Hamster Factor and Other Tales of 12 Monkeys"". It tells of some of the creative pitfalls in filmmaking, including a test of mettle when preview screenings tested poorly, striking the team with feelings of self-doubt and despair. Fortunately, for all of us, they decided to change very little about the film and released it to an enormous success. <br /><br />",1 +19346,"Having not read the novel, I can't tell how faithful this film is. The story is typical mystery material: killer targets newlyweds; woman investigator falls in love with her partner and is diagnosed with a fatal disease. Yes, it sounds like a soap opera and that's exactly how it plays. The first 2/3 are dull, save for the murders and the last 1/3 makes a partial comeback as it picks up speed toward its twisty conclusion.<br /><br />Acting is strictly sub par, though it's hard to blame the actors alone: the screenplay is atrocious. During the last 1/3 you stop noticing because the film actually becomes interesting, but that's only the last 1/3. Director Russell Mulcahy is very much in his element, but there's only so much he can do with a TV budget and the network censors on his back. He's pretty much limited to quick cutting and distorted lenses, though he managed to squeeze in a couple ""under the floor"" shots during the murders in the club restroom. Unfortunately, as this is made for TV, the cool compositional details he uses so well with a wider image are nowhere to be found. Note to producers: give this man a reasonable budget and an anamorphic lens when you hire him.<br /><br />Summing it up: this film is bad by cinema standards and mediocre by TV standards(watch CSI, instead). If you're in the mood for a film like this, I've some excellent suggestions: pick up a copy of Dario Argento's ""Deep Red""(my highest recommendation; superb film), ""Opera"", or even ""Tenebre"". They're stronger in every category.",0 +18804,"Uh oh! Another gay film. This time it's showing the black side. Bet your last dollar it's gonna have an unhappy ending! But WHY? With only less than a half dozen exceptions, ALL gay films have to end in death or an ""addio"" finale. It's like all the European Film Noir releases in the 40's, 50's, 60's, and 70's. The lead...male or female must die or ride off alone into oblivion. Why in God's name must writers, directors, and producers have the audience leave the theatre feeling depressed? After all, it's supposed to be gay...not glum. Maybe the category should be changed to a 'glum' film. A large percentage of gay relationships DO last and the couples DO ride off together into the sunset! No matter who writes or produces, he only shows the down side of gay life and gives the incorrect impression of gay lifestyle. This movie just proves my point. If you rent the DVD, take an antidepressant, for here comes another 'gay' film! This is WRONG!",0 +13812,"The movie is about two stories: one is a political murder of a call-girl, the other an upper-class political party. The crossing point is the public relation character played by Al Paccino, as he is the witness of the crime and the instigator of the evening.<br /><br />If the script is terrible without any decent dialogs and the directing void of any sense of drama, the performance of Al is memorable: how many fellows can be as much convincing as a powerful and feared man (as ""The Godfather"") as here as a little servant (see also ""Donnie Brasco"").<br /><br />Actually, the big young lion has become a tired old one. This passing of ages is very moving, because it makes the audience ponders about getting old too.<br /><br />But his slowness is only a make-up because he can get back his energy in Church scene.<br /><br />Maybe it is a good thing that the movie is so awful because it put the starlight on Al's talent!",0 +134,"The movie starts something like a less hyper-kinetic, more pastiche Dead or Alive: strange underground activities are done while bodies are discovered by police officers. But when a police officer is killed, one Tatsuhito gets involved... and when he discovers that his brother Shihito is also involved, things get bloody quite fast.<br /><br />An earlier work of Miike's, Shinjuku Triad Society is still filled with his usual in the ol' ultraviolence and sadistic sex acts, though it's not one of his more eclectic or flamboyant pieces. Rather, it's a pretty well crafted bit of pulp fiction, as Tatsuhito digs his way through the underground, a maze that leads him to a gay Triad leader who sells illegally gained body organs from Taiwan and keeps an almost-brothel of young boys (one in particular the character who kills the cop at the beginning). Tatsuhito's brother is getting involved with said society, so Tatsuhito himself is forced to become a dirty cop and use similarly violent and sadistic tactics to penetrate into this sordid realm.<br /><br />What's mainly interesting about this little bit of work is the relationship Tatsuhito has with his nemesis, Wang. Tatsuhito is a Japanese born in China, later moved back into Japan, and alienated for it. Wang is a Chinese who felt alienated in China, so killed his father and developed a crime wing in Japan. Wang also is a surprisingly Shakespearian character, which is weird enough as it is, much less that you actually begin to feel sorry for him by the time his ultimate showdown with Tatsuhito comes to be. And Tatsuhito himself is a similarly tragic figure when he's forced to contend with his lack of ability to control his brother. While it would be rude to state that Miike's movies are successful mostly on their shock value, it is true that sometimes it's easy to lose track of how well Miike can create bitter, dis-impassioned characters.<br /><br />--PolarisDiB",1 +8642,"I was forced to see this because a) I have an 11 year-old girl and b) we had shown her the Bonita Granville Nacy Drew movies from the 1930s, which she thoroughly enjoyed. Personally, I didn't think it was as humorous as the 1930s flicks, but on the other hand, it wasn't the nauseating piece of intelligence-insulting fluff I feared it would be. It was an inoffensive, mildly entertaining movie. Although I'm pleased that they didn't try to ""upgrade"" Nancy to 21st Century ""hipness"" (Veronica Mars holds the title as the Modern Nancy Drew), I do think that they made her a little too bland, that they didn't do enough to develop Nancy Drew - the movie could have been titled ""Jane Doe, Girl Detective"". I have to blame the script: I think each actor did a good job with what they had to work with. I liked Emma Roberts in this role, but they gave her a made-for-TV, not theatrical release, script...",1 +8618,"This series, produced at probably the most propitious time following the events of the second World War, is on a scale of value that stands far above any individual's presumption to criticize.<br /><br />The timing of World at War's production in 1974, amounting to some three decades after the events of the war, permits an accurate relating of events in a manner uncoloured by residual propaganda and slant. The passage of thirty years allows the telling to be backed up by an impressive and fascinating panoply of the very individuals involved, ranging from some of the highest military and political figures down to the field soldiers, civilians, and such survivors of the death camps as have remained to bear witness to the unimaginable inhumanities of which civilized humans are capable. Most approaching or well into their senior years, the interviewed subjects have had enough time to reflect on their experiences and in most instances have had enough time for whatever propaganda and fervor may have affected them in the past to have receded away, leaving only the memories of what they saw and what they did.<br /><br />The information that these survivors give, strikingly reinforced by the postures and expressions they display while telling their part, give their stories all the more impact. Such names as Ira Eaker, Adolph Galland, Louis Mountbatten, Albert Speer, Gertrude Junge (Hitler's personal secretary)... the list is far too long to relate. <br /><br />Today, within the lifetime of the survivors of this enormous lesson in the hideous price of political ambition, are young people who chant the same sort of militaristic and nationalistic war promotion as led to WW2. The DVD series we discuss here ought to comprise the core of a mandatory history subject in schools, that the lessons bought at such a horrible cost in those days should not have been wasted but should be taken to heart by those who did not see firsthand the terrible price.<br /><br />I am almost done watching the 11 disk set, having seen most of the series when a local TV channel aired it more than 10 years ago. It has lost none of its poignancy to me, indeed has become even more of a magnificent chronicle of some of the very darkest days of human times.<br /><br />The highest possible rating seems unworthy of being applied to this presentation. I think the value of this series is beyond counting.",1 +11117,"I like films that don't provide the typical ""happy ending,"" and that's my main reason for my liking of this movie. Alice Marano (Danes) and her best friend Darlene (Beckinsale) are arrested in Thailand for narcotics smuggling after a tip anonymously phoned in to the Thai authorities. The film does a solid job of keeping viewers guessing as to whether (or which) of the girls was involved, and Bill Pullman is perfect as their sleazy lawyer. Jacqueline Kim turns in a terrific performance as his more kind, magnanimous wife, Yon, who is also an attorney. I wish the girls had been abused more in the prison, as another commenter has suggested, as I've heard that Thai prisons can be quite brutal. Where this film grabs me, however, is its ending. Alice subjects herself to a sentence of 96 years in total so that Darlene can be pardoned, and we (the viewers) realize that they are both innocent. Any film that defies my expectation of the ending wins extra points with me, and this well-acted drama is certainly deserving.",1 +2727,"I used to watch this show when I was a little girl. Although I don't remember much about it, I must say that it was a pretty good show. Also, I don't think I've seen every episode. However, if you ask me, it was still a good show. I vaguely remember the theme song. Everyone was ideally cast, the costume design was great. The performances were top-grade, too. I just hope some network brings this series back one day so that I'll be able to see every episode. Before I wrap this up, I'd like to say that I'll always remember this show in my memory forever, even though I don't think I've seen every episode. Now, in conclusion, when and if this show is ever brought back on the air, I hope that you catch it one day before it goes off the air for good.",1 +8034,"One of my favourite films. It has everything - rocking soundtrack, courtesy of Eddie Clark, ex Motorhead, loads of action, loads of laughs, totally ridiculous plot and the most wonderful '80's stereotypes as characters. Eddie, the put-upon nice guy, who just wants to be left alone to be different, Leslie (about as wet as they come), Nuke (the rock burn-out), Eddie's Mom (pathetic), Roger (the geek) and Ozzy as the preacher (surely he exists in America?). Then there are the boys (rich, vicious and stupid) and the girls (vacant, vain and stupid). What more could you ask for?<br /><br />Well, first of all, there's Sammi Curr, the rock star, an amalgam of every '80's badass rocker you can think of. What about that rocket firing guitar? Then there's the scene where Sammi pulls the old lady through the TV screen and smashes her up. And what does Roger do? Why, hoover her up, just like a good geek would. My favourite scene is where Tim Hainey gets his long overdue reward from Sammi via the wet finger in the plug - magic!<br /><br />If you were into rock in the '80's or just love ridiculous films like I do, then check this one out. It's available on DVD and very cheap so (trick or)treat yourself.",1 +19084,"What a load of Leftist Hollywood bilge. This movie glorifies mutiny as brave and noble if it be for pacifist principles. The fairytale ends with the pacifist character, played by Danzel Washington, actually getting promoted for his treason. What is it with these Hollywood tools? Is this still payback for McCarthyism?<br /><br />If I sound cynical it's because I am fed up with movies hawking a political agenda. The military brass in this movie are portrayed as, what else? Gung-ho war mongers. Sound familiar? Ever see a movie where the CIA or any government agency is not evil? Think about it. Yet again, Crimson Tide stresses the point. The Hackman character, U-boat captain Ramsey, comes across like a raving lunatic, until the very end when, of course he comes to his senses, does a complete 360, renounces his blood lust, suggests a promotion for the treasonous Ron Hunter, and repents by retiring from the service. A guy mutinies, takes command of your boat, puts the U.S at grave risk of receiving a nuclear first-strike, and you promote him???? What hogwash!",0 +2641,"In the hands of a more skilled director, this film would have been considered a horror masterpiece. Despite Michael ""Death Wish"" Winner's merely passable direction, the movie is interesting, original and more than a little scary.<br /><br />The script bucks more than one horror cliché off its back (several it can't shake) including Chris Sarandon as the heroine's boyfriend who actually listens to her as she insists that eerie things are going down. Burgess Meredith is delightful as the lovably insane neighbor. Eva Gardner is haunting with a young Beverly D'Angelo as her mute and disturbed lesbian lover. John Carradine does a heck-of-a job sitting in a chair. And watch out for a brief cameo from an unknown-at-the-time Chris Walken! This movie is creepy and creative. The plot twists are lovely, if a tad predictable. The climax, of which I will give no detail, is disturbing and quite impressive. Again a better director could have done more with it, nonetheless it is quite satisfying - at least to those with the sensibilities of seventies horror.<br /><br />If you like modern overproduced body-counting torture-fantasy, you won't like this. There is almost no gore. The direction is quite spartan. The effects are few, although there's some delightful makeup near the end - most of which actually isn't makeup...but perhaps I've said too much already.<br /><br />I've rated this a little higher than its quality may justify, but I enjoyed it as much as any ""8"" film that I've seen.",1 +20482,"The saddest thing about this ""tribute"" is that almost all the singers (including the otherwise incredibly talented Nick Cave) seem to have missed the whole point where Cohen's intensity lies: by delivering his lines in an almost tuneless poise, Cohen transmits the full extent of his poetry, his irony, his all-round humanity, laughter and tears in one.<br /><br />To see some of these singer upstarts make convoluted suffering faces, launch their pathetic squeals in the patent effort to scream ""I'm a singer!,"" is a true pain. It's the same feeling many of you probably had listening in to some horrendous operatic versions of simple songs such as Lennon's ""Imagine."" Nothing, simply nothing gets close to the simplicity and directness of the original. If there is a form of art that doesn't need embellishments, it's Cohen's art. Embellishments cast it in the street looking like the tasteless make-up of sex for sale.<br /><br />In this Cohen's tribute I found myself suffering and suffering through pitiful tributes and awful reinterpretations, all of them entirely lacking the original irony of the master and, if truth be told, several of these singers sounded as if they had been recruited at some asylum talent show. It's Cohen doing a tribute to them by letting them sing his material, really, not the other way around: they may have been friends, or his daughter's, he could have become very tender-hearted and in the mood for a gift. Too bad it didn't stay in the family.<br /><br />Fortunately, but only at the very end, Cohen himself performed his majestic ""Tower of Song,"" but even that flower was spoiled by the totally incongruous background of the U2, all of them carrying the expression that bored kids have when they visit their poor grandpa at the nursing home.<br /><br />A sad show, really, and sadder if you truly love Cohen as I do.",0 +10333,"The most agile fat guy in martial arts does it again. An early Sammo film that has him imitating his character's hero, Bruce Lee, Sammo is amazingly Lee like in his actions and fighting. The way he slips into Bruce's style and then back to his own, more familiar kung fu is a joy to watch and shows how accomplished and adaptable he is at his art. Throw in a bit of slapstick humour so beloved of this type of flick and this a movie that has it all - comedy (some unintentional, like the fake black guy), action and some incredible fight scenes.<br /><br />A great beer and buddies movie that is worth an hour and a half of anyone's time.",1 +16464,"Kid found as a baby in the garbage and raised at a martial arts academy has a knack for sinking baskets. With the help of the man who found him he gets in to college and is promoted to the championship as he searches for his real parents. Infinitely better in pieces action comedy is a real mess as a whole. It seems to be striving for a hipper basketball version of Shaolin Soccer, but the comedy is scatter shot, its focus wanders more than a Chihuahua with ADD on quadruple espresso. I kept asking ""What am I watching"". I watched it from start to finish and I still don't know what the hell happened. Its a shame since there are some great action scenes, some amusing jokes and the occasional moment, but nothing, none of it ever comes together, I'd take a pass.",0 +22228,"Good actors and good performances can't mask a pointless script, bad dialogue, and patterns of behavior spiraling into nothing you'd care about. The most interesting character is David Berkowitz. No character development - no growth, no interest, just some suffering for no particular reason, teaching us nothing and not even bothering to entertain.",0 +10094,"Canto 1: How Kriemhild Mourned Over Siegfried and How King Attila Woos her Through his Ambassador Rüdiger von Bechlarn: Kriemhild (Margarete Schön) insists on having the head of the killer of her beloved husband, Hagen Tronje (Hans Adalbert Schlettow), but her brother, King Gunther (Theodor Loos), refuses her request. When King Attila of the Huns woos Kriemhild through his ambassador Rüdiger von Bechlar, she makes him promise through oath in the name of his king that no man would ever offend her. Hagen Tronje hides the Nibelungen treasure in the bottom of a lake.<br /><br />Canto 2: How Kriemhild Takes Leave from her Homeland and How She Was Received by King Attila: Kriemhild brings some earth from where Siegfried died, and travels to the court of the Huns, where she is welcomed by Attila himself, who also promises through oath to defend her.<br /><br />Canto 3: How King Attila Besieged Rome and How Kriemhild Summoned her Brothers: When Kriemhild delivers a baby boy, Attila returns to his realm and asks Kriemhild what she would like most to please her. She asks him to invite her brothers to come to his kingdom.<br /><br />Canto 4: How Kriemhild Receives her Brothers: Kriemhild insists on having the head of Hagen Tronje, but her brothers keep loyalty to their friend and again do not accept her request.<br /><br />Canto 5: How the Huns Celebrated the Summer Solstice With the Nibelungen: Kriemhild asks Attila to kill Hagen Tronje, but he refuses since in accordance with the laws of the desert, a guest is considered sacred. Kriemhild offers gold to the Hums for the head of Hagen Tronje. There is a fight, and Hagen Tronje kills Attila's son.<br /><br />Canto 6: The Nibelungen's Distress: The Huns lose the battle against the Nibelungen, but keep them under siege inside Attila's castle. Kriemhild promises to spare their lives provided they deliver Hagen Tronje, but her brother Gunther tells that German people are loyal with their friends.<br /><br />Canto 7: The Nibelungen's End: After the death of Rüdiger von Bechlarn, Giselher and Gernot, Hagen Tronje and Guhther are finally captured. Kriemhild kills Hagen Tronje, ending her revenge with the destruction of the Nibelungen.<br /><br />The conclusion of the poetic saga of Siegfried through ""Kriemhild's Revenge"" is also told through seven dramatic cantos. The nature of the first part is a magnificent tale of fantasy, adventure, romance and betrayal; the second part is a dramatic story of hate, revenge and loyalty. The solid screenplay with a perfect development of the characters, the excellent performances of the cast and the awesome direction of Fritz Lang produced another epic ahead of time. Margarete Schön is impressive with a total different woman, obsessed and inflexible in her revenge wish. The costumes that Kriemhild wears are also very impressive, and her acting is based on her face and look. I was a little disappointed with the reaction of Attila after the death of his only son, since I found it too passive. My vote is eight.<br /><br />Title (Brazil): ""Os Nibelungos Parte II: A Vingança de Kriemshild"" (""The Nibelungen Part II: Kriemhild's Revenge"")",1 +14253,"I have to admit, I don't remember much about the characters or the story, though I'm not sure there was one, I was soooo irritated by this movie that I had a bit of a hard time focusing on it. How can you name a movie ""Keys to Tulsa"" and then film it in Texas? The flat desert country around Arlington ( I think that was the location) in no way resembles the green rolling hills around Tulsa, and a celebrity in Tulsa would have a much nicer neighborhood to live in. Obviously no one in the movie has EVER BEEN to Tulsa or else they would have realized how nothing in the movie even resembled it. Hadn't anyone at least seen Rumblefish or The Outsiders? I know this sounds picky but I can't help it. I watched this because I love James Spader and I usually find Eric Stotz interesting. But even these two intriguing actors could not liven up this meandering,and mean story of self-involved people who are NOT IN TULSA!! I'm sorry, it can't be more expensive to film in Oklahoma. What if ""To Live and Die in LA"" had been shot in Toronto? Would that suck? Well so does this.",0 +17614,"Pretty bad movie offers nothing new. The usual creaks and moans attempt to make-up for a muddled, but thin story. Acting is barely above pathetic. Why Liam Neeson signed on for this is anyone's guess. Owen Wilson truly turns in one of the worst performances in recent horror-movie history. Catherine Zeta Jones is fun to look at and not much else although Lili Tayor did an above-average job. The special effects were fairly memorable and the house itself was breathtaking and hauntingly gorgeous. However they can't makeup for the poor acting and the storyline which appears to have been thrown together at the last minute. Don't bother.",0 +20517,"Just think, it cost a total of $250,000 to make ""Clerks"". How the hell did they spend $45 Million to make this glorified music video? A practically unknown cast, two or three sets, no special effects that I could see... I know, it must have been spent on that expertly crafted, economical, tension filled screenplay. Shoot, that bar set must have cost a bundle. Anyway, I guess Jerry Bruckheimer wouldn't be caught dead producing anything for less. I'm just surprised he didn't blow up anything.<br /><br />Anyway, it wasn't an awful film I guess. The female leads seemed to have some good chemistry and the soundtrack was OK. IMO It just seems a pity that this rather mediocre project could have been made for $5 Million without any loss to the production, and 6 more $5 million dollar indy films of merit could have been made as well.",0 +6871,"In New Orleans, an illegal immigrant feels sick and leaves a poker game while winning the smalltime criminal Blackie (Walter Jack Palance). He is chased by Blackie and his men Raymond Fitch (Zero Mostel) and Poldi (Guy Thomajan), killed by Blackie and his body is dumped in the sea. During the autopsy, the family man Lieutenant Commander Dr. Clinton Reed (Richard Widmark) of the U.S. Public Health Service finds that the dead man had pneumonic plague caused by rats and he needs to find who had any type of contact with the man within forty-eight hours to avoid an epidemic. The City Mayor assigns the skeptical Captain Tom Warren (Paul Douglas) to help Dr. Clint to find the killers that are infected with the plague and inoculate them.<br /><br />""Panic in the Streets"" discloses a simple story, but it is still effective and with a great villain. The engaging plot has not become dated after fifty-seven years. Jack Palance performs a despicable scum in his debut, and the camera work while he tries to escape with Zero Mostel is still very impressive. My vote is seven.<br /><br />Title (Brazil): ""Pânico nas Ruas"" (""Panic in the Streets"")",1 +16659,"What a joke. I am watching it on Channel 1 and I think watching paint dry is much more entertaining. What happened to Caspar Van Dien that got him roped into this nightmare. Terrible acting, very boring plot and terrible direction. It so terrible, it's funny. It's suppose to be full of suspense, but it more a comedy. If you want to see terrible acting, ridiculous script writing and sub-par plot, check this movie out. If I was Van Dien, I would not only ask for my 10% from my agent, but fire the bastard in the process. What a turkey. It's not even fit to be on MST 3K!! It would be a good movie to cure you insomnia. I especially love the part where Van Dien is throw overboard and then makes it back in just a few minutes! I can only image that this was written by non-union writers taking advantage of the writer's strike. What a horrible movie!!!",0 +7571,"I'm a fan of C&C, going back to their records, and liked this movie, but at one point in the mid-1980's on cable television in San Jose California, it was aired with an alternate plot line that destroyed the entire point of the movie. All references to marijuana were replaced with ""diamonds"". The bag that ""Red"" drops to Chong has diamonds in it instead of marijuana, but the conversation still remains the same (""...it's worth ~$3000/lb""). There is also a subplot in which clips of aliens on a ship were added observing C&C, and talking to each other about getting the diamonds. At the end, instead of ""space coke"", it's something else. I'm not sure who created this version, but it was horrible, and obvious that they were attempting to make it family/child friendly. It would have been better if that network had not aired it at all.",1 +2501,"It has taken me a while to watch this version as unfortunately I don't seem to be able to rent it in the video store, only the other version but I fell in love with it. I was always borderline with the other Emma. Gwenneth and Toni Collette, as they are not British naturally have to put on the accent, and well to me it doesn't seem natural. It seems put on. Sorry but don't think Toni and Gwenneth did a brilliant job there. I could not warm to any of the characters, but this version is more heart warming and more the type of person I imagined Emma to be. It is definitely the version I will come back to from now on. I was disappointed that Mr Knightley was not better looking, but he is convincing. I also like Jane Fairfax better (played by Olivia Williams). I never warmed to her in the movie version, but she is better portrayed in this version. Come to think of it, (besides Mr Knightley) all characters are better played, and a lot less over the top. Unfortunately both came out around same time and the Paltrow version got more publicity. Pity...... I also love the new scene at the end. Well done to Kate Beckingsale! Therefore, if you are a Jane Austen fan, don't forget to watch this one.",1 +146,"In the very first episode of Friends, which aired 22 Sept 1994 ""The One Where Monica Gets A Roommate"" there is a song playing as Rachel sits in the window towards the end of the show, the line that plays is: ""If you ever need holding"".... does anyone know the artist singing or the title of the song? It is seems as if it is a great song....I would love to get a copy of it. Thanks for the assistance. I am looking for the album/cd it is on so I can purchase it. <br /><br />I have the shows which are available for purchase and enjoy this show over and over again. It just seemed to be believable...thanks for the hours of entertainment you have provided over the years.",1 +5511,"Robert Altman is my favorite American director. I must admit that I have enjoyed the films that are usually scorned: ""Quintet"", if only for giving me the pleasure of seeing a grown-up and beautiful Brigitte Fossey, who was unforgettable as the little girl in ""Forbidden Games""; ""HealtH"", for having Lauren Bacall, Carol Burnett, Alfre Woodard and Glenda Jackson, all in the same cast; ""Popeye"", for that splendid and surreal world, Shelley Duvall's Olive Oyl and the wonderful Malta locations; ""O.C. & Stiggs"", for its proposal of an anti-""adolescents flick""; ""Beyond Therapy"", for all its lunacy and for the presence of Genèvieve Page, who for all her effort to look Parisian chic is taken for a travestite... I have even enjoyed his one-act TV movies, like ""The Dumb Waiter"" and ""The Laundromat"". When there is not much plot to develop in his films, you have wonderful performances, from Burnett, John Travolta, Kim Basinger or Jane Curtin. I perceive and enjoy the different approach and description he makes of the many different cultures of the United States. It is a pity that his genius is seldom appreciated, and that he is always forgotten when the time comes for giving out American prizes and awards. He is not your typical mainstream purveyor of fantasies. He is more of a maverick. So it is not surprising for me to find so many bad comments posted here about ""The Gingerbread Man"", his most 'mainstream' effort to date and to my knowledge. I did not know there were so many people who thought like Leonard Maltin, who does not like Altman at all. In this case, one may dislike ""The Gingerbread Man"", but for me the reason has more to do with Grisham than with the director-screenwriter. Some of Altman's trademarks are here: improvised dialogue, great performances, a funny lawyers' office with typical irreverent receptionist and secretary. While some people find it boring, I found the first act fascinating, thanks also for the great cinematography by Changwei Gu, the man who shot ""Red Sorghum"", ""Ju Dou"" and ""Farewell My Concubine"". He has a way of showing us the same things we see in other American movies, but under a different light. Through his ""foreigner's gaze"", almost everything seems new and different. In this first act, things were so logical and true! Wait until you get older. You may get in trouble if you fall under the spell of someone younger and beautiful as Embeth Davidtz. I know for myself what I have done fascinated by someone who is younger than I am! Then you have Robert Duvall's repellent, menacing and mysterious character, while that Geraldo storm is threatening Savannah. The second act gets a little phony and even funny, because Altman may have conducted it with a grin. I remember laughing aloud in several instances with his ironic remarks. I think he was applying a bit of Brecht, distancing us, preparing us for the third act, which is plain Hollywood pastiche. Altman does it with expertise. Being a wise man, and an intelligent director, luckily he did not fall into the traps of today's action movies. He was directing a tale of lust, greed and death. I was not disappointed a bit with the movie. If I give it a nine instead of 10, it is because of Grisham. The American reader has turned him into a best-selling author. So why complain? Maybe we should thank Altman for showing us the seams in his stories, the dullness, the flatness and the silliness of them all. However, he does it with so much gusto and humor, that I cannot but disagree with the negative comments. For me, these persons saw another movie... And vice versa.",1 +13485,"This film is absolutely horrific. One of the worst movies I've ever seen. The story does nearly not exist, the characters are full of stereotypes and the Special-FX only make you laugh. The only remarkable thing about this movie is the guest appearance of the Rapper Coolio as some kind of police officer.<br /><br />If this film was supposed to be a comedy I didn't quite get the point. If you want to watch this movie: please get yourself drunk first and then prepare for some good laughs...especially when the first Special-FX appear on the screen.<br /><br />But if you like trash movies made on the cheap: this film is a must-see for you.",0 +20549,"Thunderbirds (2004) <br /><br />Director: Jonathan Frakes <br /><br />Starring: Bill Paxton, Ben Kingsley, Brady Corbet <br /><br />5 4 3 2 1! Thunderbirds are GO! <br /><br />And so began Thunderbirds, a childhood favorite of mine. When I heard that they were going to make a Thunderbirds movie, I was ecstatic. I couldn't wait to see Thunderbird 2 roar in to save people, while Thunderbird 4 would dive deep into the you get the idea. I just couldn't wait. Then came August 2004, when the movie was finally released. Critics panned it, but I still wanted to go. After all, as long as the heart was in the same place, that was all that mattered to me. So I sat down in the theater, the only teenager in a crowd of 50 everyone else was over thirty and under ten. Quite possibly the most awkward theater experience that I have ever had <br /><br />The movie (which is intended to be a prequel) focuses on Alan Tracy (Brady Corbet), the youngest of the Tracy family. He spends his days wishing that he could be rescuing people like the rest of his family, but he's too young. One day, he finally gets his chance when The Hood (Ben Kingsley) traps the rest of his family up on Thunderbird 5 (the space station). This involves him having to outsmart The Hood's henchmen and rescue his family in time before The Hood can steal all of the money from the Bank of England.<br /><br />Trust me, the plot sounds like a regular episode of Thunderbirds when you read it on paper. Once it gets put on to film what a mess we have on our hands. First off, the film was intended for children, much like the original show was. However, Gerry Anderson treated us like adults, and gave us plots that were fairly advanced for children's programming. This on the other hand, dumbs down the plot as it tries to make itself a ripoff of the Spy Kids franchise. The final product is a movie that tries to appeal to fans of the Thunderbirds series and children, while missing both entirely. Lame jokes, cartoonish sounds, and stupid antics that no one really finds amusing are all over this movie, and I'm sure that Jonathan Frakes is wishing he'd never directed this.<br /><br />Over all, everyone gave a solid performance, considering the script that they were all given. Ben Kingsley was exceptional as The Hood, playing the part extremely well. My only complaint about the characters is about The Hood's henchmen, who are reduced to leftovers from old Looney Tunes cartoons, bumbling about as, amazingly enough, the kids take them on with ease.<br /><br />What's odd about this movie is that while I was watching the movie, I had fun. But once the lights went up, I realized that the movie was fairly bad, I was $8 lighter, and two hours of my time were now gone. A guilty pleasure? Perhaps. Nonetheless, Thunderbirds is a forgettable mess. Instead of a big ""go"", I'm going to have to recommend that you stay away from this movie. If the rest of movie could have been like the first ten minutes of it, it would have been an incredible film worthy of the Thunderbirds name. However, we get a movie that only die-hard Thunderbirds fans (if you'd like to watch your childhood torn to pieces) or the extremely bored should bother with.<br /><br />My rating for Thunderbirds is 1 ½ stars.",0 +24529,"Can A-Pix ever, ever, ever do anything right? This movie was meant to be seen on TV in a letterbox format. Since A-Pix doesn't even believe in pan and scan, we see whole scenes where a shoulder on the left side of the screen talks to a shoulder on the right side. Of course, not that you are missing much. This movie is incredibly bad. It's very hard to enjoy a film where characters are screaming at the top of their lungs during 80% of the movie for no reason.",0 +13351,"Not only was this the most expensive Canadian film ever shot in BC, but easily the worst, never seeing the light of day. The director is not even Canadian, but British, and boy does it show. We are all made out to be a bunch of over-sexed dope fiends and morons. The spirit of what it means to be Canadian is absent, and this is supposed to be the reason we fund this bunk. Of course the British character is normal. The rest are a crop of sitcom stereotype - can you say ""Norm!!""? The cinematography ranges from pretty postcard images to murky indoor silhouettes. The actors always seem to be fidgetting. Are they as bored as the viewer, or is this the directors idea of cinema? Avoid this mess and check out some of Bruce Mcdonalds films. A true Canadian boy with something original to say cinematically. You won't be compelled to walk out on HIS films after 10 minutes.",0 +8132,"I have seen a lot of Saura films and always found amazing the way he assembles music, dance, drama and great cinema in his movies. Ibéria shows an even better Saura, dealing with multimedia concepts and a more contemporary concept of dance and music. Another thing that called my attention is the fact that, in this movie, dancers and musicians, dance and music, are equally important: the camera shows various aspects of music interpretation, examining not only technical issues but also the emotional experience of playing. The interest of Saura on the bridge between classical and contemporary music and dance is one more ingredient in turning this movie maybe the most aesthetically exciting among his other works. That's why I recommend it strongly to those who love good cinema, good music, good dance, great art.",1 +2797,"Just Cause takes some of the best parts of three films, Cape Fear, A Touch of Evil and Silence of the Lambs and mixes it together to come up with a good thriller of a film.<br /><br />Sean Connery is a liberal law professor, married to a former Assistant District Attorney, Kate Capshaw and he's a crusader against capital punishment. Blair Underwood's grandmother Ruby Dee buttonholes Connery at a conference and persuades him to handle her grandson's appeal. He's sitting on death row for the murder of a young girl.<br /><br />When Connery arrives in this rural Florida county he's up against a tough sheriff played by Laurence Fishburne who's about as ruthless in his crime solving as Orson Welles was in Touch of Evil. <br /><br />Later on after Connery gets the verdict set aside with evidence he's uncovered, he's feeling pretty good about himself. At that point the film takes a decided turn from Touch of Evil to Cape Fear.<br /><br />To say that all is not what it seems is to put it mildly. The cast uniformly turns in some good performances. Special mention must be made of Ed Harris who plays a Hannibal Lecter like serial killer on death row with Underwood. He will make your skin crawl and he starts making Connery rethink some of those comfortable liberal premises he's been basing his convictions on. Many a confirmed liberal I've known has come out thinking quite differently once they've become a crime victim.<br /><br />Of course the reverse is equally true. Many a law and order conservative if they ever get involved on the wrong end of the criminal justice system wants to make real sure all his rights are indeed guaranteed.<br /><br />Criminal justice is not an end, but a process and a never ending one at that for all society. I guess if Just Cause has a moral that would probably be it.",1 +17492,"By far the most important requirement for any film following confidence tricksters is that they must, at least occasionally, be able to pull one over on us, as well as their dumb-witted marks, the cops, the mob and (ideally) each other. But this film NEVER pulls this off. Every scam can be seen coming a mile off (especially the biggen!) Neither are they very interesting, intricate or sophisticated. Perhaps Mammet hoped to compensate for this with snappy dialogue and complex psychological relationships. If so, he failed. The lines are alright, but they're delivered in such a stilted, unnatural, stylised way that I thought perhaps some clever point was being made about us all acting all the time... but it wasn't. As for the psychological complexity, the main character's a bit repressed and makes some ridiculously forced freudian slips about her father thinking she's a whore, but she gets over it. I really liked the street scenes though. Looked just like an Edward Hopper painting.",0 +12684,"If he wanted to be accurate, he should have chosen some Frisco natives and not a bunch of NY actors who know nothing about the Sucka Free (not Sucker Free). I've lived in SF my entire life, and folks here do not talk or act the way these actors did. Everything was over-dramatized, and the only cat I saw from the Bay was JT the Bigga Figga with his little cameo as a rapper. No shock that he was the only one in the film who really dressed like cats out here (ie his Warriors jersey). Not once did I notice anyone wearing any Giants or 9ers gear; instead he fitted them in some cheesy made-up SF or Oakland jerseys that aren't even sold around here. HP has no bowling alleys, black and Asian gangbangers do NOT wear head or wristbands with the colors of Africa or China's Olympic team, nor does every Chinese gangster wear a Yao Ming jersey and try and sound black while shooting hoops. Further, while there now is a significant yuppie community that has invaded the Mission, all that was shown was some white dude and a self-proclaimed ""100% West Coast Boriqua."" This is NOT New York! Puerto Ricans here are few and far between, and the Latinos in the Mission are very, very different from the ONE that was shown here, who was without a doubt from NY. Also, HP is not the only black neighborhood in the City. An accurate depiction would have shown the drama between HP sets in their own hood as well as vs. Fillmore, Sunnydale, Lakeview, etc. <br /><br />This film could've been much better if Lee had done some more homework and had a better storyline to work with.",0 +5324,"Had I been familiar with the stage production of Guys and Dolls before seeing the movie, I might not be as fond of it as I am. Although in all fairness, I would probably still like the film production better because of my general adoration of both Brando (for his acting) and Sinatra (for his voice, although he is quite the actor as well, see The Manchurian Candidate or From Here to Eternity.)<br /><br />As for some of the other reviewers' statements about the songs, I have the Broadway soundtrack and though Isabel Bingley's voice outshines that of Jean Simmons, it is not more pleasant. I find it to have a rather shrill quality. Jean Simmons' voice is much more realistic, though admittedly, that is not always a huge concern in musicals. Also the only time I particularly noticed Marlon Brando's particularly weak vocal register was during his rendition of ""Luck Be A Lady"" and only there because I was previously familiar with Sinatra's version. I also find Vivian Blaine's voice to be much more pleasing in the movie than it is on Broadway. And Sinatra's voice alone would be able to redeem the failings of all the others, if they indeed were in need of redemption. (They weren't) It is infinitely better than Sam Levene's, particularly in my favorite song, 'Sue Me'. <br /><br />Also, the complaint that lots of songs were omitted from the movie for inferior songs, I beg to differ. 'A Bushel and a Peck' is hardly a gem and the song that replaced it, 'Pet Me Poppa"" and its accompanying performance is more Hot Box material. I personally do not care for 'Marry the Man Today' at all and rejoice that it was not included in the movie. I adore 'I've Never Been In Love Before', and though it was not sung in the movie, the instrumental version can be heard when Nathan is in Adelaide's dressing room. The song 'A Woman In Love'expresses the same sentiment equally well and probably in a range that both of the stars could more capably reach. And the movie wouldn't be the same without the song 'Adelaide', not included on Broadway. In fact, if the movie soundtrack were available for sale, I'd recommend purchasing it instead of the Broadway. <br /><br />Though I have not seen the original production, I cannot imagine that the acting would be superior to that of the movie's lead actors. <br /><br />The important fact is that the story is as charming as ever and the acting and songs do not make it any less so.",1 +20596,"Moron and girlfriend conduct some ritual to resurrect the dead, in attempt to prove that the dead can not be brought back to life. Not surprisingly, they do resurrect a dead soul who commences chopping them up with an axe, and the next day some college aged people are telling the story around a campfire. The guy with the axe turns up and starts hacking up the idiots telling the story. The group calls the cops, the cop sees blood splattered all over and thinks it's a mountain lion(!?) and soon after is axed by some deformed killer who may or may not be a ghost.<br /><br />Moronic little splatter movie which was filmed in broad daylight but where several characters are carrying flashlights and talking as though it were the middle of the night, and wanting to send up a signal flare to attract attention. One guy has a gun in one hand and bullets in the other but doesn't bother to load it, then after he finally loads it, he has several opportunities to shoot the killer but doesn't bother to, because that would end the movie too early. Then he throws the gun away! Also detrimental is characters who show no emotion and don't look the least bit concerned after their friends are chopped up into pieces and lousy effects (the human heart looks like a piece of chicken meat, the car blown up at the end clearly was a model car) and awful dialogue and some really ugly female nudity doesn't help. And in the end it tries to get away with it's incoherence by saying that it was all the invention of the same college aged people telling campfire stories at the start of this movie. <br /><br />Then the killer turns up for real in the last scene hacks them into pieces. Again.<br /><br />Mediocre of it's kind, good only for some unintended laughs.<br /><br />*1/2 out of ****",0 +3381,"Halfway through Lajos Koltai's ""Evening,"" a woman on her deathbed asks a figure appearing in her hallucination: ""Can you tell me where my life went?"" The line could be embarrassingly theatrical, but the woman speaking it is Vanessa Redgrave, delivering it with utter simplicity, and the question tears your heart out.<br /><br />Time and again, the film based on Susan Minot's novel skirts sentimentality and ordinariness, it holds attention, offers admirable performances, and engenders emotional involvement as few recent movies have. With only six months of the year gone, there are now two memorable, meaningful, worthwhile films in theaters, the other, of course, being Sara Polley's ""Away from Her."" Hollywood might have turned ""Evening"" into a slick celebrity vehicle with its two pairs of real-life mothers and daughters - Vanessa Redgrave and Natasha Richardson, and Meryl Streep and Mamie Gummer. Richardson is Redgrave's daughter in the film (with a sister played by Tony Collette), and Gummer plays Streep's younger self, while Redgrave's youthful incarnation is Claire Danes.<br /><br />Add Glenn Close, Eileen Atkins, Hugh Dancy, Patrick Wilson, and a large cast - yes, it could have turned into a multiple star platform. Instead, Koltai - the brilliant Hungarian cinematographer of ""Mephisto,"" and director of ""Fateless"" - created a subtle ensemble work with a ""Continental feel,"" the story taking place in a high-society Newport environment, in the days leading up to a wedding that is fraught with trouble.<br /><br />Missed connections, wrong choices, and dutiful compliance with social and family pressures present quite a soap opera, but the quality of the writing, Koltai's direction, and selfless acting raise ""Evening"" way above that level, into the the rarified air of English, French (and a few American) family sagas from a century before its contemporary setting.<br /><br />Complex relationships between mothers and daughters, between friends and lovers, with the addition of a difficult triangle all come across clearly, understandably, captivatingly. Individual tunes are woven into a symphony.<br /><br />And yet, with the all the foregoing emphasis on ensemble and selfless performances, the stars of ""Evening"" still shine through, Redgrave, Richardson, Gummer (an exciting new discovery, looking vaguely like her mother, but a very different actress), Danes carrying most of the load - until Streep shows up in the final moments and, of course, steals the show. Dancy and Wilson are well worth the price of admission too.<br /><br />As with ""Away from Her,"" ""Evening"" stays with you at length, inviting a re-thinking its story and characters, and re-experiencing the emotions it raises. At two hours, the film runs a bit long, but the way it stays with you thereafter is welcome among the many movies that go cold long before your popcorn.",1 +4258,"The greatest games of Kasparov or Fischer can be a mess for a total rookie. This is a great movie. There is no special agency involved in the plot. This is the clue! This is a PRIVATE plot, built as a PRIVATE enterprise. This is a self-destructive and a self organized plot. As a conclusion, the scenario described the perfect professional plot: private, self organized, self-destructive, with no trace at the end. Anyone can be behind the plot: a smart ""director"" with some money. All can be done just by delegation. The ""director"" must be just trigger. If the normal viewer cannot see the essence of the plot in the explicit sequences of the movie, a real plot has fewer chances to be discovered. All the actors' performances are well done , with some special mention for Gene Hackman and Mickey Rooney.",1 +10606,"A classy film pulled in 2 directions. To its advantage it is directed by Wes Craven. On the downside the TV film budget shows what could have been so much more with a larger budget. It moves along as Susan Lucci draws Robert Urichfamily into her clutches and trying to persuade him into the secret of her health club. His latest invention, a spacesuit which can analyse people or things becomes unexpectedly useful in his new neighbourhood. Anyone seeing this should pay attention to Susan Lucci. Her looks and performance had an unexpected repercussions a few years later. The actor, scientist and parapsychologist Stephen Armourae is a fan of this film and wrote a review of this film. Lucci became subject of a portrait by him followed as the basis for works of a sitter called Catherine. Lucci and Barbara Steele's portrait in 'Black Sunday' were used as references for the Catherine portraits which were immediately withdrawn by Armourae. Probably due to a personal nature between the artist and Catherine. So by seeing both films we can get an insight into another story and the appearance of unknown woman that would make an interesting film.",1 +819,"SPOILERS 9/11 is a very good and VERY realistic documentary about the attacks on the WTC.2 French film makers who are in New York to film the actions of a NYFD are being confronted with this event and make the most of it.Before 9/11 nothing much really happens which gives the movie an even more horror like scenario. On the day of the attacks it seems like just another dull day at work but this will soon change.As one the film makers goes on the road with the firemen he films the first crashing plane,this is the only footage of the first impact.He rides with the firemen to the WTC and goes inside the building.As the second plane crashes the people understand that this is not an accident.In the next period of time we see firemen making plans to save as many people as possible,in the meanwhile we hear banging sounds,these are the sounds of people who jumped down from the tower and falling on the ground,this is the most grueling moment in the documentary.Then the tower collapses and our French friend has to run for his life,you hear him breath like a madman while he runs out of the building.Then a huge sort of sandstorm blasts over him and the screen turns black,he was very lucky to survive and now he can film the empty streets of Downtown New York. Because this documentary has got so much historical footage and because the film was ment to be something totally different this documentary will probably stay in everybody's memory.I saw the attacks live at home because I had the afternoon of,so this makes it even more realistic to watch. 10/10",1 +23165,"I found this to be an utter waste of time, effort and money. I know Disney always displays lack of creativity when making ""straight-to-video"" films - but rehashing the plot of the original film with a ""new perspective"" is an all-time low...soon they'll just be re-releasing the original films with new animation and new songs and be calling it a ""new version of the movie we all love."" Nathan Lane surprisingly returns to his role of Timon yet again. Timon and Pumbaa the animated animals from the world of the original ""Lion King"" embark on a narrative journey to tell us the original story the way it REALLY happened...as they see it.<br /><br />Of course Timon is now the hero of the story, yadda yadda yadda, blah blah blah...<br /><br />The musical sequences are lame and the animation is crap. The vocal talents are impressive for a video feature, but then again, when was the last time you remember Matthew Broderick, Whoopi Goldberg or Nathan Lane being in anything of real commercial substance? Overall if you liked the original you'll hate this. It's insulting because it's unfair to children and adults alike. And that about sums it up.",0 +19373,"This is 30 minute show about one joke. The joke, Cavemen are not treated fairly. HaHaHa!!! He can't dial a phone because he is a Caveman. Cavemen are not as smart as human beings. Oh jeez, those Cavemen are so unsophisticated. There is no humor in this show. They can only run off this one joke for so long and they already have with the Geico commercials. This show does not deserve a time slot on national T.V. <br /><br />This show tries to hard to be funny, but it just isn't. Watching this show, I was thinking that it was trying to be like a ""Bachelor's Gone Wild Show."" Meaning they go to the bar and try to sleep with many women. The crying caveman is annoying. The caveman with the glasses is too smart to be a caveman(HAHAHA!!!). All three of them have personalities, but I can't figure out why I don't care about them.",0 +17196,"I'm a big fan of horror flicks, and zombie films are a particular favorite of mine. That said, Zombi 3 is one of the absolute worst films I have ever seen. So needless to say I really enjoyed it, it's the best bad movie I've seen in a long while. The story has some similarities with Dan O'Bannon's ""Return of the Living Dead"", but whereas that film was intentionally funny, this one is the opposite. It has some of the most laughable acting I've ever witnessed, especially from the main scientist character. His scenes with the General were just hysterical. Also, the effects are subpar and in many cases sloppy, and the death scenes are often just downright stupid. This, of course, makes it all the more fun. POSSIBLE SPOILER - The worst is the scene where the guy opens the refrigerator door and sees the severed zombie head, which then opens its eyes and somehow FLIES OUT OF THE FRIDGE (obviously pulled out ineptly with a bit of string), latching onto the guys neck, killing him. Zombie heads have the ability to float in the air now? It defies every law of physics known to man, and it's one of the most absurd things ever filmed. That's just one of many really goofy moments in the idiotic mess. I can't believe it's gotten so high a rating here. If you are a fan of bad movies, do yourself a favor and rent this sucker.",0 +15875,"Although I have enjoyed Bing Crosby in other movies, I find this movie to be particularly grating. Maybe because I'm from a different era and a different country, but I found Crosby's continual references to the Good Old USA pleasant at first, trite after a while and then finally annoying. Don't get me wrong - I'm not anti-American whatsoever - but it seemed that the English could do no right and/or needed this brave, oh so smart American visitor to show them the way. It's a ""fish out of water"" story, but unlike most movies of this sort, this time it's the ""fish"" who has the upper hand. To be fair to both myself and the movie, I have watched it a few times spaced over a few years and get the same impression each time.<br /><br />(I watched another Crosby movie last night - The Emperor's Waltz - and that, too, produced the same reaction in me. And to my surprise even my wife - who for what's it's worth is American - found the ""in your face"" attitude of American Crosby to be irritating. One too many references to Teddy Roosevelt, as she put it.) <br /><br />As for the premise of the movie, it's unique enough for its day and the supporting cast is of course very good. The scenery and the music is also good, as are the great costumes - although I agree with a previous reviewer that the wig on William Bendix looks horrid (picture Moe of The Three Stooges).<br /><br />All in all for me this would be a much more enjoyable picture without the attitude of Bing Crosby but because he is in virtually every shot it's pretty hard to sit through this movie.",0 +8610,"This is Paul F. Ryan's first and only full-length feature. He hasn't done anything since. However, he managed to get an amazing ensemble cast to portray the characters of his story. I don't know when or why the idea emerged in his head, but Ryan wrote a screenplay which later became his own directed movie, ""Home room"".<br /><br />Busy Philipps carries the movie on her shoulders as Alicia, a troubled girl; the ones we always see in television series. With dark hair and black clothes; a package of cigarettes in the pocket, weird look and disturbing eyes (with makeup, of course). An event has occurred at her school; a shooting. Some students have died, and she saw everything. Now Detective Martin Van Zandt (Victor Garber) is investigating the case, and, as expected, Alicia is a suspect. But the shooting is just the genesis; the movie is not about the shooting.<br /><br />Lying in bed in a hospital room is Deanna Cartwright (Erika Christensen). She is one of the survivors of the hospital. The script establishes a bond between them, by the school Principal (James Pickens Jr). He is helping all the students to recover from the event, but Alicia doesn't seem to care. She's isolated. So the Principal punishes her; she needs to visit Deanna every day until five o' clock. Then the movie starts.<br /><br />I can't even describe how wonderfully written I think the movie is. I can identify with the characters and the situations they live; I like reality. These things could happen to anyone. And the things they say are totally understandable. They're growing up and trying to deal with things they haven't experienced; they're doing their best. Without knowing it, Alicia (when she visits Deanna for the first time) and Deanna (when she sees Alicia standing in front of her) are commencing a journey of that will define their personalities and ideas for the next step in life; after high school.<br /><br />The director leads Christensen and Philipps through their roles very well. Look the contrast between them. Deanna seems naive and with plain thoughts; no complexity inside of her mind. When Alicia enters her room and sees tons of flowers she asks: ""Who has brought them?"". ""Many people"", Deanna answers; although some days later we learn they're from her parents, who come every week. The parental figures are all well represented, but are not as important as their sons' characters. Deanna is lonely. Alicia seems mature and violent; smoking cigarettes and talking roughly. But after two days of visiting, she finds herself coming back to the hospital every day; even sleeping in Deanna's room all night. When they both have a fight afterwards, I believe Deanna says: ""Why do you keep coming back?"". Alicia is lonely too.<br /><br />The ending of the movie, without ruining it, comes a bit disappointing; it's something I wasn't waiting for. It eliminates some of the strength the movie has. The revelation comes totally unnecessary; ruining the logical climax the movie could have had. It was an excellent script anyway; and an excellent direction. A damn fine movie.<br /><br />When it comes to Erika Christensen, this was the role she needed to fly higher. Her role in ""Traffic"" was impressing, but this was the big step; the main role. Maybe not many had the chance to see her in this film, and that's a pity. She hasn't made one false move since then. She has even come out with good performances in awful movies. On the other hand, Busy Philipps, who proved to be very promising in this movie (what a transformation), hasn't got many opportunities for other roles.<br /><br />The same I say about Paul F. Ryan (in directing, of curse), and I expect he is sitting now in his computer finishing his new script; I'm waiting for his next movie. I'm hoping the best for all of them.",1 +14204,"*WARNING* Contains MANY SPOILERS!<br /><br />Let me start by saying I have a huge respect for Gillian Anderson's incredible talent as a varied and versatile actress - which is why I cannot comprehend her reasons for agreeing to make this film once she saw the script (or lack thereof.) <br /><br />The premise of the film was, in my opinion, a great idea and there were some genuinely thought-provoking themes in there but it ended up like a collapsed soufflé. It exemplifies why I hate 99% of British cinema. It feels too long, it's tedious, for the most part, and not a lot happens after the first twenty minutes. Just when you think there's a chance of it picking up some speed it disappoints like Paula Radcliffe running a marathon. With little imaginative directing and a minimalist plot, there isn't much to keep the audience from nodding off into their popcorn. As for the script I can only surmise that the writer was trying to save a few trees, with the average scene reading something along the lines of ""Alice: F*** OFF! (Adam stares. Adam runs off into woods)(Alice follows) Alice: ADAM! ADAM!"" I suspect that, word for word, the actors probably got paid more than Kate Moss did for her Virgin Mobile adverts. What few lines there were didn't have a lot of variation with a frequent use of the f-word that would make Bridget Jones's friend, Shazza, proud. There is little establishment of the main characters before the main sordid event which leaves the audience lacking much sympathy for the characters beyond an automatic 'Oh that's terrible' reaction.<br /><br />Alice isn't the kind of woman who courts sympathy either. She's got a great job, an expensive London apartment with roof space to die for yet she comes across on screen as conceited, bitter and dissatisfied before her life takes a turn for the worst. After the attack a few layers are peeled back which sort-of explain why she is this way to start with; she grew up with a tough-as-old-boots soldier who thought that teaching her how to shoot his gun was the ultimate expression of love so, instead of following in his footsteps, she ran away to the big city in search of something to make her feel like her life is worth living. Instead she found a group of stereotypical middle-class Toffs who look down on anyone not rich enough to drive a Lexus and the luxuries that come with an integrated security/entertainment system (i.e. becoming Mrs Robinson to a wanna-be Cockney wide-boy electrician) Someone pass me a tissue. The one saving grace of this character is that she is played by Gillian Anderson. In the hands of a lesser actress she would've been intolerably one-dimensional but Ms Anderson actually manages to inject a few fleeting moments of humanity into this otherwise lifeless human being, most notably when she's sincerely apologising for her road rage in a vain attempt to stop her attackers from continuing their assault.<br /><br />I can't say that Adam fared much better either. Danny Dyer played him well as a fish-out-of-water Jack the Lad but a good performance couldn't save him from both the lack of a script and the total absence of any character background. <br /><br />This film relied mostly on shock value but the timing was off and it felt far too engineered from beginning to end. As for the shock, the most shocking thing about this film is the unashamed demonstration of how painfully thin Ms Anderson has become; it was almost as unsettling to see as the brutal attack scenes. On a side note, only in a British film would a gang of violent sex attackers take the time to offer each other contraception before continuing to cheer their mates on - talk about stiff-upper-lip taken to the extreme! If this is the kind of film that the National Lottery is donating money to make then I'm not surprised that fewer and fewer people are choosing to spend their pound each week. <br /><br />Saying that I hated this film is giving it too much credit, I didn't care enough about any of the characters to warrant that strong an emotion. I want that one-and-a-bit hours of my life back, please!",0 +6964,if you are like me then you will love this great coming of age teen movie.i think it is up there with mischief/book of love/high school USA/shout/calender girl/crybaby/ all great movies set in the lat 50s & early 60s and it has a wonderful soundtrack.not as many songs as in some of these type of movies but still great.it is all so very funny at times and has a great love interest.all the young cast are great.i wish there were more type of these wonderful movies.my favourite movie of all time is back to the future when Marty mcfly gos back to 1955 well in these wonderful movies it stays in the fab 50s(early 60s) there are some movies of this type better than this but not many.,1 +12572,"Much worse than the original. It was actually *painful* to sit through, and it barely held my six year old's interest.<br /><br />Introduction of some new Pokemon is marginally interesting, but storyline is extra-thin, dialogue is still bad, and music is mediocre. Watch the television show instead - it's much better.",0 +13730,"This was a terrible film. There was no story line whatsoever. To top it all off, when they couldn't explain the blood and gore (the only good part) ... they threw in a few aliens! I hate when directors (or whatever) run out of ideas and then blame the aliens! Watch this film if you like. But don't say I didn't warn you. Two things: How could Vinny say ""welcome"" when he didn't have a tongue? Its a pity Mr Jones didn't have a bigger role. Second thing that bugged me, why were we shown Vinny Jones' boils and him cutting them off and putting them into blue liquid, then these have no further role. Why not? I don't like to be shown something and that has nothing to do with the story line whatsoever. In short. Bad story. I wouldn't waste my time - wish I'd have watched Mirrors instead.",0 +9561,"If you haven't seen Eva Longoria from the TV show ""Desperate House Wives"" then you are missing out. Eva is going to be one of the biggest Latina stars and you'll be seeing her in the theaters soon. This was Eva's first film and she does a fantastic job acting. She was 24 when she shot it, and looked hot then. As for this low budget film, it's pretty good for the first time director, who has another soon to be released movie ""Juarez, Mexico"" currently playing at many film festivals across the United States. In fact, it appears that it may have a limited theatrical release from some news. What would be nice to see is a ""Snitch'2"" with a higher budget.",1 +1063,"This show is so incredibly hilarious that I couldn't stop watching the marathon on Comedy Central tonight (despite the fact that I've seen all the episodes previously). I've always regarded Silverman as a huge talent and this is finally a vehicle for that talent to be enjoyed by a wide audience. I watch this show and I laugh a very large percentage of the time... I can't say that about many TV shows... can you? This show is finally something new and interesting and (most importantly) funny! This is a show I will never miss and it is one I will buy on DVD as soon as it comes out. You owe it to yourself to watch this show... I predict a long run for this series... And just to be clear, the people who are offended by this show just don't get it... perhaps they lack the intelligence to comprehend it... they should stop making fools of themselves by attacking something they don't understand. Anyone who uses the word ""bigot"" in reference to Silverman, or who claims that she only aims to ""shock""... is way off the mark... She's exactly the opposite; just Google her and you'll quickly see that she's a huge proponent of civil rights, etc. If you don't know that she's ironically embracing all of these outrageous viewpoints, you don't get it. And if you don't get it, do the rest of us a favor and be quiet about it so we can all enjoy the hilarity...",1 +18861,"I just saw this movie premiere on MTV. I must say this was extremely mediocre (at its best). The dialogue doesn't explain the story very well, and I was left feeling like there were a lot of plot holes. There isn't one likable character in this adaptation due to poor acting. I just find that all of the characters are way too possessive when it comes to someone they love. Also, Cate and Heath's love seems very incestuous. They seem more like brother and sister rather than lovers. I don't understand why the father would accept something like that under his roof.<br /><br />I watched this movie because of a few actors that I respected and enjoyed to watch in previous films, but like I said, it's extremely hard to like any of the characters. Katherine Heigl's performance was horrid which was a complete shocker. She was terrible at being the bitchy older sister of Edward, and there just wasn't enough lines for Aimee Osbourne for me even to critique her performance. Johnny Whitworth did well and it was great seeing him in something recent and even though his character was a bit kooky, he was the only person I sympathized with. As for Erika Christensen and Mike Vogel, they were supposed to be our heroines, but came off as whiny and overdramatic.<br /><br />I just didn't enjoy this movie very much or the music in it. There was a brief appearance of the Christian punk band, MxPx, but that small appearance would not convince me to watch this movie again. MTV did a tremendous job in convincing me this was a movie it was not. I just pictured something so completely different.",0 +8589,"I saw this series when I was a kid and loved the detail it went into and never forgot it. I finally purchased the DVD collection and its just how I remembered. This is just how a doco should be, unbiased and factual. The film footage is unbelievable and the interviews are fantastic. The only other series that I have found equal to this is 'Die Deutschen Panzer'.<br /><br />I only wish Hollywood would sit down and watch this series, then they might make some great war movies.<br /><br />Note. Band of Brothers, Saving Private Ryan, Letters from Iwo Jima, Flags of Our Fathers and When Trumpets Fade are some I'd recommend",1 +91,"The movie is truly poignant, unique and uplifting. The story is universal in that it's a battle between good, evil and the world between. THE MOST IMPORTANT thing is that its rating is wrong, misleading, and a travesty. Blockbuster has it rated as though it were an X rated movie. The truth is is that it is closer to G than PG and should be seen by children who can read the clear and simple sub-titles.",1 +12785,"This film had a great cast going for it: Christopher Lee, Dean Jagger, Macdonald Carey, Lew Ayres -- solid b-movie actors all. But this downer of a movie didn't use any of them to any sort of advantage, with none of their characters even meeting on screen (though Christopher Lee does get to play opposite himself in several scenes).<br /><br />The motivations for the aliens in this movie seem to change at the drop of a hat. First, they just want to repair their ship and leave, then they turn on the main character by killing most of his friends and not releasing his wife after he gets them the crucial part they need. Then, out of nowhere, this ""peaceful"" race decides they have to destroy the planet because it causes too many ""diseases"" (though they do offer the main character and his wife a spot in their society).<br /><br />Most of the film is spent watching the man and wife drive or walk or stand around or sit at desks doing nothing. You almost wish they had gotten taken out with the rest of the planet at the end, just in vengeance for boring us to death.<br /><br />Unless you really like Chris Lee or seventies low-budget sci-fi, I'd give this one a miss. It falls into that narrow range of wasted celluloid between Star Odyssey and UFO: Target Earth.",0 +943,"Musings: Pure delight from beginning to end. Not a laugh riot, but a more subtle, sophisticated humor. What a goldmine of great scenes and character actors, including Reginald Denny, Nestor Paiva, Ian Wolfe, Harry Shannon and Jason Robards Sr.. <br /><br />Cary Grant is at the building sight of his new home, which is at that point, being framed. A young carpenter, played by future Tarzan Lex Barker, asks him if he wants his ""lallies to be rabbeted"", or some such thing that only a carpenter would know. Grant, not wanting to appear ignorant, replies in the affirmative. At that, Barker yells up to his mates, ""OK boys, he wants 'em rabbeted, so....YANK 'EM OUT!"" A second later you hear the ripping and tearing sounds of about 20 big nails being pulled out of various boards. All Grant can do is moan.<br /><br />Yes, the movie IS dated. You'd never see that many carpenters working at once on a single family home, and a place like that, in Connecticut of all places, would probably run a few million bucks.<br /><br />A classic movie that is really a treasure.",1 +4101,"I never fail to be amazed and horrified by the evil that has been predicated in the history of the world in the name of religion, and it seems that the machinations of the Catholic Church in Twentieth Century Ireland rank right up there near the top - considering that the wisdom of history and modern times should have had some sobering effect.<br /><br />A Love Divided is the story of a real family scarred by ignorant intolerance and prejudice all in the name of an inane Church doctrine. At the beginning of the film, we are offered a view of the bucolic life in a small Irish village in which Sheila and Sean Cloney are happily married with two young children. Sean is Catholic and Sheila is Protestant, but she has no qualms with their children being raised as Catholic. There is no sign of any animosity between the Catholics and Protestants in the village. The peaceful and loving relationships are soon shattered when Sheila expresses the desire to have their older child attend the Protestant school. The local priest takes it upon himself to forbid this ""sin"" and soon has Sheila's husband and the entire Catholic population of the village turned against her as well as her father, the local dairy farmer. In an act of defiance and desperation, Sheila kidnaps her two daughters and flees from the area.<br /><br />Special note should be given to Orla Brady who plays Sheila. She gives an extremely powerful performance in which the viewer is drawn in to the emotional trauma in which she decides to reject the wishes of a husband she deeply loves in order to express her fervent desire to establish herself as independent from the pressures of the establishment. On an equal footing is Liam Cunningham who plays Sean for he gives a realistic portrait of a man not nearly as complex as his wife who is torn between his love for her and the influence of Church and community.<br /><br />If fiction, this film would have been a compelling and interesting drama. Considering it is true, it changes to a horrific tragedy. In real life, the people and the village never fully recovered from the events that took place there. It took almost half a century for the Church to acknowledge its negative role in the events, and even though Sheila and Sean lived out their lives in the area, they never fully recovered from what was done to them by the religious leaders and their fellow villagers.<br /><br />Whether it be denying basic rights to education of choice, crashing planes into buildings, subjugating women, condemning whole races, or just plain on torture and murder, we humans certainly have the ability to use religion as a powerful negative force in our society.",1 +20731,"Why is it that everyone who has seen this movie feels it is their responsibility to tell us whether or not they are fencers? That point is completely immaterial to any argument to be made against this total dog of a movie.<br /><br />I think sports movies fall into two categories; well made movies about the human spirit and competitions, and `By the Sword'.<br /><br />Honestly this movie never could decide what it wanted to be, a touching drama for trying to be your best in life, an indictment of competitive motivation or a martial arts flick. In the end it didn't do any of those convincingly or completely enough to make me give one ounce of care of any of it.<br /><br />For the record I also am a fencing instructor (and now I am officially as bad as the rest). But putting bad fencing in a movie doesn't make it bad automatically. I mean look at Star Wars (Episodes 4-6, good movies, bad fencing). I liked those movies. But when you put bad sports into a bad movie for some reason people think that it is only the purists that think it a lame effort.<br /><br />Don't be fooled by any comments on the smaller issue of fencing. This is just a bad movie. In the end, this movie has nothing for the fencing enthusiast or the movie buff or simply anyone with a pulse and three brain cells.<br /><br />When I see a movie and am forced to think, `Man, I wish I was watching the Mighty Ducks.' I know that it is time to bypass the argument with the theater manager to get my money back and see if there is anyone in the lobby that will somehow give me two hours of my life back.",0 +24470,"Story of a good-for-nothing poet and a sidekick singer who puts his words to music. Director Danny Boyle has lost none of his predilection for raking in the gutter of humanity for characters but he has lost, in this film, the edge for creating inspiring and funny films. Strumpet is painful to watch and barely justified by the fact that it was made for TV.",0 +7449,"Infamous pre-code film, really the one film that caused people to insist on the Hayes Code being strictly enforced. Barbara Stanwyck stars as a young girl whose liquor-selling father has no problem pimping her out to customers. When he dies in an accident, she's released out into the world with the knowledge that her nubile body can get her whatever she wants. She goes to New York and proceeds to climb the corporate ladder, one bed at a time. Although obviously there's no actual sex shown, the film is quite sleazy. Unfortunately, after the initial shock value fades (around the time Stanwyck screws a rail car inspector so she can travel for free), the film becomes a tad repetitive and dull. Stanwyck herself is the only thing that keeps the film worth sitting through. As always, she's fantastic.",1 +16803,"Sly Stallone is hardly the finest actor in the world but compared to his brother, Frank...well, roll out those awards now! Mullet haired, muppet Frank seems to think that every part he plays, calls for him doing the role as an American/Italian Wise-guy refugee from the 'Godfather.' Please, somebody make him an acting offer 'he can refuse!' This film just stinks the place out, even by the terrible overacting in this, Frank still steals the acting dishonours. All the people compensate for their lack of talent by shouting their lines and throwing their arms about, gesticulating wildly in a style that went out of fashion back with silent films.<br /><br />The plot, what there, is, makes no sense as a meteor lands and turns all the women into sex-crazed nymphets but as this is 15 certificate film, that just means they strip to their underwear and make moaning sounds like dogs on heat. What happens in the end, I'm not quite sure as I was losing the will to live long before the film finished.<br /><br />Avoid this like the plague and watch 'Deep Impact' for a reasonable film about a meteor about to hit the earth.<br /><br />N.B. Point of order: when one of the female leads strips down to her underwear, she has her knickers/panties under her suspenders/garter belt, it's knickers over the suspenders to allow women to go to the toilet with less fuss. A trivial point, perhaps, but shows how dumb this film is when they can't even get this right!",0 +15355,"So, where are the cannibals? Those intrigued by the title and the 'real cannibal' appeal of this film will be let down. Instead, we are shown a strange man and his re-visiting of a Papua New Guinea village full of natives, one of whom was his lover several decades prior. The man, Tobias Schneebaum is New York Jewish as they come and somehow, this is intertwined with the documentary as he appears in his yamika in several scenes.<br /><br />There are no real cannibals here: only stories relayed by some of the natives and by Tobias himself. Not all together a bad film. Very interesting and great cinematography. Schneebaum remains highly likable throughout and provides us with a fascinating glimpse into a life that is about as far removed from Western Civilization as one can get.<br /><br />It's just not what it claims to be on the cover and in the plot summary.<br /><br />4 out of 10, kids.",0 +447,"I first saw Thief as a child which makes me almost as old as the Jinn I guess. As any kid would be, I was delighted with the imagination, inventiveness and energy of the film. Several years later, I realized how much of the satire and wit of the script I had missed on that first viewing. I have never passed up an opportunity to watch it throughout the intervening years. In addition to the script, the production transcends the fantasy genre. This is Korda, the storyteller at his very best. When you see Thief as a child you know that you`ve had a great time. When you see Thief as an adult you know that you`ve seen a masterpiece. It`s as timeless as the story it treats. An amazing work.<br /><br />Thomas McCarthy",1 +5405,"I was not expecting the powerful filmmaking experience of ""Girlfight"". It's an Indie; low-budget, no big-name actors, freshman director. I had heard it was good, but not this good.<br /><br />Placed in a contemporary, ethnic, working-class Brooklyn, Karyn Kusama has done an extraordinary job of capturing the day-do-day struggles of urban Latinos. Diana, the protagonist, is seething with anger and lashes out at her high school peers, getting in trouble with the school and her friends. She is being raised by her single father, who appears to love her and her brother, but applies a strict, sex-based double standard on his children. The father's double standard is illustrated by the fact that Tiny, the brother, is taking boxing lessons at the local gym, but Diana is denied similar pursuits. On an errand to the gym to meet Tiny, Diana is captivated by boxing. Tiny doesn't like boxing, so he and Diana trade places; he gets the money from Dad then gives it to Diana to take the lessons in his place.<br /><br />This is actually a feel-good movie, as Diana grows and learns about herself through boxing, meets a guy, and addresses some very serious issues head-on. There's no giggly, 'everything that can go right does go right' resolution a la ""Bend It Like Beckham"". The reality and attendant personal issues are too big for pat resolutions, but in my opinion, ""Girlfight"" is a better and more satisfying film for it.",1 +7799,"this was the best bonnie and clyde movie i have seen. it has more accurate accounts of what happened and while it doesnt glorify their crimes it casts the pair in a normal light. i give this movie a 10. it has great actors,realistic scenes and excellent writers.",1 +5446,"I began watching a replay of this TV movie on a Sunday afternoon, thinking it was just another dumb airplane disaster flick. I was wrong.<br /><br />""Pandora's Clock"" is an intelligent political thriller that is far beyond the quality of most TV movies. It could just as easily have made its debut on the big screen.<br /><br />The cast is excellent, including veteran actors Richard Dean Anderson, Edward Herrmann, Robert Guillaume, and Robert Loggia. Daphne Zuniga turns in one of her best performances as a medical specialist working for the CIA, and Frasier's Jane Leeves is also very good. <br /><br />The dialogue is well-written and the story is compelling throughout. In fact, the final hour is so filled with plot twists and suspense that you can't leave your seat for a second. If you get a chance to see this movie, invest the time -- nearly four hours. You will be richly rewarded!",1 +3070,"This movie is another horror anthology. It is rather good, but it could have used a bit more. I compare it to ""Doctor Terror's House of Horrors"", though in this one the title fits. It has four stories all somewhat connected by a house. The first tale is about a writer and his wife moving in. He creates a killer for his latest novel and then he starts seeing the killer roaming around in his house. This one is sort of predictable, but it does throw a few twists in the end. The next story is a bit more unpredictable, and you really do not know where the heck it is going. This one features Peter Cushing and was probably my favorite of the bunch. This guy buys the house, but it is not the house that takes center stage, but a rather strange wax museum. The third story starts out rather good and features Christopher Lee. This one has him as a rather bizarre dad who seems awfully protective of his daughter. The problem is that once you know what is going on the story does not end soon enough. It drags a bit leading to a very predictable conclusion. Then the final tale concerns an actor buying a cloak from an odd little shop. The actor really gets what he paid for. Then there is a small story about an officer who is seen throughout trying to find out what happened to this actor and then an explanation of why these things happened. Though I was not very satisfied with the explanation as I don't think it really explained Cushing's story much at all. I think they needed a bit more back story for that one. All in all though it was an interesting set of stories.",1 +5218,"There is no director I like more than Mamoru Oshii. But sadly, even though he directed quite a few films that gained huge international attention, there are still a fair few of his films that have slipped through the cracks. Tachiguishi is one of them, and even though I loved it to bits, it's not hard to see why distributors in the West are somewhat reluctant to release it.<br /><br />In between his big and serious films, Oshii is known to do some smaller and quirkier projects. While Tachiguishi definitely falls into this category, Oshii has really outdone himself with this one, creating something that is very hard to classify, even as a freaky Japanese flick. Go figure.<br /><br />At its very core lies a documentary not quite unlike Otaku no Video. But rather than make a fool of an existing subculture, Oshii invents his own and delves into the lives of culinary heroes, scrounging away food for free and upholding the Japanese culinary level. Oshii's approach on the subject has close ties with Dai-Nipponjin, as the subject is handled with a deadly sense of gravity while the images on screen look as ridiculous as can be. Deadpan humor taken to the extreme.<br /><br />But that is not all, rather than simply shooting his mockumentary Oshii decided to make it using a new visual technique baptized superlivemation. A weird mix of live action, photography, digital animation and puppets on a stick. Performed and acted out (or posed, if you want) by the greats of the Japanese animation industry no less, as the project was supposed to be as low-budget as possible.<br /><br />And if you think that just about covers it, know that the film is extremely dialogue-heavy, making it a good companion piece for Innocence. The influence of the grifters is analyzed from all kinds of cultural, political and even philosophical angles, fired at the audience through a continuous stream of monologues and dialogues. And to make it even worse, the whole film is completely grounded in actual Japanese history and customs, making it even harder for a foreigner to get a good grip on the material. Needless to say, multiple viewings are advised to make the best of all the details tucked away inside the film.<br /><br />That said, on a conceptual level the film is easy to follow and already pretty hilarious. Various grifters are introduced as were they the most influential historical figures of post-war Japan. The film plays like you'd expect a serious documentary of any other important figure to unfold, but somehow the big and crudely animated cut-out photography limbs of which figures are assembled don't quite make it all that serious. The range of characters introduced is sublime, Shinji Higuchi taking the cake as cow-creature wearing a nose ring while taking on the fast-food chains with his gang of bull/people.<br /><br />Oshii regular Kenji Kawai provides, besides a pretty comical performance, a score ranging from atmospheric and dark to wacky, strange and comical. A lot of fun is to be had from the exaggerated noises and effects, complementing the animation and totally contradicting the tone of the rest of the film.<br /><br />Visually the film is very atmospheric, though it must be said that the animation is pretty scarce and while effective, remains toned down, only to burst out in hyperactive weirdness from time to time. Which is not exactly a bad thing, seeing how Tachiguishi is so dialogue-heavy. Despite that, the film is still a visual masterpiece as each frame looks absolutely lush and is tailored to match and improve the general atmosphere of the film.<br /><br />Beware though, because Tachiguishi does demand a lot from the viewer. If you don't speak Japanese, there is a lot of reading to be done and there are many cultural references that demand some attention. On top of that, the monologues in the film area quite extended and can be hard to follow. The film still lacks English subtitles and even though my French was largely sufficient to get what it was all about, I'm sure I missed many of the finer points of the film.<br /><br />Tachiguishi is not an easy film to get into, but around halfway through it reaches full steam and it doesn't let off from there on. I still hope to see this one again with English or Dutch subs. A dub would actually be best for a film like this (much like Container), though I guess a quality anime dub is a bit too much to ask for.<br /><br />With all of that said, I can only congratulate Oshii on another marvelous film. It's rare to find a film that blends and mixes so many styles and influences to create something that is so unique and still works. The film is smart, looks and sounds great and is filled to the brim with creativity. It is immensely funny, even if you can't catch all the details on the first viewing. But be sure to at least get this with decent subs, as the automated English translation that is floating out there is completely worthless and does the film no justice at all.<br /><br />Tachiguishi caters to a very specific audience and I'm not surprised the French got their release while the rest of Europe (and the rest of the Western world) is still waiting for a sign of this film. But for those that like Oshii, appreciate dry and deadpan humor and crave creative spirits, it is a film that cannot be missed, even though it could just as well misfire. 4.5*/5.0*",1 +21356,"A pointless movie with nothing but gratuitous violence. The only fun I had was playing ""spot the location"", as much of it was filmed in my home town of Regina, Saskatchewan. I like to support locally produced films but this one was a major disappointment.",0 +9671,"Goldeneye will always go down as one of thee most legendary games in VG history. Their is no doubt about that. But this game, although quite different, could quite possibly be the modern-day Bond champ, of its time.<br /><br />This was not a bond game based on material from another medium. This was a completely new; scripted game. Which even had its own theme song! (wouldnt be bond without it, haha!) Gameplay was excellent, and if you're a fan of the bond games or films alike, you'll enjoy it.<br /><br />Unlike some/most games, these cast members portrayed their characters themselves, as opposed to fictional creations for the game. Which gives it that more cinematic feel. With a very 'bond'-able storyline, you feel like you're in the game as much as you get lost in a movie.<br /><br />Enjoyable in all aspects, from start to finish. Even after beating the game there's still plenty more to be done. With the ranking system and unlockables to be achieved, as well as its multi-player missions, this is a stand-out game. Despite being quite old now, in video game years. It's still a good game that you can pick up & play whenever you feel the need to get a little more Bond in your life. Even now just thinking about it, I've got the theme song stuck in my head. Such a great cast and well-written storyline.<br /><br />The story comes to life on the screen, almost as if the actors were their in front of you, and is every bit as entertaining as the game itself. Superbly done, in true bond fashion. Which can only be named Awesome, Completely Awesome.<br /><br />I've gotta go throw this game on now. If you haven't played it yet, you're missing out!",1 +16865,"The episodic version of Robert Heinlein's Starship Troopers plays out at a deathly slow pace, following Johnny Rico leaving his parents, the (not very attractive) girl he lusts for, and joining the mobile infantry. The aliens in the show are nothing like the barbaric bugs from the film, instead being squid-like monsters that shoot lasers out of their mouths.<br /><br />Throughout watching this version, I was continually amazed at just how fruity they've managed to make the whole thing. The show is concerned mostly with the relationships between the recruits, and the aching, prolonged gazes they give each other through their battle armour visors, with 80s synth pop sometimes arriving *during* the sparse battle sequences which at last turning up in the final few episodes. In terms of construction, it owes a debt to Top Gun, sharing much in terms of pacing and content (and all that implies).",0 +10957,"I completely disagree with the other comments posted on this movie. For instance, the movie is based on the book and if the writer had a gay character in it then how could ""Hollywood"" just throw in a token gay character in the movie. And besides there was two gay characters and I thought they reflected each other great. One was normal and the other was more feminine but it wasn't over the top. And Diane Keaton gave a wonderful performance and if the other reviewer had the decency to actual watch the entire film they would have seen that her character developed through out the film by interacting with the other characters. For instance when she and Adam went to look at the car that Sara crashed in the junkyard you could see the maternal side of her come out and later in the film you saw that she too was invincible. But I guess if you're too worried about gay characters and characters that are flawed then this movie is bad. But if you're more open-minded and I don't know actually have some inkling of what is good then you'll enjoy this film.",1 +9132,"This is one of those Film's/pilot that if you knew BattleStar Galactica it helps, but isn't necessary. What makes this even more believable of a story than BSG is that this isn't something so far away in the future. This has such a depth to it that it is quite astonishing it was not released theatrically. The leads could not have been chosen better in such experienced & quite talented actors. Eric Stoltz is superb as the father who will do anything to be re-united w/his daughter however real or not she is & he'll do it no matter the cost. Paula Malcomson of ""Deadwood"" fame is terrific as his wife as well. You are not sure completely of his motives whether it's love or money or both, but that is what makes this pilot even more intriguing. I see a star in the making of Zoe played by the relative unknown Alessandra Torresani & her performance. Esai Morales is terrific in his desire to see his loved one again & just how wrong to be even considering what he wants more than his moral objections. I didn't think this would be a good idea when it was announced but from the pilot alone I am thrilled to see how we got to the BSG stage story. It's great to see Adama as a child already being affected & influenced by the different sorts of Robots starting to permeate life at this stage. I just hope that they can keep up the stories so we can figure out even more how they got the the Humanoid typed robots. This is an almost perfect pilot & I hope they can keep up the fantastic storytelling. Even the Visual effects are better than most of the garbage you see on the big screen. If you haven't gotten into BSG, @ least try this & I'll bet you become a fan & will want to see how the BSG story came to be.",1 +1822,"What I liked best in this film is that like the films of Hitchcock, it is a thriller that does not take itself too seriously.<br /><br />Hitchcock understood that people go the the movies to have a good time. Something that Hollywood seems to have forgotten in recent years. This is a thriller, but it has plenty of laughs and always has one eye winking at the camera.<br /><br />Rachel McAdams is wonderful as always. Cillian Murphy is creepier than he was in Batman Begins. In the old days, there were guys who always played the bad guy. We don't see much of that these days because I suspect the Hollywood agents consider it a bad career move, but Cillian Murphy is really good at being bad.<br /><br />The directing is surprising stylish. The story is good but the dialog could have used some sprucing up.<br /><br />""Red Eye"" is a really fun film and people were applauding when the closing credits started rolling. If you are in the mood for an enjoyable escapist thriller, ""Red Eye"" might be your ticket.",1 +8862,"I realized a couple of days ago that the makers of this film put a play on words into its title. This movie is not primarily about the act of ""riding giants,"" but mostly about the people who are the giants of the sport, RIDING giants, to change the emphasis.<br /><br />In my teens I lived a block from the Wedge, one of the hardest-breaking and best bodysurfing spots in the world. I've been out in 15-to-18 foot surf, and have ridden and been hammered by 10 and 12-foot waves on many occasions. That experience is why I am in complete awe of the surfers in this film. The idea that Jeff Clark, to all appearances a normal mortal, could get away with riding Maverick's BY HIMSELF for over a decade is beyond my grasp. The first safety rule of any water sport is ""Never surf/dive/swim by yourself."" He went where sane people would not, and lived to tell about it. I wouldn't go out there if the water were 75 degrees and the sharks all left. <br /><br />In the world of warm water: the first shot of the waves at Jaws always makes the skin tingle over my entire body. These are not just scary waves, these are uncontrolled-bowel-evacuation waves. When we see Laird Hamilton not only surviving 40-to-60 foot waves (I can hardly type those numbers), but actually working the faces like a fun day at Rincon, I'm blown away. There is a dedication and focus in big-wave riders which is comparable to that of anyone in the world. <br /><br />This a great film. I gave it a 9 instead of a 10 only because it neglects to mention that there are great big-wave riders in the world outside the Hamilton/Kalama crew, and I think they deserved mention. Splice in Ken Bradshaw at outside Log Cabins and a 10 it is!",1 +24954,"MY BROTHER TOM <br /><br />Aspect ratio: 1.85:1<br /><br />Sound format: Dolby Digital<br /><br />Following an episode of sexual abuse at the hands of a trusted neighbor, young Jessica (Jenna Harrison) forms a relationship with a strange boy (Ben Whishaw) she meets in the woods. Unfortunately, Whishaw has secrets of his own, no less troubling and far more dangerous...<br /><br />Dour drama, sparked by brave performances by Harrison and Whishaw, in which two kindred spirits immerse themselves in a mutual love of nature after being traumatized by their experiences in the 'real world'. Unfortunately, their friendship unravels as harsh reality begins to intrude, leading to an inevitable tragedy. Directed by Dom Rotheroe and photographed in digital video format, the movie looks ragged in places (too many awkward close-ups and sloppy hand-held camera moves) and takes a while to find its feet, but the dramatic pay-off is quietly rewarding.",0 +11822,"Dennis Hopper and JT Walsh steal the show here. Cage and Boyle are fine, but what gives this neo-noir its juice is Hopper's creepy, violent character and JT Walsh's sneakiness.<br /><br />A drifter gets mistaken for a hit-man, and tries to make a little dough out of it, but gets in over his head.<br /><br />I found a strange parallel in the opening scene of this movie, when Cage walks into a trailer in Wyoming to get drilling work, with the help of his buddy...and the opening scene in Brokeback Mountain, when the character does the same thing! But that's another story.<br /><br />Dennis Hopper is at his best here...cocky, one-step-ahead villainous, seething and explosively violent. JT Walsh (RIP) is also great as the man with a dark past, trying to live legitimately (well, almost).<br /><br />There are only 4 real characters of note here, with the exception of the hard-working deputy in the town of Red Rock, Wyoming. The first twist hits early on, and from there it's a nice neo-noir adventure in some sleepy little town. Satisfying. 8 pts.",1 +16062,"i was enjoying this movie most of the time, but i kept getting the feeling that i was watching a children's movie. i honestly think that somebody wrote a pg script and then, while filming, decided to add in some blood, nudity and language. it was a big let down. there's that believe the children magic that exists in movies like ""babe"" (the pig) or ""angels in the outfield"" that defeats the evil tooth fairy. the parents end up believing their daughter about her ability to see the ghost and utilize this skill to supernaturally defeat the tooth fairy. when i bought this movie, i thought it would be a b-film response to the dreadful darkness falls; somehow manage to make a better film with 1/4 of the money, but they don't. they made a worse film and will probably lose the same proportion of money lost on darkness falls.",0 +9356,"Holes is a fable about the past and the way it affects the present lives of at least three people. One of them I will name, the other two are mysteries and will remain so. Holes is a story about Stanley Yelnats IV. He is unlucky in life. Unlucky in fact characterizes the fates of most of the Yelnats men and has been since exploits of Stanley IV's `no good-dirty-rotten-pig-stealing-great-great-grandfather.' Those particular exploits cursed the family's men to many an ill-fated turn. It is during just such a turn that we meet Stanley IV. He has been accused, falsely, of stealing a pair of baseball shoes, freshly donated to a homeless shelter auction, by a famous baseball player. He is given the option of jail, or he can go to a character building camp. `I've never been to camp before,' says Stanley. With that the Judge enthusiastically sends him off to Camp Green Lake.<br /><br />Camp Green Lake is an odd place, with an odd philosophy, `If you take a bad boy, make him dig a hole every day in the hot sun, it will turn him into a good boy.' We learn this little pearl of wisdom from Mr. Sir (John Voight) one of the camp's `counselors.' We get the impression right away that he is a dangerous man. He at least wears his attitude honestly; he doesn't think he is nice. The camp's guidance councilor, Mr. Pendanski (Tim Blake Nelson) is a different matter entirely. He acts the part of the caring sensitive counselor, but he quick, quicker than anyone else in authority to unleash the most cruel verbal barbs at his charges. The Warden has a decided capacity for meanness, but other than that she is a mystery. These three rule Camp Green Lake, a place that has no lake. It is just a dry dusty desert filled with holes, five feet deep and five feet wide. Its local fauna, seem only to be the vultures, and dangerous poisonous yellow-spotted lizards. Green Lake seems is, in many ways, a haunted place.<br /><br />Holes works in spite of the strange setting, and the strange story, because it understands people. Specifically because it is honest in the way it deals with the inmates of Camp Green Lake. The movie captures the way boys interact with one another perfectly. It captures the way boys can bully each other, they way they can win admiration, the way they fight with one another, and the way boys ally themselves along the age line. It is this well nuanced core that makes everything else in the film believable. What is also refreshing about this film the good nature of its main character. He does not believe in a family curse, he is not bitter about the infamous exploits of his `no good-dirty-rotten-pig-stealing-great-great-grandfather.' In fact he loves hearing the story. Stanley IV is not bitter about the past, and determined not let it affect him in the way it has affected his father and grandfather. There is at times a lot of sadness in the film, but not a lot wallowing angsty silliness. And that is refreshing.<br /><br />Holes is an intelligent, insightful and witty family movie. It entertains, and not in any cheap way. It is not a comedy, though it has its laughs. It dares to be compelling, where many family movies tend to play it safe and conventional. As such it transcends the family movie genera and simply becomes a good film that everyone can enjoy. I give it a 10.",1 +9749,"Bettie Page was a icon of the repressed 1950s, when she represented the sexual freedom that was still a decade away, but high in the hopes and dreams of many teenagers and young adults. Gretchen Mol does a superb job of portraying the scandalous Bettie, who was a small town girl with acting ambitions and a great body. Her acting career went nowhere, but her body brought her to the peak of fame in an admittedly fringe field. Photogrsphed in black and white with color interludes when she gets out of the world of exploitation in New York, this made-for-TV (HBO) film has good production values and a very believable supporting cast. The problem is, it's emotionally rather flat. It's difficult to form an attachment to the character, since Bettie is portrayed as someone quite shallow and naive given the business she was in. The self-serving government investigations are given a lot of screen time, which slows down the film towards the end. But it's definitely worth watching for the history of the time, and to see the heavy-handed government repression that was a characteristic of the fifties. 7/10",1 +10269,"i liked this film a lot. it's dark, it's not a bullet-dodging, car-chasing numb your brain action movie. a lot of the characters backgrounds and motivations are kinda vague, leaving the viewer to come to their own conclusions. it's nice to see a movie where the director allows the viewer to make up their own minds.<br /><br />in the end, motivated by love or vengeance, or a desire to repent - he does what he feels is ""right"". 'will god ever forgive us for what we've done?' - it's not a question mortal men can answer - so he does what he feels he has to do, what he's good at, what he's been trained to do.<br /><br />denzel washington is a great actor - i honestly can't think of one bad movie he's done - and he's got a great supporting cast. i would thoroughly recommend this movie to anyone.",1 +8332,"The summer has been so full of Blockbusters and comebacks of films, and not to mention some of the disappointments of those comebacks, that I was woe to find a film I could just sit down and enjoy. <br /><br />In case you don't want to read further down the page (there aren't any spoilers), I'll sum it up here: It's more mature than Ella Enchanted (there are some questionably violent parts, plenty of death, and a handful of scenes with a little blood, not for small children), but doesn't try to be overly corny or overstep its bounds. Think of it as a bit more serious, bit more magical Princess Bride, and you'll be close. <br /><br />-------------------------------------------------------------<br /><br />I am, perhaps, not as prodigious a movie goer as others... Maybe once or twice a month, if I feel active. I'm also a huge Sci-Fi/Fantasy fan. I get bored of remade repetitive story lines and films with more flash than filling faster than you can count to 10, and this film is the diamond in the rough.<br /><br />By the end here (August), I was tired enough of fractured expectations from the big hits that I averted seeing Bourne Ultimatum in favor of Stardust. Having had my hopes thoroughly muddied by Transformers for my Fiction addiction, the previews of Stardust seemed appealing, but I was certainly wary.<br /><br />As many others here, I was utterly surprised. I had gone in thinking to see another generic fantasy movie clichéd from here to breakfast. Don't be fooled, it is most definitely a fairy-tale, and it does indeed have witches, magic, and utterly requires suspension of disbelief... But the most refreshing thing I found, is that it's NOT based on anything I've seen or read in the past 15 years, and it's actually a really good movie.<br /><br />((Unlike 90% of the other movies which seem to persistently re-appear like thorns in a side, perhaps a sign that Hollywood is running out of ideas? I could read a book this year, and in two years the movie would be out as another ""Epic fantasy tale, the likes of LotR and the rest"" so says the NYT and such and such no doubt.))<br /><br />Stardust didn't have me bolted to my seat because of jam-packed action at every turn, nor was I sweating bullets because of plot-hook after plot-hook threatening to tear the dramatic tension apart and echo throughout the theater in a loud boom. It didn't even use enormous blasts of sound to grab my attention to what's happening on screen (Transformers, I'm looking at you). It's not trying to show off the latest CGI techniques, nor did it offend my intelligence with dimwitted dialogs and story lines that are simple enough I could've figured them out in 3rd grade (boy I hate those). <br /><br />I just... watched. Watched, and enjoyed a refreshingly CREATIVE storyline unfold before my eyes. Sure, I may have known what was going to happen throughout most of the film, but it makes you forget that. It even made my heart twinge at some parts, but the most important aspect I noticed is that I left the theater feeling better than when I'd gone in.<br /><br />It truly is a gem. After so much slush this summer with so many remakes and films that fell short of my expectations, this was like a cold sweet cup of tea to cap off all the hard work I'd done sitting through the others trying to come out of them with my money's worth.<br /><br />It's probably not for everyone, but do yourself a favor; If you enjoy fantasy films that stand the test of time alone (Princess Bride, Black Cauldron, The Dark Crystal, etc.) then you should really see this movie. This little diamond is finding its way into my DVD collection the moment it hits stores, you can trust me on this.<br /><br />Simply wonderful.",1 +748,"I don't agree with one of the reviewers who compared this film to the American International Pictures. Basil Deardon has directed a brutally realistic film with an honest attempt to portray the rise of juvenile delinquency in post war England (but without the sentimentality of ""Blackboard Jungle""). The cinematography was excellent as it really captured the scariness and isolation of the huge housing estate. The estate looked like an old prison. Stanley Baker was excellent as the hardened detective, reassigned to the juvenile division - ""Urgent, urgent - Larceny - five iced lollies""!!!! He finds he is the butt of many jokes. David McCallum showed that he was one of Britain's top young talents of the fifties. (He had a very different role in another Stanley Baker film ""Hell Drivers""). His portrayal of Johnny and the fanatical following he inspired was very frightening. Ann Heywood was also very good as the cynical Cathie. I wouldn't say there was a romantic subplot in it.<br /><br />Detective Jack Truman is investigating a string of arson attacks by someone labeled the ""Firefly"". Just as he finds evidence which could lead to a breakthrough, he is assigned to the Juvenile Division - he is pretty disgusted at what he feels is not proper police work. Amid all the heckling he gets his first call out - the 6 year old Murphy twins are working a scam at the local lolly shops!!!<br /><br />Taking the twins home he meets their brother, the charismatic Johnny, and their embittered sister Cathie. He starts to appreciate how life on the ghastly housing estates can turn young kids into criminals. As he gets more involved with the family, he realises there is a strong link between the fires, Johnny and a frightened Chinese youth who works for a laundry. The local priest (Peter Cushing in an unusual role, away from the Hammer horrors) explains that when Johnny was younger he had rescued some people from a burning building and had been hailed a hero. He wanted to recapture the feeling of importance and being useful and felt he could by lighting fires. The school siege was filmed in a very real way and the viewer felt the children's fear - the teacher (thinking only of her own safety) runs off and locks them in the room with the frightened gunman!!!!<br /><br />I thought it was a really excellent film that tried to show some of the social problems Britain experienced after the war.<br /><br />Highly Recommended.",1 +10890,"This is by far one of my favorite of the American Pie Spin offs mainly because in most of the others the main character (one of the young Stiflers) always seems unrealistic in nature. <br /><br />For example AP: The Naked Mile. You have a teenage guy surrounded by naked college chicks , and has one in particular hot on his trail to rid him of his virginity ""problem"" and he ends up stopping mid-deed and rides a horse back to sleep with his girlfriend, who keep in mind gave him a ""guilt free pass"" for the weekend. I can appreciate the romantic aspect of the whole thing but let's be realistic; most people who are watching these movies aren't particularly searching for a romantic story.<br /><br />Whereas the most recent installment finally seems to realize who the audience is and good old Erik Stifler seems to wake up and smell the roses and as always Mr. Levenstein lends his ""perfectly natural"" eyebrow humor to the equation and scored a touchdown with this new movie.",1 +1968,"In another one of Bugs Bunny's hare-raisingly wacky shorts, the famous leporid* works in a department store display case, when owner Gildersleeve decides to stuff him. Of course, this proves nearly impossible, as Bugs apparently knows the store better than Gildersleeve (and knows when to cross-dress). As always, they keep everything coming at top speed, and so you have to wonder how hilarious this cartoon must have seemed when it first debuted! Among other things, ""Hare Conditioned"" is a fine example of how the Looney Tunes looked in the '40s before the Termite Terrace crowd polished them. But don't get me wrong, the cartoons were still really good after the refined forms arrived.<br /><br />Anyway, this is a great one.<br /><br />*Leporids are rabbits and hares.",1 +21540,"This movie is poorly conceived, poorly acted, and poorly written.<br /><br />Jon Heder is terribly annoying, and cannot escape the same Napolean Dynamite routine. Self-obsessed and ignorant.<br /><br />Furthermore, Diane Keaton plays the same manish, overly obsessed mother, who cares too much and yet not nearly enough about the lives of her children (see Because I Said So). <br /><br />Anna Faris, though i generally like her, plays a vapid idiot in this film as well.<br /><br />Jeff Daniels is passable but nothing special. <br /><br />Please, skip this film if you want to keep your soul.",0 +11430,"I loved October Sky. The thing I loved most had to be the music. It worked two ways: in the first hour of the film, it gives the viewer a time-frame. This is done by playing songs from the late Fifties. In the second hour, an instrumental score takes over. The music now fits the mood of the film perfectly.<br /><br />I did not only enjoy the music, I also quite enjoyed the cast. Jake Gyllenhaal as Homer Hickam was especially a surprise for me. He gave off a first-class performance, as did Chris Owen (Quentin) and Chris Cooper (John Hickam).<br /><br />I've seen this movie about escaping the life already laid out for you twice now, and both times I thoroughly enjoyed myself.",1 +3210,"First-time director Tom Kiesche turns in a winning film in the spirit of cutting, dark comedy. Shot on a shoestring budget, yet had the flavor of the early Coen brother's film Blood Simple ... and throw in some Monty Python flavorings to boot! Needs to seen more than once to appreciate all the elements that carry one scene to the next. Expect more good things to come from this writer-director-actor.",1 +23036,"This was probably the worst movie ever, seriously. I could actually do better myself, it wasn't even set up properly. It's like this movie had a $5 budget and left with change. Don't watch it. I didn't even get all the way through this movie, had to turn it off. I've give this a 1/10 because it was hilarious how the producer of this movie wanted it to be a horror movie, but actually turned into a really bad comedy. Basically, a bunch of girls crashed into a car, broke a headlight, and the owner of that car went after them. The bit that i saw was a women with a gun telling a load of girls to take all their clothes off, what the hell? it must be some kind of cheesy porn movie as well.",0 +12959,There are no reasons to watch this movie. Should you have won and extreme amount of money and having spent your time discovering life's every pleasure and have come to a point where by chance you are at a loose end and have some time to kill (like that would ever happen) then get this movie from the video shop (if you can find it AND put up with the assistant laughing at you then ask for this movie. Be prepared however for you mind to be invaded by extremely wooden acting by absolutely everyone (in fact the best acting was by the people who said nothing). Oliver Reed tops off his grand career by playing a drunk - go figure. But wait I forgot there is one reason to watch this movie - Claudia Udy showing her chest! Sadly no other reason than that!,0 +10883,"This is one of the funniest and most excellent movies ever made! Although I've only seen forty minuets of it and I must say this is a good movie. The plot if funny and because there's sex around pretty much every corner of this movie. It's really funny and I don't see how anyone could NOT like this film. I really really really want to watch the rest of the movie. It has one slightly sick scene in it (trust me, it's not very pleasant) but apart from that this is a great movie. I rate this movie an 7/8 for comedy, 10/10 for sexual content and 10/10 for the plot. PLease if your a fan of American Pie and you want to watch a movie where there's pretty much all sex in it the buy this movie. It WILL please you.<br /><br />10/10",1 +5532,"Steven Spielberg wanted to win an Oscar so bad that he figured that he wouldn't win by directing special effects epics (he was nominated for three of them: ""Close Encounters of the Third Kind"", ""Raiders of the Lost Ark"", and ""E.T.: The Extra-Terrestrial"". So he decided to get very serious by directing ""The Color Purple"", a period film with no special effects. Spielberg's first serious drama is a remarkable movie. But the Academy voters who voted back in 1985 still didn't give Spielberg any respect. ""The Color Purple"" received 11 Oscar nominations including Best Picture, but Spielberg was unfairly snubbed when he wasn't nominated for Best Director. It got worse on Oscar night when this film didn't win a single Oscar. It got completely shut out. That wasn't right. ""The Color Purple"" should have won a couple of Oscars including one for Whoopi Goldberg's spectacular film debut as Celie, a woman who suffers at the hands of an abusive husband (frightfully placed by Danny Glover), then gets stronger throughout the film thanks to some special friends. Oprah Winfrey also made her film debut here and gives a great performance as Sofia, one of those friends' of Celie. Since I'm from Chicago, I had already known Winfrey from her talk show (which at the time of this films' release hadn't gone nationwide). Like Goldberg, what a film debut! Margaret Avery is terrific as Shug Avery, another friend who also happens to be the mistress of Celie's rotten husband. All three actresses received well-deserved Oscar nominations for their work here (Goldberg for Best Actress; Winfrey and Avery for Best Supporting Actress). Set in the south during the first half of the 20th Century, ""The Color Purple"" is a film so strong that it made me cry at the end. It also made me laugh at times too. Why Academy voters were so hard on not nominating Spielberg for Best Director is a mystery that still puzzles me today. But Spielberg would eventully go on to win two Oscars years later for ""Schindler's List"" and ""Saving Private Ryan"", making him one of the best movie directors of all-time. But he should have gotten nominated for this movie. The job that he did going from special effects blockbusters like ""E.T."" to a serious drama like ""The Color Purple"" was remarkable.<br /><br />**** (out of four)",1 +1493,"Pufnstuf is what it is. I saw this in the cinema at age 4 and I have very fond, and vivid, memories of it. Seeing this as as adult allows one to catch the references that are way over the heads of the target audience - like the bit where Jimmy's grey witch wig is ripped off and Witch Hazel (Cass) sneers ""I KNEW she had brown roots!"". It is of course heavily influenced by the flower power culture of the time, and in some ways quite progressive. The track Different, for example sends a clear message to the young viewers about being yourself, not running with the pack, and cherishing what is is about yourself that is different. This could be an anthem to the gay community, it should be, great track.<br /><br />Martha Raye, Cass Elliot and Billie Hayes are all great as witches, and the Living Island cast give it their all in the confines of their character suits (includes Billy Barty, Felix Silla and other famous names). There is a LOT of over acting in this film - there's really nothing subtle, and when little Jack Wild has to emote his concern for the kidnapped residents of Living Island it's really little more than yelling. This is drama and comedy spread on with a trowel. While I think of it - I never could stand the flute though.<br /><br />I love the soundtrack, especially the above mentioned Different but also Zap The World, Pufnstuf and even Jack Wild's touching If I Could. What's more, it IS now out on CD from the tasteful people at El Records in London. See here for more: www.cherryred.co.uk/el/artists/pufnstuf.htm",1 +17877,"How low can someone sink while trying to recapture an old glory? ST:HF will be glad to show you.<br /><br />If you are used to seeing what made for a good Star Trek show, do NOT watch this.<br /><br />The writing is hodge-podge, the actors' portrayals of their characters weak, and most of all, the design work is downright doggy.<br /><br />Like watching strong captains, don't look here! Like the strong Federation attitude? Forget about it here! Starfleet is mocked by ensigns wearing SPIKES in their hair.<br /><br />While a seemingly mentally feeble captain shuffles about and within two minutes of the opening show's credits, Ensign Spikey is attempting to arrange a tryst with an engineer. It just degrades from there. No, not even uniforms match, for goodness sake. They are too small or too big, collars down to their chests, and TNG Seasons One and Two Uniforms mixed in with Season Three and DS9 uniforms. The strict discipline and tradition of any of the originals in lacking in this production down to the treads! The only good thing about this show is its graphics, which seem to improve a bit with each season. OK, I take that back. Who uses CG that inexpertly? The designers of this show.<br /><br />Don't bother with it, it will offend your Star Trek sense, as it did mine. Not even the throw backs to previous shows can save this catastrophe.<br /><br />I wept openly when i watched this, probably because my eyes were bleeding and my head almost ruptured. That bad.",0 +21159,"I paid one dollar for this DVD and at first I was feeling ripped off, but then I started thinking about it and I should be grateful. I have found a holy grail, a real touchstone of bad cinema. If you think the opening dramatic shots of an empty stadium successfully fizzle with Evel's awkward camera address monologue, then wait until the opening credits roll on the chauffeur's butt. The script seems to be pasted together from press clippings, and ESL textbooks. But..... I just can't believe how bad George Hamilton is. He seems to have absolutely no connection to anything he says, the only internal monologue I can detect is ""gosh I bet they think I am cute. really cute!"". This is an epiphany! I now know how bad it can get.",0 +119,"""Ardh Satya"" is one of the finest film ever made in Indian Cinema. Directed by the great director Govind Nihalani, this one is the most successful Hard Hitting Parallel Cinema which also turned out to be a Commercial Success. Even today, Ardh Satya is an inspiration for all leading directors of India.<br /><br />The film tells the Real-life Scenario of Mumbai Police of the 70s. Unlike any Police of other cities in India, Mumbai Police encompasses a Different system altogether. Govind Nihalani creates a very practical Outlay with real life approach of Mumbai Police Environment.<br /><br />Amongst various Police officers & colleagues, the film describes the story of Anand Velankar, a young hot-blooded Cop coming from a poor family. His father is a harsh Police Constable. Anand himself suffers from his father's ideologies & incidences of his father's Atrocities on his mother. Anand's approach towards immediate action against crime, is an inert craving for his own Job satisfaction. The film is here revolved in a Plot wherein Anand's constant efforts against crime are trampled by his seniors.This leads to frustrations, as he cannot achieve the desired Job-satisfaction. Resulting from the frustrations, his anger is expressed in excessive violence in the remand rooms & bars, also turning him to an alcoholic.<br /><br />The Spirit within him is still alive, as he constantly fights the system. He is aware of the system of the Metro, where the Police & Politicians are a inertly associated by far end. His compromise towards unethical practice is negative. Finally he gets suspended.<br /><br />The Direction is a master piece & thoroughly hard core. One of the best memorable scenes is when Anand breaks in the Underworld gangster Rama Shetty's house to arrest him, followed by short conversation which is fantastic. At many scenes, the film has Hair-raising moments.<br /><br />The Practical approach of Script is a major Punch. Alcoholism, Corruption, Political Influence, Courage, Deceptions all are integral part of Mumbai police even today. Those aspects are dealt brilliantly.<br /><br />Finally, the films belongs to the One man show, Om Puri portraying Anand Velankar traversing through all his emotions absolutely brilliantly.",1 +21276,"I'm not particularly fond of remakes, or to steal the modern jargon ""retellings"", but this film truly peeved me off. The original Prom Night, while not in my humble estimation a masterpiece, still realized what it was... horror. There are some simple things to remember when making a horror film. Suspense is crucial to maintaining the interest of the audience. Sorry folks, but a white knuckle film this was not! The scares were cheap, and foreshadowed terribly. (A good example of scare which has been done to clichéd excess now, is the cat jumping out of the closet, followed soon there after but a now unexpected appearance by the villain of the film) This film couldn't successfully pull that off, so how could I expect it to fulfill any of the other conventions of horror film. There needs to be a likable hero or heroine. This film doesn't have one. The person I most identified with was the head detective. His calm demeanor, but level headed approach to the escape of a killer was what more films of this ilk should have. Common sense approach to events that occur. (If you're running from an Axe wielding psycho, you turn and sprint in the opposite direction. Not jog, whilst looking back ever three seconds, gaging the killer's progress, only to trip over every branch and inanimate object in your path.) If you friend disappears, you don't go looking for them alone. And if you suspect foul play you tell someone, not investigate yourself. These clichés are tired and well overplayed. In the horror genre in general, and in this film in particular.",0 +16403,"Ok, let me say that I didn't expect a film starring Jerry Springer to be cinematic gold, all I asked for was it to be cinematic...and it wasn't even that. It looked like someone's bad home movies. Poorly acted, scripted, and filled to the brim with nudity of the most unnattractive people I've ever seen.<br /><br />The film's ""plot"" focuses on a low-class family who decide to go on the ""Jerry Farrelly Show"" to discuss multiple affairs between a mother, daughter, stepfather and the daughter's fiancee. From there, the movie fizzles and develops into a unique experience: white-trash pornography. There's redneck sex, interacial sex, even sex between Jerry and his wife? (Yuk!) This film encouraged me to want to run out of the theater and get a second circumcision. At least it was mercifully short. Disgusting and degrading. African-Americans and working class America should be offended. (Howard Stern should be pleased however, he didn't squander his attempt for film stardom. His was smart, funny and entertaining)<br /><br />MY GRADE: F+ (the daughter was hot)",0 +6352,Two sailors are on leave--ladies man Joseph Brady (Gene Kelly) and shy innocent Clarence Doolittle (Frank Sinatra). They meet beautiful Susan Abbott (Kathryn Grayson) and both fall in love with her. There's more but you've probably guessed it.<br /><br />The story (even for a 1940s musical) is ridiculous and everything is so nice and wholesome--gets annoying pretty quick. Also this movie is far too long. It's 140 minutes and that's way too much for such a silly story. There are also some boring numbers by Jose Iturbi and his orchestra. Still this is worth catching.<br /><br />When Kelly is dancing or Sinatra or Grayson are singing this becomes magical. None of the songs are particularly memorable but Sinatra had such a beautiful voice you won't care. It's shot in rich Technicolor with all the gloss MGM had. The acting is OK--Kelly is fine (although seeing him as a ladies man is pushing it) and Sinatra is just great (although seeing HIM as a shy guy was pushing it too!). Grayson is given nothing to do but she's incredibly beautiful to look at. Some shots of her literally took my breath away! There are plenty of highlights here: Sinatra and Kelly's big dancing and singing number; Sinatra singing anything; Grayson's two songs and the justly famous animated sequence in which Kelly dances with Jerry--an animated mouse! Tom does a funny cameo too. Also there's little Dean Stockwell who steals every scene he's in.<br /><br />So it's too long and the plot just doesn't hold up but it's still worth catching. This was a huge hit in its day.,1 +167,"Sure, this movie is sappy and sweet and full of clichés, but it's entertaining, and that's what I watch movies for. To be entertained. Natasha Henstridge is stunning, even with the short hair. Her smile is radiant and her beauty can't be disguised. As for Michael Vartan, I'm sure the women love him. The two of them seemed to really like eacb other in this film. I don't understand the comments that there was no chemistry between them. I guess we see what we want to see.<br /><br />Olivia d'Abo and Michael Rigoli were fun to watch, even if d'Abo's British accent did creep into her supposed Bronx speech. To tell you the truth I hadn't really noticed it until I read these comments, but I went back to the DVD and now her dialogue sounds more British than American to me, but she was ideal for her role with that one exception. <br /><br />It's a story of two nice people who are getting married to significant others, but who find their soul mates in one another. It may be an unlikely story, but who says movies are all supposed to play like documentaries? It is no more unrealistic than any of the dramas that are screened every hour on the tube. That's why we watch them, to escape from the humdrum of daily living for a short time and enter the world of the characters on the screen. I thought these actors did a good job of it, but hey, I'm a sentimental guy who tears up easily. Don't get me wrong though, it has to be a sentimental scene, and this movie had plenty of those.<br /><br />I give it 9/10 only because I'm saving my 10/10 for that yet unseen super magnificent movie that I know will come along some day. If you see it advertised as coming up on the Movie Channel or Lifetime Movies, or whatever, make a note to watch it. I think you'll like it.",1 +14229,"*SOILER* It's fake! The whole thing is a fake! There is no ghosts or zombies, Alan is a Lord and his cousin or brother or half brother or something like that wants the castle and his title for himself. So he invests this overly complicated and needless pointless plan ala SCOOBY-DOO to drive Alan to commit suicide. Most of the movie is him picking up redheads and attacking them. He's not even killing them. He drops off to sleep and the girl vanishes and he thinks he buried them someplace. If he looked at the so-called ghost of Evelyn, he could tell she was wearing gloves! My God what a waste of time. Don't bother watching it, renting and if you bought it and haven't watched it yet, sell it. Quickly! Do yourself a favor and stay away from THE NIGHT EVELYN CAME OUT OF THE GRAVE. I give this stinker the CRAP-O-LANTERN.",0 +8778,"Gandhi, the Great :<br /><br />Greatness in the world is associated with people like Alexanader the great, Ashoka the Great for their greatness lied in being glorified as more than humans. Gandhi is called great for actually not being a Great but being more human, for I always believe bringing out the humanity in us is where the greatness of being human lies.Gandhi was a human with humanity and one who strived for humanity ready to sacrifice himself in the battle for humanity but not his enemies. Let me move to the movie review now.<br /><br />About Gandhi My Father :<br /><br />Gandhi My father is a film not about Gandhi but about his son Harilal Gandhi.On telling the story of a son whose father was one of the greatest humans to walk this earth, the director succeeds in portraying the tale.The film succeeds in telling the story of a mislead son of a father who lead a nation to greatness.The movie is termed as a criticism of Gandhi's failure as a father to his son, I would rather say it is of a sacrifice Gandhi had made as a father of a son to do justice as a father of a nation.<br /><br />I wish the essence of this movie prevails not just in India, the Gandhian land, but through the hearts of all the people of this world.<br /><br />Gandhi the true Human. Jaihind.",1 +13646,"It's interesting to see what the director tried to do with this film. But the problem is that it's not very good. There was nothing really original in the film and while the plot was well presented, the main characters were all a bit to shallow and you didn't bother for any of them.<br /><br />Rather bland (and sometimes downright bad) photo leaves a bit to be desired but I guess you can't expect to much from people who are just doing a low budget film for the heck of it. It's unfair to review the film and compare it to other high-budget films. But alas, that is what one must do. On its own, it's not very good. And compared to others, it's still not very good. But it is not without its good points! I liked the plot. It was built up rather nicely and tied together well at the end. Sometimes in the really dark scenes, it managed to build up a creepy feeling as well.<br /><br />However in the end the film fails to impress. The characters are pretty much non-existent and we don't care for any of them. Any of them might die, but it's possible to pinpoint the final ""survivor"" from very early on.",0 +6206,"The Thing About My Folks is a wonderful film about relationships - first and foremost an adult son and his father, but also that son with his wife, his sisters and his mother. Paul Reiser has written a semi-autobiographical movie about his relationship with his father. The movie is funny, poignant and thought-provoking. It led me to re-evaluate my own relationship with both my now-deceased father and my adult son. Peter Falk is excellent as Paul's father - the role could not have been better cast. I hope that both Mr. Falk and Mr. Reiser are recognized in next year's movie awards for their efforts - Falk for his performance and Reiser for his script.",1 +6011,"One word can describe this movie and that is weird. I recorded this movie one day because it was a Japanese animation and it was old so I thought it would be interesting. Well it was, the movie is about a young boy who travels the universe to get a metal body so he can seek revenge. On the way he meets very colorful characters and must ultimately decide if he wants the body or not. Very strange, if you are a fan of animation/science-fiction you might want to check this out.",1 +7178,"Its a shame she didn't get screen credit , she by far did the best job in the film has the girl on the cross , best part of the movie .She had much more impact than Avril , or just about anyone else in the film . She almost made S/M look like fun ! She really was believable has the S/M model that gets scared of her situation . Although they seem to really have messed up that sort of dreamy feeling of looking for the bad guy , Those sets were very well built but they just sort of skimmed the surface of what was shot . This is one film were both cuts should be made available. It seems they left out a lot of what was shot , and almost all of the really dark stuff that would have made the film much more demented . Its kind of like they stopped short of the mark they were going for during filming . What was shot would not have gotten a R rating probably a NC-17 or X , but that is what it would have needed to make the film they way it should have been .",1 +17994,"Normally I would have given this movie a 6. It tackles a very important topic and it does it relatively well - despite Katie Wright which is an accomplishment in and of itself.<br /><br />I have no idea if she was actually instructed to play the character like this or is naturally irritating, but she did an awesome job at making it impossible for me to care for Lexi. There's no dimension to her other than how confused, helpless and clueless she is, and how good she is at whimpering. I can understand how a young girl who blames herself for the loss of her friend and whose eating disorder has spiraled out of control would be distraught, scared and in pain. However, Wright's entire performance is based on incessant wailing and sniveling, the rest being whining. I couldn't help but feel this particular girl's problem was caused not by the demon that is Bulimia, but by her not having a backbone. I very much doubt that's the point the movie meant to make.",0 +12777,"i saw this movie at the toronto film festival with fairly solid expectations. the movie has a great cast and was closing at the festival so it must be good, right? how wrong i was. <br /><br />i knew we were in trouble when before the film the director was talking about how when he was directing an episode of wiseguy he met an unknown actor named kevin spacey (a director/writer of wiseguy making his feature debut = blah)... well the director/writer of Edison must have some incriminating pictures of kevin spacey killing a homeless man, because i cannot see how he (along with the other actors in the film) would ever agree to be in this disaster. <br /><br />this movie is absolutely appalling! it's a mixture of every cop hard boiled cliché ever. there is nothing new with Edison. the acting was bad and the direction was even worse. it looked like that aforementioned episode of wiseguy. this was the best casted direct to video movie i've ever seen. <br /><br />some examples of just bad silly moments in Edison... morgan freeman dancing around his apartment for no reason to rock and roll music... justin timberlake getting creative criticism from his belle while his apartment is surrounded by candles... llcoolj driving a vintage firebird... 3 guys being shot in the head...<br /><br />this movie is the opposite of good.<br /><br />STAY AWAY FROM EDISON!",0 +24180,"What was the deal with the clothes? They were all dressed like something out of the late 70's early 80s. The cars were even were outdated. The school was outdated. The nuns attire was outdated, and the hospital looked like something from the 40's, with its wards and wooden staircases and things. Nothing in the whole movie implied it took place in 1991. My mother was laughing, saying ""Geeeee-od! WHEN was this movie MADE?"" When we pressed the ""INFO BUTTON"" on our remote, we were sure 1991 had to be typo! Did anybody else notice this? My FAVORITE part, though, was when the woman tells her uppity muck husband, on the telephone, about the inverted cross in the mirror, and he just says ""Well, look, I've got a congress meeting. I'll talk to you about it later."" That line was just classic. JUST LIKE A MAN! My mothers favorite part was when they gave the ""Spawn of the Devil Child"" her very own Rottweiler. My mother said ""Just what the Spawn of the Devil needs... a Rottweiler"" She also enjoyed all of the people collapsing in the churches, clutching their chests. Her OTHER favorite part was the guy at the school parking lot, driving 5 miles a hour, driving right into the garbage truck/dump truck/front end loader thingee. He had about 20 seconds to just stop the car...but he just kept going, with a real dumb vacant look on his face. I mean, how fast can you GO in a school parking lot?!?! Whatever!",0 +20483,"This film was a disaster from start to finish. Interspersed with performances from ""the next generation of beautiful losers"" are interviews with Bono and The Edge as well as the performers themselves. This leaves little time for the clips of Leonard Cohen himself, who towers over everyone else in the film with his commanding yet gentle presence, wisdom and humor. The rest are too busy trying to canonize him as St. Leonard or as some Old Testament prophet. Many of the performances are forgettable over-interpretations (especially Rufus & Martha Wainright's) or bland under-achievements. Only Beth Orton and Anthony got within striking distance of Leonard's own versions by using a little restraint. Annoying little pseudo-avant-garde gestures are sprinkled throughout the film- like out of focus superimpositions of red spheres over many of the concert and interview shots, shaky blurred camera work, use of digital delay on some of Leonard Cohen's comments (making it harder to hear what's being said) and a spooky, pretentious low drone under a lot of the interview segments (an attempt at added gravitas?). For the real thing, see the Songs From The Life Of documentary produced by the BBC in 1988.",0 +24473,"I've been trying to track down this film just by googling bad phrases about ""teenagers seduce and kill man in his house"" and such. I think I first saw parts of this film when I was about 10 years old when it was running on cable. It made quite an impression! It's the kind of film that kids know they shouldn't be watching, and switch the channel when their parents come in. When I saw who the cast was, I couldn't believe that some of these good actors were in such a horrible movie. Then again, if you like to see men who cheat on their wives get murdered, then this is an interesting film. Also, if I recall, there's some pretty interesting pseudo-lesbian moments. Probably the dumbest ending of all time, but still...memorable.",0 +5998,"Reading some of the comments on the message boards here I was expecting this movie to be a complete letdown - but when I watched it I could not stop laughing! It has officially become my new favourite movie.<br /><br />I don't know what all the hate here is about, maybe it's because a movie of this kind has never really been around before. I am at a loss to name another completely female driven comedy. Plenty of comedies will have one or two actresses in the lead, but there will be a lot of supporting male characters. This one was almost ALL women - with the exception of Seth Meyers, Justin Hartley and the brief appearance of Will Arnett - and it worked. All of the actresses delivered very funny performances (especially Missi Pyle) from a quirky and lovable script.<br /><br />The charm of this film, to me, seems to be in its subtle feminist message: accepting who you are, female success in the public sphere, the strength of female friendships and breaking gender roles. Light-hearted though it is, each of the lead characters face a challenge as their attempts to be more 'fun' conflict with their feminist values and who they knew themselves to be.<br /><br />Missi Pyle proposed that this film missed a theatrical release because of its all-female cast and lack of a big-name actor to get the studios behind it, and I have to agree. Everyone I've recommended this film to has loved it and I think it's a shame that a comedy celebrating female dorkiness hasn't been widely accepted and successful.<br /><br />I highly recommend this film to anyone with an open mind or a love of female-centred comedy.",1 +22672,"Not a knock on Korman as he was very funny on the Carol Burnett show. He was also good at playing secondary characters in Mel Brooks' movies (""High Anxiety"" comes to mind). He is, however, not a person who can carry a movie in dueling roles no less. This one is basically a ""Gremlins"" knockoff, following a tradition of such movies as ""Critters"" and ""Ghoulies"". It is not a very good knockoff either, on par with ""Ghoulies"", but with a much lighter tone to it as it is no where near as dark as that movie got. In fact, this one is too light and frothy, and unfortunately many of the jokes end up falling flat. Though I did give it a 3 for a score, this is only because there is a movie that is even a worse ""Gremlin"" knockoff. If you watched Mystery Science Theater 3000 you know the one I am talking about...the infamous ""Hobgoblins"". This one has a guy finding a little critter in some underground place (I only saw this movie once a long time ago so I don't remember everything to clearly) and it starts out friendly enough. However, this creature quickly becomes unfriendly and of course more are spawned and that is the movie. More misses than hits in the joke department, and it is also really lame to see Korman playing the evil brother role. Best to skip this one, but then you may want to check it out just for kicks.",0 +247,"The unlikely duo of Zero Mostel and Harry Belafonte team up to give us some interesting performances and subject matter in The Angel Levine. It's one interesting twist on the themes from It's A Wonderful Life.<br /><br />Zero is married to Ida Kaminsky and the two of them belong to a special class of elderly Jewish poor in New York. Mostel used to be a tailor and proud of his trade, but his back and arthritis have prevented him from working. Kaminsky is mostly bedridden. He's reduced to applying for welfare. In desperation like Jimmy Stewart, he cries out to God for some help.<br /><br />Now maybe if he had gotten someone like Henry Travers things might have worked out differently, but even Stewart had trouble accepting Travers. But Travers had one thing going for him, he was over 100 years off this mortal coil and all his ties to earthly things were gone. God sent Mostel something quite different, the recently deceased Harry Belafonte who should have at least been given some basic training for angels before being given an assignment.<br /><br />Belafonte hasn't accepted he's moved on from life, he's still got a lot of issues. He also has a wife, Gloria Foster, who doesn't know he's passed on, hit by a car right at the beginning of the film. You put his issues and Mostel's issues and you've got a good conflict, starting with the fact that Mostel can't believe in a black Jew named Levine.<br /><br />This was the farewell performance for Polish/Jewish actress Ida Kaminsky who got a nomination for Best Actress in The Shop on Main Street a few years back. The other prominent role here is that of Irish actor Milo O'Shea playing a nice Jewish doctor. Remembering O'Shea's brogue from The Verdict, I was really surprised to see and hear him carry off the part of the doctor.<br /><br />The Angel Levine raises some interesting and disturbing questions about faith and race in this society. It's brought to you by a stellar cast and of course created by acclaimed writer Bernard Malamud. Make sure to catch it when broadcast.",1 +21475,"I've written at least a half dozen scathing reviews of this abysmal little flick and none get published, so I must opine that someone at imdb.com really likes this awful movie. The idea that a bunch of oilmen can resurrect a military tank that has set in the desert for over a decade, and make a fighting machine of it again is ludicrous. So is the acting and direction. Pass on it.",0 +23611,"How Disney can you get? Preppy rich girls act like idiots, buy a bunch of stuff, and get taught a lesson. Is Disney trying to send a lesson to itself? That maybe while buying everything it should maybe still be human? Whatever the psycho-analysis, this movie sucked.<br /><br />The girls want a rich party for their rich lives. But then money disappears and they have to use their riches to get the milk plant (yes, milk) going to employ the workers. They keep it afloat until daddy comes home. And the man at the beginning, who appears to be the one that takes the money, is the one. But the ending is dumb. Webcam in the Cayman Islands? Huh? Not worth my time ever again. <br /><br />But it is better than Howl's Moving Castle. ""D-""",0 +21401,"This is the kind of film that everyone involved with should be embarrassed over. Poor directing, over the top acting and a plot that rambles on with no point other than to show violence. I thought when I first saw it that it would be perhaps a satire of the media and how it shows violence but it's not. I'm not sure what makes the film worse. Oliver stone does his worst directing ever. From scenes where Woody Harrelson's face morphs for no reason or Robert Downey Jr's dreadful performance as Wayne Gale who is a reporter who seems totally bonkers, this movie is simply a mess.",0 +18328,"After spotting the high rating on IMDb, I decided to go see this movie. Beyond that high rating, I intentionally avoided reading any of the reviews. I wanted to go into the theater with a clean slate, without knowing the plot or having predetermined expectations.<br /><br />Given my rating, you can see that I was disappointed. I enjoyed the development of the main character Mike Enslin. I also enjoyed how the hotel manager attempted to talk him out of entering the hotel room. By the time Enslin entered the room, I was ready for some scary stuff.<br /><br />First chocolates appear on the pillow and the toilet paper is folded. Enslin reacts in a believable manner. He's freaked out. I'm encouraged and think to myself, this is going to be good. The people who made this movie understand that less is more.<br /><br />But it's what happens next that was a big let down. The subtleness is quickly replaced by the predictable shotgun approach... Just blast the audience with every Hollywood scary trick in the book and hope that something works. Let's see, a clock radio that turns on by itself? Good, that's always scary. Objects that move around in the room? Good, you can't complain about that. Blood dripping from the walls and sink? Great. Ghosts that commit suicide? Good. Anything else? How about loud noises, shaking, fire, more shaking, messing up the room, more blood, etc etc. It's all good. And it's all been done before. Overstimulate our Attention Deficit Disordered audience with all kinds of stuff in quick succession, and they won't be able to look away.<br /><br />Well, it didn't work for me. And you know what else? When I go see a horror movie in a theater, it's typical to hear several groups of girls in the audience yelling in fear at scary moments. But this movie had no scary moments. The audience was silent and disinterested. I felt no chill down my spine. Nothing. The Shining was 100x what this movie tries to be.<br /><br />So who are all these people who are saying that it is one of the best horror movies ever? Friends of the director? Sorry, I just don't get it.",0 +7307,"As a knowledgeable fan I recommend this film as faithful to the facts and well acted. As an 11 year old living in Istanbul I heard some friends talking about a new music sensation that caused girls to scream. I thought hmmmm, if girls like them, they must be crap. My only records until then were Haley Mills, The Everly Brothers & Ricky Nelson. Soon after while on vacation with the family at a military cafeteria in Ismir I heard a song (which I later learned was 'Love Me Do') and was floored by the difference between it and every song I had ever heard until then. When I heard the 'Meet The Beatles' album of my older brother I was hooked for life. Having read the definitive book of their beginnings (by Davis) I was surprised that this movie followed the facts very well with the exception of leaving out most of the sex and some of the drug use (it did touch on the use of methadrine/dexadrine). >",1 +2744,"i just saw this movie on TV..<br /><br />i've lost my dad when i was young and this movie surely did touch me..<br /><br />i can feel the lost that the little girl Desi felt..<br /><br />the feeling of wanting to see her father again..<br /><br />wanting to talk to him..<br /><br />or at least given the chance to say goodbye..<br /><br />and i'm so touched with the letter that was wrote back to her..<br /><br />saying that her father read her letter, and sent it back to someone to reply her and buy her a present because there isn't a shop in heaven..<br /><br />it just lets me feel that miracles do exist..",1 +2864,"Without ""mental anachronism"", this film which I would like to find in DVD offer an extraordinary diving in the vital and mental context of thought of the people before the ""disenchantment of the world"". That, there is thirty years, a director and a scenario writer could test one such empathy and such a romantic truth to do it of them masterpiece leaves me astounding. It would be necessary to be able to see and re-examine it film for better seizing than the temporal and cultural distance us to make lose of capacity to be included/understood, analyze and finally to accept of such or such example of ""primitive thought"". Because this thought maintaining almost impossible to feel in the secularized world however contain certain keys of our behavior, that only them future generations will be able to analyze with sufficient relevance. If somebody knows where I then to get a numerical copy or VHS to me or DVD thank you in advance.",1 +9162,"Going into see Seven Pounds i wasn't clearly sure what to think because the previews left to much open to grasp what the movie was really about. So within the first 20 min or so you are completely lost in the plot, have no idea what is going on and you think Tim, who claims to be Ben, is just a big asshole. All of this comes to an end when the ""twist"",so to speak, is unraveled at the very last minute of the movie. Basically Tim (will smith) was troubled and haunted by a big accident he made causing the end of seven peoples lives. By this he decides to scope out seven new people who are in need of help badly who he in turns gives his life to.<br /><br />The acting of this film is great, as i feel will smith no matter what part he seems to impress. Rosario Dawson, to me, this is one of her better movies, aside from eagle eye which i think is up there to. She has been in some bad some good but she does deliver in this film. Other actors, such as woody Harrelson, have very small roles and not a big enough role to grasp the character. Although the casting of the film was still good.<br /><br />This movie was definitely not what i expected and certainly a lot slower pace in which i hoped. The movie, however, was still pretty good. Nothing is revealed until the last 5 min of the movie and everything falls into place. Up until then it just seems like a pointless love story. Final thought seven pounds=seven Stars.",1 +16899,"Im watching it now on pink (Serbia TV station) and I must say this is a crap. Shallow, no acting, effects too sloppy I mean, who made this series?<br /><br />This was a stupid attempt of the Studios to make some more money on the success of the film. OK. The film was great in 1994 when it came out. But the series?<br /><br />Some times you can see how idiotic the lines are in the speech of the characters. I mean, did they actually pay someone to write that, was that someones relative at the Studio? This is no SciFi.<br /><br />The film was the bomb, the series suck.",0 +13771,"This flick reminded me of those lame ""erotic thrillers"" I used to stay up late and watch on Cinemax when I was 13. I'd label this flick softer-core since there is just no simulated bump and grinder. There is, however, a ton of nudity- the opening scene is in a strip club, we see Kane Hodder's keester (or at least a stunt butt) and then an inexplicable 10 minute lesbian dance scene in the middle of the film and a nude female werewolf who looks like they mugged on of the Munster's for a costume. 13 year old boys rejoice.<br /><br />Other than that the werewolf transformation scenes have the worst CGI I've seen in years. The shots look like FMV's from the video game Resident Evil in terms of quality. The wolf is too bad to be explained and, despite the poor quality of the suit is shown way, way too many times.<br /><br />The plot and acting make no sense. There is some oddball back story about werewolves and hybrid-werewolves- the Darkwolf is the latter but from what I can tell hybrids do the same thing all werewolves do- look human, change to a wolf an kill people. The Darkwolf is trying to find a mate but oddly can't find the mate but can sniff out anyone she touches. Once more, this skills proves less than useful since the Darkwolf winds up killing several folks his target never touched, met or even saw as best I can tell. The mate doesn't know she's a werewolf and she's fighting the transformation or something.<br /><br />You'd think it'd be hard to mess up a simple monster movie s bad as this but, well they did. Want quality low-end werewolf-ism, go rent Dog soldiers want a ton of T&A this is your flick.",0 +15002,"**SPOILERS**<br /><br />This is one BAD movie. Seriously. Acting in absolutely horrible, the FX are dreadfull and the plot is down right awful. But hey, its so bad that its fun watching! The script is SO bad that its enjoyable! You just have to cringe and laugh at lines such as ""I guess thats what you call CROCTEASING."" as the women flash their breasts at the crocodile. I mean COME ON thats funny cause its so bad! It has such horrible jokes that they're funny! But after a while it just becomes to much as the movie turns into crap. I really started to fall asleep. Trust me though, the plastic croc foot stamping on the leaves and the constant swishes of a crock tail well keep you laughing for a long time. Though I have to say it had one cool part when the croc ripped that dude in half and he just hung there for a while figuring out what to do. Heh heh mindless movie, which HAS to be nominated for the MST3K line!!",0 +8019,This movie is sort of a Carrie meets Heavy Metal. It's about a highschool guy who gets picked on alot and he totally gets revenge with the help of a Heavy Metal ghost. it is such a classic. The soundtrack is A++++. You've got living legends of Metal in it. And Marc Price was great in this film. This is a must have for metal fans.,1 +21579,"The one sheets and newspaper campaign suggested (as often they did) a far more lurid and violent piece than showed up on the drive-in screens. Claude Brook is actually an Americanization of Claudio Brook, who worked in films for years. This one's quite hard to find anymore; I'd love to see it again to compare it to other international horrors of the day, but don't remember particularly impressed way back when. Chances are it was a chopped up version that made it to U.S. theatres and video. But oh, that one sheet...still a gem of my later horror collection.",0 +7431,"Obviously a film that has had great influence not only on the buddy genre but action genre as well. George Lucas had to be a fan of this flick as so much of his Star Wars series seems to a homage to Gunga Din. The characters that Grant, McLaglen, and Fairbanks play are just precursors of Han Solo, Luke Skywalker, and Chewbacca. Even Sam Jaffe's Gunga Din morphed into C-3PO and R2-D2 and like him or not: Jar Jar Binks.<br /><br />Today this film is viewed as non PC but there is a speech by Eduardo Ciannelli as Guru the leader of the Indian opposition to the British raj that could can be echoed in the sentiments of many today. <br /><br />To a young boy this was a great film. Three strong male leads and only a hint of romance. There was a time when young boys deemed kissing the girl in Saturday matinee film was just mush. Not like today when the more skin is greeted with delight. Too late to lament lost innocence.<br /><br />Hopefully this film will not be forgotten and a few who are channel surfing will stop at TCM and catch a film with action, adventure, and a cast of thousands instead of CGI actors.",1 +17687,"OK, so, Chuck Norris somehow found a way to get this sequel produced. I have one question-why? Who read this script and said, ""Sound's great! Original!"" This movie is regurgitated crap that I wouldn't tarnish my toilet bowel with. Of course it is another story, following in the tradition of MIA, Invasion USA, Walker, Texas Ranger, Delta Force and so on in which Chuck Norris, of course, is the one man who can same America from some bad guys. He doesn't even need a gun most times. It's stupid patriotic jargon that stales the mind. Big surprise that the only one who will direct these Norris film's is Chuck's son Eric. Eric Norris has primarily worked on all his father's films and TV shows. Doesn't this strike anyone as a sign that he has no directing talent? Afterall, he's directing the same people as before in the same stories as before...only difference is the characters' names. If this is supposed to make me patriotic and cheer for the USA, than our country is in much worse shape than I ever imagined. Hopefully, this will be the nail in Chuck Norris's acting coffin.",0 +10755,"It's always nice to see Angela Bassett getting to do a role that she can really sink her teeth into. She is at times intense, funny and even sexy in her role as Lena, a ""colored"" woman forced to make a home on a desolate mudbank just outside of Cape Town, South Africa. Danny Glover is also good in a not entirely sympathetic role as her partner, Boesman. Willie Jonah gives a finely nuanced performance as the stranger that discovers Boesman and Lena's new living area. It's not often that you get a chance to see an intelligent film dealing with mature themes. Although it is based on a play, the late director John Berry (who also directed Claudine) opens the material up by having the film shot in the widescreen Cinemascope format. He also keeps things visually interesting through the creative blocking of actors and by showing us things only mentioned in the play. Just like Diahann Carroll in Claudine, John Berry may have directed Angela Bassett into an Academy Award nomination. This is definitely a film worth searching for.",1 +24988,"First off, I'm not here to dog this movie. I find it totally enjoyable in spite of the poor production quality. The acting herein is about as abominable as the monster stalking them, although the monster itself is quite well done...impressively well done, at that. He actually looks kind of other-worldly, like an alien family on vacation landed in the Himalayas and while dad was out taking a ... attending to nature's call, Spot got loose and they just didn't have time to hunt him down. That, or he's the Caucasian brother of the Wishmaster. I haven't decided which.<br /><br />Actually, this seems to have been filmed somewhere in snow country, yes, but more likely Canada somewhere than China anywhere. The trees and vistas say Canada to me, and it's okay that the set area never takes on the look or feel of uber-coldness one might expect to find in the Himalayas of China. It's a Sci-Fi Channel movie, so we can forgive the lack of location.<br /><br />Further, apparently (as we have just established) Sci-Fi directors do not travel often, as they are not aware that commercial planes fly above weather like what is featured herein and the subsequent crash actually would not have happened. But as I said, it's a Sci-Fi Channel movie so we must forgive a few things.<br /><br />The movie is pretty graphic at times, and rotates between ""Alive"" about the Donner Party, ""Predator"" about the alien in the woods, and any bad wushu movie where they fly about on wires. The Yeti apparently can leap about like Spiderman...or Super Mario...remember? ""Run faster! Jump higher! Live longer!"" <br /><br />Also, the Yeti has missed his teddy bear. He's searched high and low for it, but cannot seem to make a cadaver work. Poor Yeti! You can't help but feel sorry for it. It has survived and evolved thousands of years only to succumb to severe teddy bear loss. He's missed his bear. Or maybe it wants to mate, but that thought is BANISHED! Do ya hear me? Well, it does seem to be an unmated male. REBANISHED! <br /><br />And it's superhuman. Well, it's not human...it's super-Yeti! But then again, what's normal-Yeti? I don't know, but he has a definite Michael Meyers quality that is completely unsettling. And he's got this fabulous way of cleaning his fur. FABulous Dahlink! It's spotlessly white at times when it SO shouldn't be. He's fastidiously superhu-...super-Yeti.<br /><br />All in all? This was a lot of fun to watch, has some great kills and a few honest plot elements. In spite of the horribly gravel-like production style, this is actually quite entertaining. I can't help wondering if they're planning on another one? <br /><br />It rates a 6.0/10 on the M4TV Scale.<br /><br />It rates a 4.4/10 on the Movie Scale from...<br /><br />the Fiend :.",0 +22594,"The first episode set the bar quite high i thought. It starred William Hurt as a hit-man who is contracted to kill a toymaker. We are given very little information on his character or who is paying him to kill, indeed the episode is notable for having no dialogue at all. Returning to his modernist penthouse he is delivered a package containing toy soldiers, this gives him a smile but he dismisses it and goes about his business. But he is in for a night of hell, the soldiers are alive and are about to wage war, driving jeeps, shooting machine guns and bazookas and even flying helicopters!. The special effects are good for a TV show and it becomes quite tense as he dodges around the apartment using his wits to survive, sometimes getting the upper hand and other times not. I wont spoil the ending but suffice to say it was a clever little twist. This gave me hope for the rest of the series but i was in for a disappointment, the other episodes were all rubbish and i lost interest by the fourth one. Stephen King adaptations are always a mixed bag and these are no exception",0 +15834,"Watched on Hulu (far too many commercials!) so it broke the pacing but even still, it was like watching a really bad buddy movie from the early sixties. Dean Martin and Jerry Lewis where both parts are played by Jerry Lewis. If I were Indian, I'd protest the portrayal of all males as venal and all women as shrews. They cheated for the music videos for western sales and used a lot of western models so the males could touch them I usually enjoy Indian films a lot but this was a major disappointment, especially for a modern Indian film. The story doesn't take place in India (the uncle keeps referring to when Mac will return to India) but I can't find out where it is supposed to be happening.",0 +16782,"Doppelganger has its moments, but they are few and far between.<br /><br />Essentially, this is a grade B blend of pop-psych thriller, ghost story and horror. Drew Barrymore plays a young woman who is haunted by the demons of her past (most of her family has been murdered and she was, in at least one case, the prime suspect), or does she just have a really bad case of multiple personality disorder? George Newbern is her new room mate, and most of the action centers on him.<br /><br />Newbern's character is pretty sympathetic, and both he and Barrymore do decent work (though not exactly good). The mediocre to (at times) totally horrendous script and the unimpressive directing seem to have combined to sink the rest of the performances into oblivion. Leslie Hope's character is memorable, but so irritating that you will want to forget her.<br /><br />The plot eventually disintegrates into a bifurcated (one story arc is psychological realism, the other is supernatural horror) outlandish climax which is so badly conceived, acted and photographed that it effectively counteracts most of what value the film had achieved previously.<br /><br />Overall, the film has the feel of what might expect to be the result of M. Knight Shamalyan's first undergraduate film class. The acting and script for the two leads are just good enough to make you care a little about them - at least until the film derails utterly and completely.<br /><br />My recommendation - send your doppelganger, but avoid a first-person encounter.",0 +17167,"Do not see this movie if you value your mind. At the end of our collective viewing, me and my friends estimated that we each lost 5% of our brains during its course. The only person involved with its making that was not clinically insane was the set designer.<br /><br />Most movies leave a bad taste in your mouth. I realize now that instead of a feeling of revulsion, this movie has bred a deep hatred within me. I hate this movie so very, very much.<br /><br />Some might say this movie is not meant to be taken seriously. If only it didn't take itself seriously. But it does. The plot is a warmed over version of Blade Runner-esque universe melded with the cheap rubber suits so prevalent in bad dinosaur movies. The dialogue is not only puerile and meaningless but often literally painful. Whoopee Goldberg isn't even trying, but George Newbern as the voice of Theodore Rex is like fingernails on the soul. And whether its Juliet Landua with her off again on again British accent or Richard Roundtree (aka Shaft) as the blustering Commissioner, you will sink into an ever increasing sense of incredulity and disillusionment.<br /><br />I recommend this movie only to anyone who wishes to see the depths of stupidity to which mankind may fall.",0 +4813,"What is really sad, shows like Six Degree's and Brothers & Sisters are the true reality TV, not that garbage that are nothing more than glorified game shows. I think the ground swell of discontent has been there for the past few years with very premature cancellation's of numerous shows with a cult following. But with the more vocal backlash the fans of Jericho (which I also enjoy) and other shows, networks may start to reverse this trend. I am like others, I will not support ANY new shows until they have been given a second season. I'll then possibly make a decision to watch and catch up via DVD's and online viewing. Until then ABC, you have lost me as a viewer to ANY new show.",1 +2662,The first time you see The Second Renaissance it may look boring. Look at it at least twice and definitely watch part 2. It will change your view of the matrix. Are the human people the ones who started the war ? Is AI a bad thing ?,1 +4220,"The wonderfully urbane Ronald Coleman is show-cased here as in few other of his films. He is literally in every scene and this comical movie remains fresh because of him, not in spite of him. He is handsome, witty and very clever here as he remains a step ahead of his wandering, lovely wife--played perfectly by Anna Lee. The movie is based on a french play and brings all the best qualities of that farce. Most of the supporting cast is well known, at least by face if not name...and are absolutely perfect for this very funny film. The fantastic Mr. Coleman is a combination of Sean Connery and Clark Gable as he stays a step ahead of the other characters. His multi-talents can be further appreciated in the classic ""Lost Horizon"" which every film buff must see.",1 +3298,"By 1909, D.W. Griffith had been directing films for the Biograph Company for about a year, and working at a rate of two or three per week was rapidly beginning to develop his skills as a filmmaker. 'The Sealed Room' is a very interesting 11 minute short, a fascinating piece of Gothic melodrama that even drifts slightly into the realm of early horror. The simple narrative was probably inspired by Edgar Allen Poe's 1846 short story, ""The Cask of Amontillado,"" and concerns a powerful king who conceives a deliciously sadistic form of revenge to punish his wife's infidelity.<br /><br />Set in medieval times, 'The Sealed Room' begins with the king (Arthur V. Johnson) overseeing the construction of a windowless room from a sequestered dove-cote, the idea being that he and his wife (Marion Leonard) will have a completely private place to enjoy each other's company. He is obviously very much in love with her, always showing his affection, this latest act the crowning achievement of his endearment. However, unbeknownst to the king, his wife has fallen in love with the royal minstrel (Henry B. Walthall). During one romantic liaison inside the specially-built room, the wife and the minstrel are discovered, and the heartbroken king conceives a means of getting his retribution on the ignorant couple. Silently, he orders his workmen to seal off the only doorway with stone and mortar, slowly descending into cackling insanity as each new stone is placed down.<br /><br />D.W. Griffith always had an eye for acute detail, and 'The Sealed Room' is an excellent early example of this. The lavish medieval century costumes lend the film a sense of reality, and the castle interior looks authentic enough to be believable. At the time, the director was also pioneering methods of creating suspense, and I must admit that, as the film progressed, I became fixated on finding out what would happen to the hapless young lovers. In the early minutes, Griffith restricts his shots to lengthy long-takes from a stationary camera (as was usual at the time), but soon parallel to the progressively darker subject matter he alters his editing tactics in a fascinating way. Though he may not have invented the technique, Griffith was crucial in popularising the use of ""cross-cutting"" that is, alternating between different events occurring at the same time. Not only does this create a sense of continuity, but it also maximises the level of suspense, since we, as the audience, are well aware, not only of the king's ghastly actions, but also that the wife and the minstrel are oblivious to it all.<br /><br />Despite these innovations, 'The Sealed Room' suffers from many of the shortcomings typical of the era. The entire film takes place in just two rooms, with footage captured from a total of just three positions, and so it is prone to become dull and monotonous at times. The acting performances are greatly exaggerated for extra effect, however, at least in the case of Arthur V. Johnson, his overplaying actually contributed to recognising the escalating madness of the betrayed king. A moment that I thought particularly effective was when the two lovers attempted to exit the room, only to find their only doorway replaced with a wall of solid stone. Their panicked reactions, accompanied by the silent maniacal cackling of the king, serve very well to create an impending sense of claustrophobia. I did think, however, that their supply of oxygen was exhausted surprisingly quickly.",1 +20051,"REVOLT OF THE ZOMBIES (2 outta 5 stars) No, this is not a long-lost ancestor to the classic George A. Romero zombie flicks. This is a low-budget potboiler from 1936 that probably seemed very cool to audiences of the time... but seems awfully routine these days. There is actually a pretty good scene at the start of a soldier firing off his pistol into a horde of approaching zombie soldiers... and a close-up of bullets entering the bare chest of one of them. The effect looks hopelessly fake these days but in 1936 I'm sure it had audiences gasping. The story concerns the search for the secret of mind control... ostensibly to create an unstoppable zombie army... but later as a means for one character to win the woman he loves. The movie is barely an hour long but moves at a snail's pace so it seems feature-length, believe me! There really isn't much to recommend it... you may get some amusement from the faked studio shots of the star ""wading"" through a ""swamp"". The ending is interesting... so I'd say the movie is worth seeing at least once. More than likely you will see it as an extra feature on some cheap ""4 movies on 1 DVD"" compilation at Wal-Mart for five bucks. Hey, it's well worth the money...",0 +180,"Ah, I loved this movie. I think it had it all. It made me laugh out loud over a dozen of times. Yes, I am a girl, so I'm writing this from a girl's perspective. I think it's a shame it only scored 5.2 in rating. Too many guys voting? It was far above other romantic comedies. Just because I'm female I don't enjoy all chic flicks, on the contrary I prefer other genres. Romantic comedies tend to be shallow and not as funny as they meant to be. But like I said, this movie had it all, almost, in my opinion. Great script, good one-liners, fine acting. Although Eva Longoria Parker's character reminded very much of Gabrielle from Desperate Housewives, but so what? It was awesome. I will keep this film for rainy days, days when I feel low and need a few laughs.",1 +11480,"I enjoyed this movie and I had very low expectation due to all the negative reviews I read before going. I went because I was curious as to what all this fuss was about because some of the postings were so angry with this movie and with the Koreans. Oh and it's from Korea which has put out some of my favorite movies. I liked Host but not my absolute favorite. Some of my favorite sci-fi /fantasy movies so you can have a sense of my taste: Mirrormask, Stardust, Serenity, Gattaca, Willow, Matrix, Resident Evil series, LOTR, Stargate, Dark City.<br /><br />It wasn't confusing like everyone said and the monsters looked good and the battles great. There are some holes in the story but didn't really matter. I sort of tune out stuff like that and stopped asking why long time ago when I see summer blockbusters. The Korean legend was interesting, the reincarnation stuff was different, and I thought the main characters suspiciously dressed like Korean actors in other shows. Ethan's(Behr)hair looked so Asian.<br /><br />Yes, it could be better and I hope in the future that Korea, with its unusual quirky sense of life, intense emotions, and unexpected humor, can bring some diversity to the blockbuster genre. Maybe a combination of Host and Dragon Wars in the future?",1 +775,"When I saw Birthday Girl I liked it so much I set out to see every Nicole Kidman film I could, only to find all of them a disappointment compared to it. I theorize that while the presence of a particular star usually guarantees a certain level of quality because of their artistic control, with Nicole Kidman the influence she exerts is detrimental to film enjoyment--IMHO. Thus for instance, Dogville, even depriving the viewer of anything visual to detract from the existential insight she is hammering home, or other films promoting gay and lesbianism as worthy of anyone else's attention, or other pet causes of Kidman's. <br /><br />Here she is a natural woman and she does a really great job. I don't how or who was able to restrain her, but apparently it worked. The way the film depicts her openness despite her resistance gets to the heart of what makes a woman a woman. And consequently, what makes a man's most desperate hopes marginally attainable. <br /><br />Of course, the fact the male lead transforms from a milquetoast clerk to macho man in the space of one film sounds like a male ego expansion fantasy, but his transformation is adequately believable. It isn't coyly contrived as it would be in a film engineered to bolster male ego. Instead it accurately records necessary growth arising from the films unique circumstances.<br /><br />Also quite charming is the way the criminals are portrayed as perfectly human, apart from their criminal mission. Her gang has a coed rough and tumble fellowship which is foreign to American culture. And while they are his adversaries, they are never really his enemy. In effect, they teach him to be compete.<br /><br />I really marveled at Kidman's ability to physically appear Russian. It had me wondering whether her ancestry was Russian, but none of the photos of her I examined showed any hint of it. Maybe it is just makeup but it was amazing. <br /><br />I can only hope that they knock her over the head again soon so she can turn out another great film. Despite my gratuitous digs at Ms. kidman, the message is this is a superior film in every way and probably the role of a lifetime.",1 +3735,"'The Shop Around the Corner (1940)' is a pleasant romantic comedy, not the sort that I will hold dear to me until the end of my days, but nonetheless a film thoroughly deserving of its reputation. By 1940, director Ernst Lubitsch had long ago taken Hollywood by storm, and his famed ""Lubitsch touch"" had become a sparkling commercial trademark. This film was planned for a 1939 release, but scheduling conflicts meant that James Stewart and Margaret Sullavan were unavailable for filming. Rather than substituting either of his main stars, Lubitsch decided to postpone production, in the meantime directing Greta Garbo in 'Ninotchka (1939).' When it was finally completed, 'The Shop Around the Corner' appears to have been met with relative indifference, receiving zero Oscar nominations despite an excellent screenplay by Samson Raphaelson and fine performances from its two leads and Frank Morgan in a supporting role. Time, nevertheless, has betrayed the film's massive and enduring influence, with high-profile remakes including 'In the Good Old Summertime (1949)' and 'You've Got Mail (1998).'<br /><br />At its surface, one might assume 'The Shop Around the Corner' to simply be the story of two lovers, Klara Novak (Sullavan) and Alfred Kralik (Stewart), who love each other without knowing it. However, Lubitsch's film runs much deeper than that. It's the story of Matuschek and Company, a stylish gift shop in Budapest, and the various human relationships that make the store such a close-knit family. When store-owner Hugo Matuschek (Frank Morgan) begins to suspect his oldest employee of having an affair with his wife, we witness the breakdown of two families, both at home and at work. There's absolutely no reason why the story should not have been set in the United States perhaps in the blustery streets of New York but Lubitsch was deliberately recreating the passions and memories of his former years in Europe, the quaintness of love and life before war brought terror and bloodshed to every doorstep. This subtle subtext brings a more meaningful, personal touch to the film in fact, even as I write this review, I'm beginning to appreciate the story even more.<br /><br />Sullavan and Stewart are both lovely in their respective roles, but I think that it's the supporting cast that really make the film. Each character brings a distinctive personality to the mix, and their interactions are always believable and enjoyable. I especially liked how Lubitsch knowingly directed much of our sympathy towards Hugo Matuschek, who, in any other film, would have been restricted to an underdeveloped, two-dimensional portrayal. Matuschek may have lost the love of his family, but he recaptures it in the affection of his employees, and you feel a heartwarming glow when, in the bitter cold of a Christmas Eve snowstorm, he finds companionship in a freckle-faced young errand-boy (Charles Smith). This genuine warmth towards a supporting character strikes me as being similar to several of Billy Wilder's later creations, for example, Boom Boom Jackson in 'The Fortune Cookie (1966)' or Carlo Carlucci in 'Avanti! (1972).' Of course, it doesn't really need saying, but Billy Wilder learned from the best.",1 +3181,"This movie is still an all time favorite. Only a pretentious, humorless moron would not enjoy this wonderful film. This movie feels like a slice of warm apple pie topped with french vanilla ice cream! I think this is Cher's best work ever and her most believable performance. Cher has always been blessed with charisma, good looks, and an enviably thin figure. Whether you like her singing or not - who else sounds like Cher? Cher has definitely made her mark in the entertainment industry and will be remembered long after others have come and gone. She is one of the most unique artists out there. It's funny, because who would have thought of Cher as such a naturally gifted actress? She is heads above the so-called movie ""stars"" of today. Cher is a real actor on the same level as Debra Winger, Alfre Woodard, Holly Hunter, Angela Bassett and a few others, in that she never seems to be ""acting,"" she really becomes the character convincingly. She has more than earned the respect of her peers and of the movie-going public.<br /><br />Everything about Moonstruck is wonderful - the characters, the scenery, the dialog, the food. I never get tired of watching this movie.<br /><br />Every time single time I watch the scene where they are all sitting around the dinner table at Rose's house, I pause the remote to see exactly what delicious food Rose is serving. I saw the spaghetti, mushrooms (I think), but I can't make out whether they are eating ravioli, ziti? What is that main course? It looks wonderful and its driving me nuts! <br /><br />Everybody in that family was a hardworking individual and they respected and cared about one another. The grandfather wasn't pushed aside and tolerated, he was a vital part of the family and he was listened to and respected for his age and wisdom. He seemed to be a pretty healthy, independent old codger too.<br /><br />Loretta's mom wasn't ""just a housewife,"" she was the glue that held the family together and was a model example of what a wife, mother, and home manager should aspire to be. She was proud of the lifestyle she had chosen but she didn't let it define who she was. High powered businessmen aren't as comfortable in their skin as Rose Casterini was. Notice the saucy way she said ""I didn't have kids until after I was 37. It ain't over 'til its over."" You got the sense that she had been the type of young woman who did exactly as she pleased and got her way without the other person realizing what had happened. She was charming, quick witted, and very smart. What a great mom! <br /><br />I didn't actually like Loretta right away because she seemed like a bit of a know--it-all who wasn't really as adventurous and as in control of herself as she wanted others to think. She could tell others about themselves and where they had gone wrong, but she really didn't apply common sense to her own life. She was going to marry a middle-aged mama's boy simply because she wanted a husband and a sense of identity and purpose to her life. She was more conventional than her own mom. She dressed and wore her hair like a matron at a house of detention and seemed humorless and bored, but underneath you sensed that she was vulnerable and lonely and had a lot of love to give the right man. She would probably end up making an awesome mom too.<br /><br />I could see in the future, a house full of Loretta and Ronnie's loud, screaming happy kids and Rose and Cosmo enjoying every minute of it.",1 +11465,"VIVAH is in my book THE BEST MOVIE OF 2006 ! PERIOD !!. In my book it is one of the best 100 movies EVER MADE IN Bollywood. Its sad that this movie doesn't have that many reviews and isn't having that much popularity. <br /><br />VIVAH is once again a true achievement from a director who DOES it again. After HAHK and Maine Pyar Kiya Sooraj has once again pulled off a brilliant one VIVAH. <br /><br />This is the most simple and cute movies that I've seen this year. After seeing Don 2 which was CRAP and later Dhoom 2 which even beat Don in that matter, I finally see a movie which is so close to my heart and my culture.<br /><br />I don't know why Bollywood is moving away from the beautiful culture which we have and are making Hollywood remake style crap movies like Dhoom 2 and don. <br /><br />The story is beautiful and relates much to the Indian system of Arranged marriage which I too would like to be a part of. Our system which teaches us to obey elders, follow them and of course obey their thoughts is so brilliantly shown in this movie!. Of course there isn't any force in choosing your life partner and it should be a brief meeting between the couple and its up to them to decide as it is brilliantly shown in this movie. <br /><br />Coming back to the movie.....VIVAH is a story of Journey between the beautiful period of Engagement and marriage. The phase where the guy meets the girl !....Both understand each other ..Both try to assess if they could love each other for Seven generations (as our system says) and the various which occur during marriages.<br /><br />Amrita Rao is brilliant in the movie.......Shahid is OK.....and Alok Nath and Anupam Kher are awesome !! The songs are BRILLIANT. ! I especially like the HAMARI SHAADI MAIN HAFTE REH GYE CHAAR and Do Anjaane Ajnabi ......<br /><br />Overall A MUST SEE for anyone who still believes in the Indian culture and tradition and I certainly do !.<br /><br />Go see this movie......I just have to say one word.......<br /><br />BLISS !.",1 +13384,"There was a genie played by Shaq His name was Kazaam, and he was whack His rhymes were corny, this lines were bad some stupid kid cryin over his stupid dad bad actin, bad casting, bad special effects whats next? this movie sucks Prolly didn't make 20 bucks he lives in a boombox not a lamp hurts like a cramp like a wet food stamp...<br /><br />Yeah, you get it, a stupid rhyming genie who can't act, in a stupid movie with horrible special effects. Oh, and its confusing as hell. I'm not even gonna go on. Let's just say, it belongs in the ""its so bad, its funny"" category. Watch it once with your buddies and get a good laugh. But don't expect anything spectacular.",0 +469,"Mario Lanza, of course, is ""The Great Caruso"" in this 1951 film also starring Ann Blyth, Dorothy Kirsten, Eduard Franz and Ludwig Donath. This is a highly fictionalized biography of the legendary, world-renowned tenor whose name is known even today.<br /><br />The film is opulently produced, and the music is glorious and beautifully sung by Lanza, Kirsten, Judmila Novotna, Blanche Thebom, and other opera stars who appeared in the film. If you're a purist, seeing people on stage smiling during the Sextet from ""Lucia"" will strike you as odd - even if Caruso's wife Dorothy just had a baby girl. Also it's highly unlikely that Caruso ever sang Edgardo in Lucia; the role lay too high for him.<br /><br />In taking dramatic license, the script leaves out some very dramatic parts of Caruso's life. What was so remarkable about him is that he actually created roles in operas that are today in the standard repertoire, yet this is never mentioned in the film. These roles include Maurizio in Adriana Lecouvreur and Dick Johnson in ""Girl of the Golden West,"" There is a famous photo of him posing with a sheet wrapped around him like a toga. The reason for that photo? His only shirt was in the laundry. He was one of the pioneers of recorded music and had a long partnership with the Victor Talking-Machine Company (later RCA Victor). He was singing Jose in Carmen in San Francisco the night of the earthquake.<br /><br />Instead, the MGM story basically has him dying on stage during a performance of Martha, which never happened. He had a hemorrhage during ""L'Elisir d'amore"" at the Met and could not finish the performance; he only sang three more times at the Met, his last role as Eleazar in La Juive. What killed him? The same thing that killed Valentino - peritonitis. His first role at the Met was not Radames in Aida, as indicated in the film, but the Duke in Rigoletto. So when it says on the screen ""suggested by Dorothy Caruso's biography of her husband,"" that's what it was - suggested. What is true is that Dorothy's father disowned her after her marriage, and left her $1 of his massive estate. They also did have a daughter Gloria together (who died at the age of 79 on 10/7/2007). However, Caruso had four other children by a mistress before he married Dorothy.<br /><br />Some people say that Lanza's voice is remarkably like Caruso's, but just listen to Caruso sing in the film ""Match Point"" -- Caruso's voice is remarkably unlike Lanza's. In fact, from his sound, had he wanted to, Caruso could have sung as a baritone. He is thought to have had some trouble with high notes, further evidence of baritone leanings; and the role he was preparing when he died was Othello, a dramatic tenor role, which Lanza definitely was not. Lanza's voice deserved not to be compared with another. He made a unique contribution to film history, popularizing operatic music. He sings the music in ""The Great Caruso"" with a robust energy; he is truly here at the peak of what would be a short career. His acting is natural and genuine. Ann Blyth is lovely as Dorothy and gets to sing a little herself.<br /><br />Really a film for opera lovers and Lanza fans, which are probably one and the same.",1 +3877,"in one of Neil Simon's best plays. Creaky, cranky ex-Vaudeville stars played by Walter Matthau and George Burns are teaming up for a TV comedy special. The problem is they haven't even SEEN each other in over a decade. Full of zippy one liners and inside showbiz jokes, this story flies along with a steady stream of humor. Good work also by Richard Benjamin as the harried nephew, Rosetta LeNoire as the nurse, and Howard Hesseman as the TV commercial director. Steve Allen and Phyllis Diller appear as themselves. Trivia note: The opening montage contains footage from Hollywood Revue of 1929 and shows Marie Dressler, Bessie Love, Polly Moran, Cliff Edwards, Charles King, Gus Edwards, and the singing Brox Sisters.",1 +7486,"Very good point there : ""only an elite few (the upper classes) would both have access to the internet AND be able to communicate on an exclusively English speaking site such as the IMDb"" Some might think Internet Is not reality but this point of view really put media society and democracy at stake: You are probably right.. Even If there Is Internet cafe's in Venezuela most Chavez supporters will not afford to even rent a computer for half an hour to comment on IMDb.<br /><br />Screw you faschist upper class rich right wing capitalist liberal intellectual surpressors .. Probably this is your first time using Internet ;)..",1 +11078,"Disney (and the wonderful folks at PIXAR of course) offer a nice, humourous story combined with the best of computer animation. I admit that maybe the 'faces' of the bugs were a little more static than in 'Antz' and they only had four legs (in 'Antz' six...). But backgrounds were superb and animation was breathtaking. But let this be a lesson: it was not the computer who made it such a success : it was the man behind the machine, who added the nice little twists, which I missed in 'Antz'. Some highlights were of course the 'bloopers' at the end (So keep watching at the end, it's worth it!), which were highly amusing and original. The line 'Filmed entirely on location' was intended for the more attentive viewer.",1 +24877,"I think the biggest disappointment in this film was that, right until the end, I expected the acting instructors of the cast to break in and apologize for how poor the acting was. When you consider the powerful subject, the brilliant scenery and the effort made in creating a wonderful set and spectacular images, it is a shame that little attention was given to acting.<br /><br />",0 +15448,"An absolutely wretched waste of film!! Nothing ever happens. No ghosts, hardly any train, no mystery, no interest. The constant and BRUTAL attempts at comedy are painful. Everything else is pathetic. The premise is idiotic: a bunch of people stranded in the middle of no-place, because their train was held up for less than 3 minutes. What? And the railroad leaves them no place to stay, in a heavy storm? I think not. Oh, they can walk 4 miles across the dead-black fields. umm, yeah. Sure. Or, they can force themselves on the railroad's hospitality, and stay at the 'haunted' train station. A station which proved to be nothing but DEADLY BORING, utterly without ghosts, interest, or plot.<br /><br />So very terribly dull that this seems impossible.<br /><br />This ought to be added to the LOST FILMS list !! aargh !!",0 +22088,"I think its time for Seagal to go quietly into the night. What I have just seen makes all his direct to video releases in the last few years look like his early 90's smash hits in comparison.<br /><br />A secret bio lab is making a new kind of drug that jacks up a human's adrenaline system to the point where they become psychopathic killers or something. Somehow Seagal is supposed to stop the infection or its the end of the world...or something. Seagal also went through hit squads like jellybeans, every time I look up he was commanding a new face so it kinda got hard to follow character development as well I know Steven's athsma prevent him from yelling at the top of his lungs but even so why is he constantly being dubbed by people who sound nothing like him? Usually the films plot and action sequences can save it from being a total waste of time but this was not even close. Like I said, it was more of a horror movie with a lot of blood and shank stabbing rather than straight up fighting. The problem was it wasn't really scary and Seagal looked completely out of place because the infected people were supposed to have speed of light movement yet the 40 year old 280 lb Seagal killed them all singlehandedly? I guess the lone highlight of the movie was the first 20 minutes where the new recruits ask Seagal to come to the strip club with them.<br /><br />2 out of 10",0 +6448,"There aren't many overcoming-the-odds stories quite like that of Christy Brown. Born with cerebral palsy in 1930s Dublin, his parents thought his handicap was mental as well as physical. Though eventually properly diagnosed, Brown, in a lower working-class family with nearly 20 children, had to push himself just to be appreciated by his family. Through the use of his only fully-functioning limb, his left leg, he taught himself to write and paint, both skills he developed expertly. <br /><br />But what makes the film version of Brown's autobiography ""My Left Foot"" such a great retelling is its humility. Both director/writer Jim Sheridan and star Daniel Day-Lewis have managed to tell this story in a way that doesn't scream for attention and resort to melodrama. Cheesy struggles and scenes of frustration as well as glorious moments of minute victory are easy pitfalls of a story so miraculous, yet ""My Left Foot"" stays real and intrinsically inspired.<br /><br />Day-Lewis is the easiest to highlight. Playing anyone with such serious physical impairments has to be a demanding task. Not only does Day-Lewis give us a very complete picture of Christy, but he also manages to chronicle the growth, improvement and inner change of the character in different stages of his life. He plays Christy at 17 when he had limited language capability and was emotionally volatile just as crisply as he does the intellectually learned Christy who struggles to cope with why he can't find non-platonic love. The latter theme is the film's strongest and it would've been nice for Sheridan and co-adapter Shane Connaughton to really flesh that out. Regardless, Day-Lewis gets us to understand and sympathize with all those elements, giving a performance that's so believable you often don't have time to think ""wow, he's such a great actor."" Those are the most commendable performances.<br /><br />Equally important but through more subtle means is Sheridan's work on the film. This story is about day-to-day life and struggles. Although Christy has such a unique set of circumstances hampering his life, his struggles are not unlike our own and Sheridan grasps that concept completely. Christy struggles with love, parental attention, questions of self- worth and capability. His struggles are just more physically manifested (literally and figuratively) than ours. <br /><br />Sheridan gives us moments that capture the spirit of the large Brown family and Christy's unique place in it. The drama evolves naturally when tensions are highest and the humor comes in much the same way. The dinner scene when Christy learns that his doctor/teacher -- the woman he loves -- is going to marry his brother Peter is the film's finest example of both Day-Lewis and Sheridan's efforts. It's built up to so well by Sheridan that it comes out when we're ready and Day-Lewis takes us from there with his stunning work.<br /><br />The other strong component of the film is Brenda Fricker as Mrs. Brown. I did not know she'd won the Oscar, but there was something about her performances as Christy's loving and wise mother that just screamed Oscar-worthy. Her love for Christy and constant fighting for him just seems so convincing and heartfelt and she earns a lot of sympathy given her situation.<br /><br />The emotional punch of the film given the story is surprisingly minimal. Perhaps that was part of the sacrifice of trying to create a film that feels organically human. The two should be reconcilable, but I imagine it's challenging to tell a story that feels true-to-life and one that provides enough dramatic moments to take our emotions on a roller coaster. The choice to downplay the latter was definitely the wise one for ""My Left Foot."" Brown's circumstances speak for themselves -- they don't need to be squeezed for weightier dramatic impact.<br /><br />~Steven C<br /><br />Visit my site moviemusereviews.com for more",1 +16411,"The only thing that kept me from vomiting after seeing this movie was the fact that these are just actors and not the freak show that usually appears on the TV show. This is also the main reason that fans of the TV show won't like the movie, but not the only reason. This movie has about as much entertainment value as getting a root canal. It approaches the abyssmal depths of bad movie making, and then gets even worse. I won't waste your time describing this movie in further detail; suffice it to say that I pity the poor camera people who had to suffer through watching this c**p the first time.",0 +22019,"This is a depressingly shallow, naive and mostly unfunny look at a wildly improbable relationship between Brooks' psychotic film editor and Harold, his vapid girlfriend. The two have ZERO chemistry together - primarily because Harold is incapable of doing anything besides looking pretty at this stage of her career; but also because Brooks' character is neither interesting nor likeable. There are 15 static, excruciating minutes at the beginning where Brooks, having just broke up with Harold, stumbles about his apartment in a depressed, drugged out state - unbearable.<br /><br />Sappily and unimaginatively bookended by Joe Cocker's ""You Are So Beautiful"", there simply is not enough material here for a feature film. There is hardly anything going on on the periphery of their relationship to give the appearance that these people exist in a real world. I'm sure Brooks' intention was to shine a white hot spotlight on the affair and, in a way, deconstruct it; but if you're going to do that the writing and acting needs to be far far better than what it is here.",0 +17676,"Rumor has it that when the NASA Technical Advisors to this film were asked to keep the picture believable, they laughed for several hours. After all, unless you are a politician or work/crew the shuttle, you are not going to get in the shuttle. Furthermore, Space (Cadet) Camp is in Alabama, not Florida.<br /><br />The truth is everyone on Earth will win multi-billion dollar lottery prizes before the events depicted in this film ever become possible. This film was meant for kids, and had to have been written by one, because they are not aware of the myriad restrictions and requirements regarding access to KSC/CCAFS.<br /><br />This is the most useless film of all time, and it was a well deserved flop.",0 +3974,"A 14 year old girl develops her first serious crush on the 17 year old boy that lives near by, while simultaneously trying to overcome her feelings of inadequacy in comparison to her older sister. That is the simple premise of this beautiful, poetic coming of age film from Director Robert Mulligan. Mulligan is famous for previously directing Summer of '42 in 1971 and To Kill A Mockingbird in 1962, two giants of the coming of age genre. Here he directs newcomers in the principal roles: Reese Witherspoon, in her film debut, as the 14 year old girl; Emily Warfield, as the older sister; Jason London, as Court, the 17 year old boy. Reese Witherspoon is astonishingly good in her film debut, displaying every emotion that a 14 year old girl feels in experiencing young love and hurt, never striking a false note. Warfield and London are both equally good as well. The film accurately depicts each adolescent's thoughts or feelings in regard to love with heartfelt sensitivity, never crossing over into maudlin excess even once. Kudos to the autobiographical screenplay from Jenny Wingfield; this is one of the very few films about young love that is honest and consistent in tone without being emotionally dishonest or sensationalist. The music is wonderfully simple, accentuating the tone and mood from scene to scene, but never becoming intrusive. The beautiful cinematography is by famed horror director Freddie Francis, who was in his 70's when this was shot. Tess Harper and Sam Waterston play the girls' parents with dead aim accuracy for 1957, caring, strict, and emotionally simple. Gail Strickland is good also as the boy's mother. There are feelings to sort out, lessons to learn, and truths to face in this sweet-natured film that packs an emotional wallop. To date, this is Robert Mulligan's last film. This is one of the very best films of 1991. **** of 4 stars.",1 +1512,"Though I saw this movie years ago, its impact has never left me. Stephen Rea's depiction of an invetigator is deep and moving. His anguish at not being able to stop the deaths is palpable. Everyone in the cast is amazing from Sutherland who tries to accommodate him and provide ways for the police to coordinate their efforts, to the troubled citizen x. Each day when we are bombarded with stories of mass murderers, I think of this film and the exhausting work the people do who try to find the killers.",1 +10709,"***1/2 Pierce Brosnan, Greg Kinnear, Hope Davis, Adam Scott, Philip Baker Hall. Directed by Richard Shepard.<br /><br />A well formulated story and film all together, Brosnan has never been better in a film role outside of his ""Bond"" movies. After 2004's ""After the sunset"" his newest role brings in the laughs and a great time. Professional hit-man, so to speak, Julian Noble on a job in Mexico City winds up meeting the exact opposite of himself a high strung business man Danny Wright (Kinnear, possibly one of his best roles) also on business there. The two on-screen duo produce a comically charged, laugh riot and fail to not deliver the laughs. Davis in one of her best roles since ""American Splendor"" gives another charming and witty performance. One of the years most enjoyable and best films. My final rating 9/10",1 +21332,"I guess I was attracted to this film both because of the sound of the story and the leading actor, so I gave it a chance, from director Gregor Jordan (Buffalo Soldiers). Basically Ned Kelly (Heath Ledger) is set up by the police, especially Superintendent Francis Hare (Geoffrey Rush), he is forced to go on the run forming a gang and go against them to clear his own and his family's names. That's really all I can say about the story, as I wasn't paying the fullest attention to be honest. Also starring Orlando Bloom as Joseph Byrne, Naomi Watts as Julia Cook, Laurence Kinlan as Dan Kelly, Philip Barantini as Steve Hart, Joel Edgerton as Aaron Sherritt, Kiri Paramore as Constable Fitzpatrick, Kerry Condon as Kate Kelly, Emily Browning as Grace Kelly and Rachel Griffiths as Susan Scott. Ledger makes a pretty good performance, for what it's worth, and the film does have it's eye-catching moments, particularly with a gun battle towards the end, but I can't say I enjoyed it as I didn't look at it all. Okay!",0 +7405,"Early Hollywood at it's best!! A classic Kipling poem is transformed into an epic adventure featuring memorable performances by a stellar cast. I think the measure of a good film is how many times you can watch it and still genuinely enjoy it. I've seen it a dozen times and still cry at the end and, admit it, you do too!!",1 +24457,"I can't believe it that was the worst movie i have ever seen in my life. i laughed a couple of times. ( probably because of how stupid it was ) If someone paid me to see that movie again i wouldn't. the plot was so horrible , it made no sense , and the acting was so bad that i couldn't even tell if they were trying. that movie was terrible rating: F",0 +12778,"Dull, cheap sci-fi thriller, made with an almost total lack of conviction (a control room full of computers and other devices used to receive and decipher messages from outer space is run by only ONE MAN, and is VERY poorly guarded at night), and full of campy sound effects. Christopher Lee is not only wasted, but he also gives one of his few ""I'm here strictly for the money"" performances. (*1/2)",0 +24688,"This movie is just boring.<br /><br />It tries to copy some effects borrowed to a creative director like Jeunet in ""Amélie Poulain"", but it is too much. The dialogs are pretty bad, some of the worst I have ever heard, Guillaume Canet is not convincing (I have almost never found him very convincing), his father in the movie plays very badly, the story is dumb, the ending is... stupid.<br /><br />I think I have not dislike a movie so much since ""le pacte des loups"" (brotherhood of the wolf) from Christophe Gans (and I watch / see about 80-100 movies a year), but at least that movie had some action and lots of good actors.<br /><br />I had never commented here (only rated), and when I saw the rating and the comments, I thought I had to write something down.<br /><br />I guess we won't have problems to sell the DVD we were offered : not such a bad movie in our (large) collection !!!<br /><br />I am open minded (I watch SF, westerns, drama, comedies, silents, horror, fantasy... movies !), but this movie was so boring that I felt like I had lost one hour and a half.",0 +4044,"My 2 year old likes the Doodlebops show, it seems to keep his attention for awhile. The characters are interesting, vibrant with primary colours and all. There's not much educational content that the intended target audience could benefit from, but they do seem to have a theme each show and try to teach kids about sharing and respect and other basics, so I like it for that. It's well produced with high production values. But it's really just an average show like most of the shows on TV these days. We don't buy into the merchandise angle and have our son wearing everything Dooblebop. I don't think we'd spend money to go to a live show, if they ever came to town. Going to The Zoo or the Science Centre is a far better experience for everyone involved and in my opinion is money better spent.",1 +1192,"I have never known of a film to arouse such debate in my life. Believe me when i say that this film will eventually be remembered as an all-time classic. I was waiting in anticipation for this film as i had previously loved both Lock, Stock.... and Snatch, but after some of the negative reviews i thought i would be very disappointed. I absolutely loved this film and i can't wait to see it again. This film is totally different to both of the aforementioned Ritchie films, and also a lot better. I have my pick of favourite directors but none of them have pulled off a move as great as Guy Ritchie has just done with this movie. I believe he has taken movie-making to another level ( i know most people will be laughing at this comment guaging the reaction to this film, but i believe time will prove me right ). This movie is very confusing and carried on for much longer than the 2hr or so running time as i couldn't stop thinking about it or trying to piece things together. I have now got a pretty good take on everything that happens in this film ( some answers from endless hours of thinking, some answers from reading other people's take on the film )and now cannot wait until Sunday when i will see it again. I just hope people go to the cinema with an open mind and they will hopefully be rewarded as i and many others have been.",1 +23157,"Salvage: 4 out of 10. Groundhog Day meets a Christian Coalition horror film. Okay maybe it's not that bad. But it is close.<br /><br />Claire (played by Alicia Silverstonesque Lauren Currie Lewis) is stalked and possibly killed by a serial killer (Chris Ferry who is quite menacing and brutal). I say possibly because she wakes up and it was all a dream .. Or was it? (Cue music)<br /><br />The basic problem with the film is that these fifteen minutes of plot (Done quite well the first time) is repeated over and over again. And since Claire wakes up every time and every scene is clearly a dream or alternate reality I just stopped caring what happened to Claire and started wondering what lame twist at the end was going to pull this together.<br /><br />I was rooting for a séance (which honestly would have made more sense) but instead got one of those too obvious by half surprise endings (Think the Village or Below) Yup the film collapses faster than Donnie Darko's directors cut. All the great twist endings in horror movies The Sixth Sense, the original Invasion of the Body Snatchers, Happy Birthday to Me worked because the audience wasn't expecting a left field explanation. (Heck even the canoe ending in the original Friday the 13th was worth a jolt)<br /><br />Salvage on the other hand screams twist ending with every scene change. Other nagging faults is the one note piano soundtrack (Though the featured songs were decent) the obvious time padding (Claire doing the dishes, Claire's mother's subplots), the way Claire says ""hello is anyone there"" every time she thinks there is a serial killer around.<br /><br />Also some of the secondary acting roles (In particular Claire's mother played by Maureen Olander who resembles a Mary Kay zombie) shows the first time actor low budget roots.<br /><br />Both too clever by half and not nearly clever enough Salvage keeps your interest if only to see how they are going to fix this mess. Problem is they really don't.",0 +9748,"For a film that's ostensibly about sex and leather, it doesn't have any right to be as oddly sweet as it is. The story of Bettie Page, a good Christian girl from the South who's momma wouldn't let her date until she married, who moved to New York and ended up becoming the most successful pin-up of her age, is driven by an outstanding performance from Gretchen Moll. Her Page can't quite reconcile the pictures that she takes (nobody's allowed to touch, it's all fun and respectful) with the pornography trials and supposed ill-effects that her images have on the world around her.<br /><br />Page has been an inspiration to every burlesque artist since, not just because she had a figure to die for, but because she invested every picture with an innocent sense of fun that was uniquely sexy and simple at the same time. Rather like this film, in fact. Filmde in both black and white and glorious technicolour, it's a lovely way to spend a couple of hours.",1 +14826,"This movie purports to be a character study of perversion. Some reviewers have been gulled into assuming that because perversion is depicted, the film is psychologically deep; actually, considering the salacious material, it is surprisingly tedious and shallow, with no motivational substance. Why is the main character the way she is? You won't find out from the script. For a better treatment of the same theme (and a more entertaining movie), try Bunuel's Belle de Jour.",0 +12490,"The most hillarious and funny Brooks movie I ever seen. I can watch and re-watch the tape 100 times. I laugh my a** off and I cry on some moments. It is really good and funny movie, and if you like Brooks - this is a must! In short - Brooks (billionare) gets to the streets as homeless for 30 days in order to win the entire poor district from his competitor. The reality bites, but in the end - it is about warm relations between humans... Hightly recommend!",1 +2762,"Dark Remains is a home run plain and simple. The film is full of creepy visuals, and scares' that will make the most seasoned horror veteran jump straight out of there seat. The staircase scene in particular, these guys are good. Although they weren't working on a huge budget everything looks good, and the actors come through. Dark Remains does have one of those interpretive endings which may be a negative for some, but I guess it makes you think. Cheri Christian and Greg Thompson are spot on as the grieving couple trying to rebuild there lives', however some side characters like the Sheriff didn't convince me. They aren't all that important anyways. I give Dark Remains a perfect ten rating for being ten times scarier than any recent studio ghost story/ Japanese remake.",1 +6880,"This is film-making at it's simplest and it's best.<br /><br />I had my doubts, because even though Freeman is great actor, sometimes he gets involved in bad projects; this is not one of those times.<br /><br />It's a small story that runs just over an hour and fifteen, in a time when we are getting used to having movies become longer and longer, and not necessarily better, the director uses the short time to his advantage, because the characters are so well defined from the start (great portrayals by freeman and Vega by the way), that the little bit of background info on them seems real, Morgan is himself even though his name is not mentioned, he has been out of movies for a couple of years now because he was saturated by the business, and developed a fear to commit to a script, and is doing research for a character in a indie movie where he plays a store/supermarket manager. The story begins by him being drop of in a supermarket in a rough neighborhood, where he meets the cashier of the 10 items or less (Vega) and has to take a ride with her cause ""the production"" forgot to pick him up.<br /><br />In many ways it's a road movie, Morgan provides the laughs, and quirks with his unbeatable smile and positive perspective on everything, showing off an accomplished actor who has trained his mind to be able to define everyone he sees into a character he could play, and Paz (by the way, what an extraordinary beautiful woman, even more gorgeous than Penelope Cruz) brings the vulnerability of a 25 years old separated woman who works harder than everyone else without getting any credit in a dead end job at a crappy supermarket.<br /><br />It's a talkie, there is a lot of dialog, but the balance between light and fun and serious and sad is well sustained, the characters become so lovable right away that you spend the last 20 minutes begging for more screen time of this odd couple, but the shortness is in the nature of the story, so it was a good call from the director not to give in.",1 +8136,"My college professor says that Othello may be Shakespeare's finest drama. I don't know if I agree with him yet. I bought this video version of the film. First I love Kenneth BRanagh as Iago, he was perfectly complicated and worked very well in this adaptation. SUrprisingly, he didn't direct it but played a role. Lawrence Fishburne shows that American actors can play Shakespeare just as well as British actors can do. not that there was a British vs. American issue about it. In fact, if we all work together then Shakespeare can reach the masses which it richly deserves to do. Apart from other Shakespeare tragedies, this is dealt with the issue of race. Something that has existed since the beginning of time. The relationship between Iago and Emilia could have been better and shown the complicatedness of their union together. While Othello loves Desdemona with all his heart, he is weak for jealousy and fears losing her to a non-Moorish man like Cassio. It's quite a great scene at the end of the film but I won't reveal the ending. IT's just worth watching. I think they edited much of the lines to 2 hours but they always edit Shakespeare.",1 +14368,"Now isn't it? Considering all the good work done by danzel,Clive and Jodie, the movie never grew into something more than a horrible die-hard/heist movies copycat. Yes a couple of jokes, no absolutely no unpredictable twists, to be honest the only unpredictable moments are there because both director and editor made some stupid mistakes, it is a shame for them and a waste of time for us. IF someone can tell me why on earth were they digging a hole inside that safe, who the hell is the Rebe and how on earth did they know that the diamonds were in the particular cell, it could just make my day, but it seems that Spike asks us to take too much things in this one for granted, and do not raise our eyebrows when something looks stupid...its just another studio contract movie relax and enjoy...",0 +4143,"I loves this movie,because it showed that they were not killing for fun but to save the ones they loved! Heath Ledger and Orlando Bloom did a great job portraying Ned and Joe. It has a few quick inappropriate scenes but is all right other than that. The language is very mild and sometimes don't even know it is there. This movie shows that just because they are outlaws does not mean that they are vicious killers! I hope that people will watch this movie and learn about important times in history like this one. There is one thing that fascinates me about this movie is that they got their inspiration for their armor from a book Ned looked at! Also that that is how people remember them,from their armor. I hope that people will watch this movie and get interested as I have.",1 +24795,"Wow...sheer brilliance.<br /><br />Turning a thriller/suspense/horror into comedy.<br /><br />After watching this, I never laughed so hard at a horror movie before...a ridiculous plot with 3 characters that were just insanely developed - either not written in depth or too much depth.<br /><br />If you want to watch an absolutely written horror movie with stupid dialog, messed up plot, useless scenes, wasted characters, bad sound and lousy development overall, then this is the one to watch.<br /><br />Be sure to keep focused for the classic ""food processor"" scene and the totally inept police investigation scenes.<br /><br />This is a remarkable new low in screen performance and writing and to sit through it for the entire duration makes you either stupid, daring or brave.",0 +10138,"I did not like Chandni Bar from the same director.<br /><br />I did not watch his other movies. They came and went.<br /><br />But Page-3 is nicely made. Seems real. Like Satya from RGV did.<br /><br />The mental sickness of the so called high society is the summary of the movie. In the midst of all the sickness, its difficult to lead a normal life which the protagonist, Konkana Sen, does. Serious movie, not to be watched with children or expecting wives. Page-3 of newspapers is the usual place for reporting the activities going on in the parties of the rich and elite who indulge in much more filth then what is reported. How this Page-3 is also a business prospect is shown in the movie. Event management firms get paid to arrange parties and make a rich but not famous people famous overnight by clicking photographs with the celebrities invited to the party.<br /><br />The western culture has crept into the high society of Mumabi quite deeply. The movie shows it boldly, no holds barred.<br /><br />Madhur Bhandarkar starts a new journey from here.",1 +11044,"Master cinéaste Alain Resnais likes to work with those actors who are a part of his family.In this film too we see Resnais' family members like Pierre Arditi, Sabine Azema, André Dussolier and Fanny Ardant dealing with serious themes like death,religion,suicide,love and their overall implications on our daily lives.The formal nature of relationship shared by these people is evident as even friends, they address each other using a formal you.In 1984,while making L'amour à mort,Resnais dealt with time,memory and space to unravel the mysteries of a fundamental question of human existence :Is love stronger than death ? It was 16 years ago in 1968 that Resnais made a somewhat similar film Je t'aime Je t'aime which was also about love and memories.Message of this film is loud and clear :true and deep love can even put science to shame as dead lovers regain their lost lives leaving doctors to care for their reputation.L'amour à mort is like a game which is not at all didactic.It is a film in which the musical score is in perfect tandem with its images.This is one of the reasons why this film can easily be grasped.",1 +6552,"Hilarious, evocative, confusing, brilliant film. Reminds me of Bunuel's L'Age D'Or or Jodorowsky's Holy Mountain-- lots of strange characters mucking about and looking for..... what is it? I laughed almost the whole way through, all the while keeping a peripheral eye on the bewildered and occasionally horrified reactions of the audience that surrounded me in the theatre. Entertaining through and through, from the beginning to the guts and poisoned entrails all the way to the end, if it was an end. I only wish i could remember every detail. It haunts me sometimes.<br /><br />Honestly, though, i have only the most positive recollections of this film. As it doesn't seem to be available to take home and watch, i suppose i'll have to wait a few more years until Crispin Glover comes my way again with his Big Slide Show (and subsequent ""What is it?"" screening)... I saw this film in Atlanta almost directly after being involved in a rather devastating car crash, so i was slightly dazed at the time, which was perhaps a very good state of mind to watch the prophetic talking arthropods and the retards in the superhero costumes and godlike Glover in his appropriate burly-Q setting, scantily clad girlies rising out of the floor like a magnificent DADAist wet dream.<br /><br />Is it a statement on Life As We Know It? Of course everyone EXPECTS art to be just that. I rather think that the truth is more evident in the absences and in the negative space. What you don't tell us is what we must deduce, but is far more valid than the lies that other people feed us day in and day out. Rather one ""WHAT IS IT?"" than 5000 movies like ""Titanic"" or ""Sleepless in Seattle"" (shudder, gag, groan).<br /><br />Thank you, Mr. Glover (additionally a fun man to watch on screen or at his Big Slide Show-- smart, funny, quirky, and outrageously hot). Make more films, write more books, keep the nightmare alive.",1 +23550,"Carnosaur 3: Primal Species (1996) D: Jonathan Winfrey. Scott Valentine, Janet Gunn, Rick Dean, Anthony Peck, Rodger Halston, Terri J. Vaughn, Billy Burnette. Why even bother reviewing this movie? Another stupid dinosaur movie in which top secret military guys discover those lethal (and very fake-looking) prehistoric monsters running around killing people in gory ways. The original was bad enough, the sequel was even worse. This falls somewhere in between, though unrelated to either of the previous CARNOSAUR films. RATING: 2 out of 10. Rated R for graphic violence and gore, grisly images, and profanity.",0 +10021,"""Written on the Wind"" is a Douglas Sirk's melodrama. Douglas Sirk was rediscovered by the ""Cahiers du Cinema"", Fassbinder etc.. that hailed him as a master director - I think that it is because of the sophistication of his cinematography - ""Written on the Wind"" offers luscious color images and gorgeous decors. But I ask myself: Is this enough to carry a film? The acting in ""Written on the Wind"" ranges from weak to fair (excepting Robert Stack - he is convincing as the weak & spoiled playboy). Lauren Bacall, normally a powerful presence in the screen, is miscast in this film. Dorothy Malone as the seductress, the care-free ""femme fatale"" is OK, but she lacks the strength for the role. Rock Hudson is efficient but vapid .<br /><br />The plot has very interesting ingredients. The main characters are: <br /><br />A rigid patriarch <br /><br />his alcoholic son Kyle (Robert Stack) (never loved by the disappointed father) <br /><br />his frustrated and nymphomaniac daughter Marylee (Dorothy Malone)<br /><br />Lucy (Lauren Bacall) - a woman of principles, formerly a secretary and now married to Kyle <br /><br />Mitch (Rock Hudson) - brought up together with Kyle and loved by the patriarch. <br /><br />Secrets beyond the door, a love triangle, frustration, fistfights, laughter, death etc. - well, when I read the story summary on the back cover of the DVD I thought that I was in for a treat. My mistake! Why? I'll try to explain: ""Written on the Wind"" takes itself seriously and tries to tell a dramatic story. As I said before the acting, in general, is not good enough - the intensity is lacking. There are many strong scenes in the story, but the actors just do an efficient job. I think that maybe with Italian or Spanish actors those scenes would have been explored fully - they would end (for us) in an explosion of laughter or tears .<br /><br />What remains to us is the beautiful cinematography of Douglas Sirk. For me this is not enough. If you want to enjoy a good melodrama, see ""Aventurera"".",1 +21072,"Marlon Brando had long since lost interest in acting when he made this film. His performance as ""The Swede"" is the worst of his career, and that is precisely what he intended it to be. He doesn't overact. Instead, he simply acts in a bizarre fashion and pokes fun at his embarrassingly gargantuan girth. The scene where Brando climbs over the toilet stall is probably the worst, funniest moment in the history of cinema. As we witness him fall head-first into a toilet, it is hard to believe that we are watching the same actor who starred in A Streetcar Named Desire, On the Waterfront, and The Godfather.<br /><br />I guess the real question is why Marlon behaved like this in his later years. Was he sick of the movie business? Did he just like making a complete and utter fool out of himself? I guess we'll never know. But this film serves as a fascinating study as to what bad acting is all about.<br /><br />On that note, watch fellow acting veteran Donald Sutherland as he struggles to deliver his lines, embarrassed at himself for agreeing to participate in this travesty.",0 +12259,"Let me be the first non Australian to comment on this :) I got the movie for Hugo Weaving and I watched it to the end. It's one of those ""drama of life"" films, as my mother used to call a movie that depicts a real life story with no extraordinary events and that is mostly descriptive.<br /><br />I liked the light and the girls. The rest was without too much fault, but without too much merit either. I yearned for something like The Interview, or at least some matrix villain element here and there, but nothing out of the ordinary. The story does teach one about facing one's own destiny and break free from the environment others build for you, but this happens when the life giving peach factory in the area is about to close, so not much of an effort to change things is required.<br /><br />The ""smart"" American Beauty sound-alike song in the background could have been part of a larger soundtrack, but just that one playing over and over again became annoying after 100 minutes of film.<br /><br />In the end, I guess it did his job of presenting a part of Australian life, but to me it didn't seem specifically Australian (it could have been placed anywhere) and it didn't seem attractive as a story.<br /><br />I guess one must be in a certain mood to like the movie.",1 +17439,"The only words you need fear more than Joe Don Baker if your thinking of watching a film are Greydon Clark , and if they are both there , run for your life . However this is a very funny film because they actually take themselves seriously ! It starts out bad and goes downhill from there , repeated scenes , the Good The Bad and The Ugly like shootout will have you rolling on the floor with laughter .Yes , he's the best deputy sheriff in Texas , tracking a mafia hit-man to Malta as only he can . He makes his own rules , does things his own way , all the while wearing cowboy boots and sidearms cowboy style . You want to see a bad but funny film ? Go ahead on , its your move !",0 +20548,"This is a truly awful film. What they have done is taken a TV show, which was never aimed at young children & given it the George Lucas treatment (i.e. ruined it by kiddifying it to appeal to the younger audience).<br /><br />OK so the Thunderbirds TV show wasn't exactly the most cerebral of shows, in fact it was pretty formulaic, but it was always enjoyable to watch (especially when the models got blown up) and the voice cast wasn't too bad.<br /><br />This suffers from bad casting & bad acting (with the notable exceptions of Sophia Myles as Lady Penelope & Ron Cook as Parker, who seem to be the only cast members to have a clue about how their characters should be played) & after this travesty I wouldn't let Frakes direct traffic.<br /><br />The whole point of Thunderbirds was that it was about the whole Tracy family & how they worked as a team, preventing disasters or coming to the rescue of those involved in disasters.<br /><br />Avoid this rubbish like the plague.<br /><br />I only give it 1 out of 10 because a zero rating is not supported.",0 +3704,"My main problem with the film is that it goes on too long. Other then that, it's pretty good. Paul Muni plays a poor Chinese farmer who is about to get married through an arranged marriage. Luise Rainer is a servant girl who gets married to Muni. They live with Muni's father on a farm and they are doing pretty bad. When he finally gets some money to buy some more land, a drought hits and nothing is growing. Everybody stars to head north by Muni stays behind at first. When they leave and arrive at town they find that their are no jobs and they are worse off than before. They even think about selling their youngest daughter as a slave for some money but decide against it. When a bunch of people start looting the town, the military show up and start executing people . Paul Muni does a good job and Luise Rainer won a second oscar for this movie.",1 +21938,"I'm not to keen on The Pallbearer, it's not too bad, but just very slow at the times. As the movie goes on, it gets a little more interesting, but nothing brilliant. I really like David Schwimmer and I think he's good here. I'm not a massive Gwyneth Paltrow fan, but I don't mind her sometimes and she's okay here. The Pallbearer is not a highly recommended movie, but if you like the leads then you might enjoy it.",0 +7760,"This is a short, crudely animated series by David Lynch (as it says in the beginning), and it follows the misadventures of a backwoods, overall-wearing large man, with a wife who has a stress disorder and an annoying son. Both of those elements are harped upon repeatedly in the short episodes, and there's no real plot to be seen. It's easier if you think of this as an exceptionally odd, slightly macabre Looney Tunes- with far more gore, profanity, bloody violence, and occasional moments of hilarity.<br /><br />I bought the DVD along with Eraserhead, having previously seen Eraserhead. Don't look to this series if you want an artistic masterpiece- this is anything but. In fact, it seems to almost be a statement against such things, as its rough style spits in the face of any sort of animation convention you may see. As Lynch says, ""If this is funny, it is only funny because we see the absurdity of it all.""",1 +7958,"Coonskin might be my favorite Ralph Bakshi film. Like the best of his work, it's in-your-face and not ashamed of it for a second, but unlike some of his other work (even when he's at his finest, which was before and after Coonskin with Heavy Traffic and Wizards), it's not much uneven, despite appearances to the contrary. Bakshi's taking on stereotypes and perceptions of race, of course, but moreover he's making what appears to be a freewheeling exploitation film; blaxploitation almost, though Bakshi doesn't stop just there. If it were just a blaxploitation flick with inventive animation it could be enough for a substantial feature. But Bakshi's aims are higher: throwing up these grotesque and exaggerated images of not just black people but Italians/mafioso, homosexuals, Jews, overall New York-types in the urban quarters of Manhattan in the 70s, he isn't out to make anything realistic. The most normal looking creation in looking drawn ""real"" is, in fact, a naked woman painted red, white and blue.<br /><br />In mocking these stereotypes and conventions and horrible forms of racism (i.e. the ""tar-rabbit, baby"" joke, yes joke, plus black-face), we're looking at abstraction to a grand degree. And best of all, Bakshi doesn't take himself too seriously, unlike Spike Lee with a film like Bamboozled, in delivering his message. This is why, for the most part, Coonskin is a hilarious piece of work, where some of the images and things done and sudden twists and, of course, scenes of awkward behavior (I loved the scene where the three animated characters are being talked at by the real-life white couple in tux and dress as looking ""colorful"" and the like), are just too much not to laugh at. It's not just the imagery, which is in and of itself incredibly ""over""-stylized, but that the screenplay is sharp and, this is key for Bakshi this time considering, it's got a fairly cohesive narrative to string along the improvisations and madness.<br /><br />Using at first live-action, then animation, and then an extremely clever matching of the two (ironically, what Bakshi later went for in commercial form with Cool World is done here to a T with less money and a rougher edge), Pappy and Randy are waiting outside a prison wall for a buddy to escape, and Pappy tells of the story of Brother Rabbit, who with Brother Bear and Preacher Fox go to Harlem and become big-time hoodlums, with Rabbit in direct opposition to a Jabba-the-Hut-esquire Godfather character. This is obviously a take off on Song of the South with its intentionally happy-go-lucky plot and animation, here taken apart and shown for how rotten and offensive it really is.<br /><br />Yet Bakshi goes for broke in combining forms; animated characters stand behind and move along with live-action backgrounds; when violence and gunshots and fights occurs it's as bloody as it can get for 1975; when a dirty cop is at a bar and is drugged and put in black-face and a dress, he trips in a manner of which not even Disney could reach with Dumbo; a boxing match with Brother Bear and an opponent as the climax is filmed in wild slow-motion; archive footage comes on from time to time of old movies, some and some from the 20s that are just tasteless.<br /><br />Like Mel Brooks or Kubrick or, more recently, South Park, Bakshi's Coonskin functions as entertainment first and then thought-provocation second. It's also audacious film-making on an independent scale; everything from the long takes to the montage and the endlessly warped designs for the characters (however all based on the theme of the piece) all serve the thought in the script, where its B-movie plot opens up much more for interpretation. To call it racist misses the point; it's like calling Dr. Strangelove pro-atomic desolation or Confederate States of America pro slavery. And, for me, it's one of the best satires ever made.",1 +23597,"The best thing about this movie was, uh, well, I can't think of anything. This was bad. The script was especially bad. The technical concepts were bad. The ""suspenseful"" plot was bad. The dialog was bad. Avoid at all costs. Do not rent. Do not watch. You'll be sorry.",0 +17711,"do not ever watch this film...it is the biggest pile of sh*te i have ever come across in my whole life. and thats saying something. the acting, storyline and filming were absolutely dire this is THE WORST FILM IN THE WORLD!!! seriously doesn't it even give you a hit seeing as it cost my 99p from sainsburys and it was only made in 2005? hahaha this film is like a cheap college movie you can even see the camera in the corner of the screen....although if u really wanna watch it you gotta watch the ""scary shark scene""...possibly the best piece of acting i have seen in my life...ha ha. i mean seriously this is the biggest waste of 2 1/2 hours EVER!!",0 +8116,"I was not expecting much from this movie, but was very pleasantly surprised, as it is light and funny and very well observed. The central trio of deadbeat bikers were surprisingly likable as they staggered and clowned their way through their drug-centred trip to Wales. The humour was gentle and subtle, as indeed were the three characters (witness their sympathetic treatment of the little old lady shopkeeper). The atmospherics of rural Wales were captured perfectly, and the soundtrack was very well chosen. Cleverly and carefully scripted, with great attention to detail - I have never seen such a realistic portrayal of alternative culture - I felt I was there with them. Very light in touch and full of fun - not what you might expect from a movie about bikers and drugs. A delight on all fronts, and difficult to criticise, though I thought the last two scenes were a bit lame - the film should have ended when they left Wales. But overall, an unexpected treasure of a film.",1 +4152,"To me, the final scene, in which Harris responds to the press corp, is worthy of viewing this intelligent and timeless slice of politics(especially the campaign phase). If only the ""real-life"" pols would respond in the intelligent, articulate manner as did Mr Harris,then the arrogant, self-serving members of the press would perhaps think twice before surfacing irrelevant, confrontational ""garbage"" that has absolutely nothing to do with a candidates abilities to effectively handle the challenges of the office for which he/she is pursuing.",1 +8079,"Though this may not necessarily be a so-called ""classic"" film by today's standards, it's still worth seeing. The main reason why is because after experiencing this film, you get the feeling that you've also experienced the counter-cultural idealism of the 60's, no matter however good or bad.<br /><br />I happened to see this film in an English literature class at SUNY Geneseo, and though at first it appears to be just a meaningless composition of 60's icons, the film is far from being simply ""thrown together"".<br /><br />My point is that if you leave the film feeling unsatisfied and confused, the film has done it's job: it's conveyed a desolate view of the future that leaves you feeling unsure and angry. It was perhaps this same feeling that the film sought to explore in the youth it exemplified.<br /><br />As such, ""Zabriskie Point"" may not tell a very good (or interesting) story, and at the same time its characters may be one-sided and predictable. However, it also conveys so well this sort of clichéd, rebellious desire to get out of the existence which both Mark and Daria must share. Even the anti-establishment students are as inauthentic as the gov't they rebel against.",1 +4037,"It is a well known fact that when Gene Roddenberry first pitched Star Trek to NBC, the original pilot episode, The Cage, was rejected for being ""too cerebral"". When the series was given another chance, Roddenberry thought it would be fun to establish the events of the rejected episode as canon, and did so by writing The Menagerie, which has the unique distinction of being the sequel to what was still, at the time, an unaired episode.<br /><br />This time, rather than exploring a new planet, Kirk and his crew are on Starbase 11, paying a visit to the former commander of the Enterprise, Christopher Pike (Sean Kenney), now horribly disfigured and paralyzed because of an accident. Pike joins his successor on the starship, where an unpleasant surprise awaits: Spock, who used to serve under Pike, has effectively hijacked the vessel and set the course for Talos IV, a planet which is off-limits (the punishment is death) since Pike and Spock's last visit there, 13 years earlier. Naturally, being a logical creature, Spock turns himself in and arranges a court-martial so that he can justify his actions.<br /><br />There's no need to say more about the plot, since the rest will play out in Part 2. What really impresses is how Roddenberry creates the connection between The Cage and the rest of the Star Trek universe, by coming up with a particular type of flashback (to say more would be too much) that allows everyone, on screen and off, to see what could have been of Trek, had NBC not turned down the original project. In particular, it's fun to see Jeffrey Hunter (who was unable to return in The Menagerie) play Pike as a more serious captain than Kirk usually is and Nimoy's early days as Spock, whose personality hadn't been fully established yet: this is the only time in the entire series that everybody's favorite Vulcan spontaneously grins.<br /><br />In short, not just a great ""mystery"" episode, but also a treat for those who can't be bothered to track down The Cage in its original form (it's available as part of the Season 3 box set).",1 +18345,"When I first watched the show, the first few episodes seemed promising. Bill Compton introduced himself as the stereotypical ""mysterious"" vampire and Sookie presented herself as an independent woman. However, the show went downhill from here and the once interesting characters are as entertaining as a cardboard box.<br /><br />As the story progresses the main characters lose their original personalities, along with their acting abilities. By episode 5, Bill's furrowed eyebrows are so low that his face just consists of a forehead. Sookie, or rather the actress, is even more dead than her vampire lover. All these tragic events are surrounding her and she only reacts to how enjoyable it was losing her virginity. Personally, I think they made the main characters sleep with each other too early in the show. The way they teased each other was something that had me hooked and could easily be toyed with a bit more. As soon as Sookie loses it she struts around like a total ditz, only thinking of Bill's libido and the size of his appendage. Bill also loses his debonair attitude and well, he just gets plain silly. His actions are never really explained except he does it for Sookie. Why? Their love for each other is never delved into, if there is any love. So far it just seems to be sex that is the core of their relationship.<br /><br />Yeah, yeah, vampires usually equal sex but come on. Every five seconds I see some sort of humping going on. It wasn't that much of a surprise, since HBO always tries to pass of a soft core porno as a decent TV show. Bill popping out of the dirt and just getting it on with Sookie with no reason what's so ever? I laughed so hard I almost peed myself.<br /><br />The plot is just a stream of consciousness. The characters never go into detail about anything. All the events that happen are usually left unexplained. The only thing that is constant is the sex.<br /><br />The only thing I can say that I do like are the minor characters. Tara and her drunk mother are far more interesting than the major characters. The only reason why I continue to watch the show is for the development of the minor characters. <br /><br />Minus the sex and the main characters the show would be much more worthwhile.",0 +2937,"I watched SHORE LEAVE the other day. I've seen it so many times, and I never get tired of it. Strangely enough, every time I watch it lately, it takes me right back to the very first time I saw it. Including this time. Must be that sense of mystery and ""What IS going on here?"" about it.<br /><br />Oddly enough, the one part of the story that ALWAYS felt awkward and uncomfortable for me, this time, actually had a HUGE effect on me-- Ruth. I think a lot of it was Gerald Fried's score. A real masterpiece, that! The romantic section was reused-- much more extensively-- in THIS SIDE OF PARADISE. But of course, it debuted here. I get the impression that, out of all the girls Kirk knew over the years, she may have been the ""sweetest"". When she said, ""Do you have to go?"", combined with the music, I could really feel the pain she must have felt at not being able to have him stay with her.<br /><br />Someone commented online that Ruth looked older than he was, yet she wasn't supposed to have aged at all in 15 years. Which makes me think... MAYBE she was one of the teachers at the academy. Kirk had an affair with an older woman! (Perhaps he thought back to this in ""MIRI"" when he told Janice, ""I never get involved with older women."" Maybe he meant, ""...anymore.""<br /><br />Reading ST reviews the other day, I see where someone compared WHAT ARE LITTLE GIRLS MADE OF? with I, MUDD. But it seems SHORE LEAVE oughta be in there, too. What are all those ""people"" if not androids? And could ""The Caretaker"" be related to ""The Old Ones"" from the earlier episode? Whoever he is, he seems to be one of the RARE cases in ST where you have a race that is actually ""superior"" as opposed to merely thinking they are.<br /><br />Yeoman Barrows seems to be filling in for Yeoman Rand. Considering how much attention Dr. McCoy showered on her, it's just one more frustrating example of a potentially good character who appears once and then never shows up again! Sheesh.<br /><br />One thing missing from the last several I've watched that snuck back in here was, Spock smiling. He was! I saw him. I really prefer knowing there's 2 sides to him going on inside all the time, rather than this ""submerged"" business. When he said, ""Enjoy yourself, sir."" near the beginning, you could see it wasn't just his addressing his superior officer, but talking to his friend. And at the end, when he needlessly says, ""Totally illogical!"", I can't help but think he does it purely to provoke a reaction. He may not be smiling or laughing, but I think he likes seeing his fellow crew members around him happy.",1 +1297,"Culled from the real life exploits of Chuck Connors and Steve Brodie in 1890s New York, ""The Bowery"" is high energy and good natured.<br /><br />But be warned: Casual racial epithets flow off the tongues of Wallace Beery and little Jackie Cooper. The very first shot might be startling. This is true to the time it was set and the time it was made. And it also speaks to the diversity of population in that neck of the woods. It certainly adds to the gritty flavor of the atmosphere.<br /><br />Beery as Connors is the blustering thunder at the center of the action, a loud-mouth saloon keeper with his own fire brigade. And he has a soft spot for ornery orphan Cooper. Raft as Brodie is Connors' slicker, better looking rival in almost every endeavor. Brodie could never turn down a dare and loved attention, leading up to a jump off the Brooklyn Bridge (it is still debated whether he actually jumped or used a dummy).<br /><br />Beery is as bombastic as ever with a put-on Irish-American accent. He is just the gruff sort of character to draw children, cats and ladies in distress. This is possibly the most boisterous character Raft ever played, and he even gets to throw in a little dancing (as well as a show of leg). And again he mistakes the leading lady (lovely Fay Wray) for a prostitute. Cooper is as tough as either of them, though he gets a chance to turn on the tears.<br /><br />The highlight isn't the jump off the bridge but a no-holds-barred fistfight between Connors and Brodie that in closeup looks like a real brawl between the principals. It's sure someone bruised more than an ego.",1 +15971,"First off, I really loved Henry Fool, which puts me in a very small pool of movie goers. Parker Posey is one of best actresses on-screen today. But this film was a full-out travesty. Watching Hartley and the actors talk about the film in the extras - so full of pride, and making pointless analogies to Star Wars - was stomach-turning. This was hype on the producers part (HDNET) realized to the max. A true example of the Emperor and his new clothes. Mostly I feel that Hal has spoiled HENRY FOOL forever. I don't think I can ever see it again in it's pure, innocent light.<br /><br />Remember Hal, you can FOOL some of the people some of the time... etc. The director would be nowhere today if all he did was churn out meaningless garbage. Sadly, it's a pure example of the lesson taught in the film ADAPTATION. The story must be exciting and active, or its box-office hopes are dim indeed. Never mind a decent story. For the actors, it was like trying to act in a straitjacket.<br /><br />The score, I believe Hartley's, is tasteless. With drum hits walking all over dialog. There was one Apple Soundtrack loop I recognized that gave me a smile.<br /><br />When I saw the trailer, I thought, oh, they're just trying to grab a new audience. But it's really this ridiculous ride. I'd be happy to spoil this movie for you, but it's been done. It's rotten. The FOOL franchise is dead. Long live Henry Fool.",0 +16070,"When I saw this movie cover, the first thing I thought was that it was made for video. The second thing that came to mind was how similar this looked to another terrible movie ""Darkness Falls"", the tale of this dumb witch who killed people in the dark. Unfortunately, Darkness Falls was quite the masterpiece compared to this pile of garbage, and this movie should not have been made.<br /><br />The film starts off with a small back story for the witch, or, more like a pointless introduction of two little kids who are going to go meet the tooth fairy in hopes of her giving them a shiny new bicycle for their tooth. The opening is filmed poorly, and like the rest of the movie, it's certainly not scary. In present time, the movie is about Peter (Lochlyn Munroe). Peter's renting out his house, and his ex-girlfriend Darcy (Chandra West), and her daughter Cole come to stay there. Cole meets a neighborhood child, and they talk of the Tooth Fairy, and how you shouldn't lose your tooth, or she'll come for you. Unfortunately seconds later, it looks like the Tooth Fairy steals her bike and knocks her tooth out (How ironic). Will Cole survive the wrath of the Tooth Fairy, and will her mother and Peter be able to save her, and rekindle their romance...this is a bad movie, you could probably figure it out.<br /><br />One of the main problems with this idiotic film is how undefined the Tooth Fairy is. They say she kills you if you lose your tooth, but nope. She's more like a serial killer who kills at random, and if you lose your tooth, you're definitely going to go. She steals a bike, so apparently she's a thief too. I said earlier that the idea for this movie was based on Darkness Falls, but where did they get the inspiration for the Tooth Fairy's appearance? Let's see. She looks like a burn victim, and she previously went around the neighborhood slaughtering children. Hmmm...it's almost as though she's an exact rip-off of Freddy Krueger from the ""Nightmare on Elm Street"" films. And this is not the worst part of this awful mess, the climax is. This movie might have the most laughable climax (Not literally laughable because I found it more sickening than funny) I've ever seen. Don't see this.<br /><br />Just a little trivia. Lochlyn Munroe was in Scary Movie, and Jianna Ballard was in Scary Movie 3, and they both were in this, so apparently Scary Movie stars are forced to end out their career with bad scary movies.<br /><br />My rating: 1/2 out of ****. 80 mins. R for violence.",0 +5508,"A lawyer is drawn into a deadly game of cat and mouse when he becomes involved with a femme fatale in this adaptation of a Grisham novel. Altman creates a suspenseful, Gothic atmosphere but the script is weak. Sporting a Southern drawl, Branagh is convincing as the lawyer, and Davidtz is alluring as the object of his desire. Downey is likable as a private detective. Duvall has a small role, which does not allow him to do much with his weird character. Hannah and Berenger round out the impressive cast. After an interesting setup, the film bogs down and does not really deliver on its initial promise, but Altman is always worth a look.",1 +14529,"Just got back from a free screening and I'm very glad I didn't pay to see this very sub-par film. The theater was full and the crowd was a mix of kids and adults. It seemed like it was just the kids who were laughing at all the slap-stick and fart jokes though (good god they loved to hit these poor mice in the crotch a lot!). The movie is pretty juvenile, unintelligent, predictable, and mostly annoying. The characters just seem to be thrown together to fill in empty space and the relationships between them all seemed very forced with no charm at all.<br /><br />Visually, the film is about average with nothing that really stands out. They did a decent job of mimicking the clay look from Wallace and Gromit, but other than that it's very forgettable imagery.<br /><br />Although I was really bored throughout the whole film, I chuckled a couple times. It's not an absolute failure, but I most definitely would not want to watch it again. If you're a parent with kids (and you don't care that your kids see mindless cheap-jokes) then feel free to take them to see it, but everyone else shouldn't waste their money.",0 +11764,"For those of you that don't that reference, clubberin was 4 fists hitting one body...<br /><br />Anyways, onto the review.<br /><br />I miss WCW Saturday Night. Some of my favorite wrestling moments took place on this stage. I remember watching Stunning Steve Austin, Rick Rude, Brian Pillman, Cactus Jack, Dustin Rhodes, Johnny B. Badd, DDP in his jobber days, Lord Steven Regal, Harlem Heat, Ricky Steamboat, STING...I'd be here a while listing everyone. Point is WCW had an awesome roster in the pre Hogan days and they were producing entertaining television. Dusty Rhodes on commentary in it's later years gave me a whole new reason to watch when I started smoking pot as a teenager...I really wish Vince would put him on the mic for a show or two, maybe at the next Great American Bash? They CLUBBERIN! Here comes DA PLUNDA! He was great.<br /><br />-DirrTy",1 +635,"I have a feeling that the Warners Bros Depression-era musicals are going to become a lot more pertinent in the next couple of years. Yes, we are in the economic doldrums (or have you been living under a rock) and times look bleak. But we always have the movies as a way to escape our troubles. In the 30's, film-going was hugely popular even at the height of economic gloom. ""Footlight Parade (1933)"" was one such film that audiences flocked to. While this Lloyd Bacon-directed musical doesn't quite capture the social issues of the time as ""Gold Diggers of 1933 (1933)"" does, it's still a wonderful showcase of talent. We have to wait until the end of the film for the three centrepiece Busby Berkely extravaganza numbers, but boy, are they worth waiting for me. Yes, little Ruby Keeler is a terrible singer and actress, and her tapping is so-so, but Busby's magical ""By A Waterfall"" whisks her, and what seems to be a hundred other chorus girls, into a dizzying water wonderland. Of course Busby's numbers could never really be performed on a stage (they defy limits of gravity, for one thing), and they contrast terrifically with the realism of the tough, wisecracking non-musical scenes. And ""Footlight"" also has James Cagney in at the one of his all-too-few musicals (really, what couldn't this man do?). He even gets to take over from the leading man, don sailor garb and fawn over sexpot Shanghai Lil (who is really little Ruby in China-girl wig!).He co-stars with Joan Blondell, his adorable, adoring secretary who Cagney somehow overlooks in favour of other women (until the final reel, that is). Apparently Blondell was the only other woman who Cagney loved apart from his wife. And you can see the mutual adoration in every scene.",1 +3486,"My family has watched Arthur Bach stumble and stammer since the movie first came out. We have most lines memorized. I watched it two weeks ago and still get tickled at the simple humor and view-at-life that Dudley Moore portrays. Liza Minelli did a wonderful job as the side kick - though I'm not her biggest fan. This movie makes me just enjoy watching movies. My favorite scene is when Arthur is visiting his fiancée's house. His conversation with the butler and Susan's father is side-spitting. The line from the butler, ""Would you care to wait in the Library"" followed by Arthur's reply, ""Yes I would, the bathroom is out of the question"", is my NEWMAIL notification on my computer. ""Arthur is truly ""funny stuff""!",1 +3014,"Mardi Gras: Made in China provides a wonderful, intricate connection between popular culture, nudity, and globalization through the making and tossing of beads. I saw this film at the International Film Festival of Boston, and was expecting a dry introduction to globalization, but what I got was a riveting visual display of shocking footage from both China and the United States. The eye-opening film is humorous, in-depth, serious, non-patronizing, and it leaves you wanting more as the credits role. It is worth comparing to Murderball -- it's simply that well done. The young women workers in China have various points of view, and the owner is amazingly open about the discipline. The revelers during Carnival are the highlight, but only because this excellent film provides in-depth context inside the factory in China without narration. Bravo to the filmmaker for getting inside and finishing the film! I would have never thought about the connection between beads, China, and New Orleans; now I think about the human connection between almost every object, but also the role of globalization, inequality, and fun. More importantly, I can make these connections without feeling a sense of guilt after watching this film, unlike other films on globalization that I've seen.",1 +23929,"You might be a bit confused if you watch this silly made-for from the beginning, since the credits list Susan Dey as ""Special Guest Star."" Um, why would a one-off MOW like this have a guest star? Well, if you stick with it, you'll find yourself paying attention to little else but Ms. Dey's butt, wiggling in a flowered bikini as the ""Partridge Family"" house babe frolics on the beach to which that imaginative title alludes. Susan's derrière is especially compelling when she shakes it at the camera while teasing and tickling her pseudo-disaffected brother in one mildly incestuous scene. Sadly, Susie and her tush fight a losing battle: the jiggle-TV craze that might have put that bottom over the top was three years off, so that sweet booty just gets a supporting role. In 1976 Fat Freddy Silverman would have put that behind right out front and used this flick as Susan's audition tape for ""Charlie's Angels."" As is, our Susan was denied cheesecake immortality and had to settle for a very commendable career playing somber, neurotic women.<br /><br />The view beyond Susan's heinie, it must be said, is not very compelling. The scenery is nice, and photographed in a bizarre, hazy way that briefly fools you into thinking there might be some quirky creative intelligence at work behind the camera. Nope. It's just a typically suspense-challenged 70's made-for-TV thriller that allowed weekly series stars to make some extra cash(and collect some cable residuals, though they obviously didn't know that at the time) and show off their ""range."" Here we're treated to a TV-scale nuclear family, squaring off against TV-scale thugs who can't decide whether they're a motorcycle gang or a hippie cult (thus the filmmakers split the difference by putting them in dune buggies) and have never learned one of the primary lessons of 1970s television: don't mess with Dennis Weaver (see ""McCloud"" and ""Duel""). The only potential for depth in this movie is in the aforementioned teenage-son character of Steve, played by the long-forgotten (if ever-remembered) Kristoffer Tabori, who is supposed to be rebellious and troubled and might feel some sympathy for and attraction to the lawless mob that is (supposedly) menacing his family. But Steve, as played by Tabori (gosh, why didn't we see more from this wunderkind?), is actually just grumpy and moody and isn't one bit conflicted when big D gets serious and draws a line in the proverbial (and literal) sand. For the sleep-deprived and Susan Deyniacs (there must be some of you out there) only.",0 +23887,"I've seen all four of the movies in this series. Each one strays further and further from the books. This is the worst one yet. My problem is that it does not follow the book it is titled after in any way! The directors and producers should have named it any thing other than ""Love's Abiding Joy."" The only thing about this movie that remotely resembles the book are the names of some of the characters (Willie, Missie, Henry, Clark, Scottie and Cookie). The names/ages/genders of the children are wrong. The entire story line is no where in the book.<br /><br />I find it a great disservice to Janette Oke, her books and her fans to produce a movie under her title that is not correct in any way. The music is too loud. The actors are not convincing - they lack emotions.<br /><br />If you want a good family movie, this might do. It is clean. Don't watch it, though, if you are hoping for a condensed version of the book. I hope that this will be the last movie from this series, but I doubt it. If there are more movies made, I wish Michael Landon, Jr and others would stick closer to the original plot and story lines. The books are excellent and, if closely followed, would make excellent movies!",0 +17093,"I can't really say what I think about this movie, its against the guidelines, I've watched many many films, and this has got to be the worst one yet, Extremely low budget, I'm guessing all the money went into the slaughter house scenes, cause I could of did a better job with a b&w 8mm camera and a crew of monkeys. It was so bad I registered just to leave a comment, cause I had to tell someone, movie rental place wasn't enough. But this is my 2 cents worth, I suggest borrowing it from some poor sap who rented it and watch it yourself. Cause i sure wouldn't waste the money on it myself again. Now i leave you with this comment. I hope your not made at the rental place when they wont refund you your money .. =)",0 +13991,"I should explain why i gave this...""piece of art"" 1 star rating out of possible 10. Simply because it's hard or next to impossible to rate it unbiased. probably it would have been the same if i had given it 10/10 - explanations anyway would have followed.<br /><br />I am not fond of these pointless gore movies like HOSTEL or so - i think that's disgusting and pretty terrible (in all the possible contextual meanings), but as i found out after watching this movie - there is a genre called ""historical drama"" - and probably it would have been the case of 10/10 as it has plenty of it and Tarantino would have been more than happier with it (and made Kill Bill 3 to spill even more blood on screen than here to show that it is possible). but the thing about ""historical drama"" genre is that it's a sub-category of the ""trash movies"" where John Romero is the undead-gory-emperor-of-the-guts and so automatically it can't be rated as your default movie - as these are movies that are made bad on purpose and you can't really tell whether the comically bad moment was meant to be so, or it was simply bad. it's for the people who like to enjoy bad acting, bad screenplay and bad everything else. And by some turn of faith - i am one of them too. there are days when i have an urge of seeing a really bad movie and look up for some trash and here you go - the day is saved! but that's definitely an opinion of mine and doesn't have match with anyones' else.<br /><br />What i wanted to say is that if you want to watch some terrible movie - then Fellini's Casanova is definitely the choice, but heed my advice and don't rate it by default means.",0 +10545,"Fidois a very odd film. And in many ways, a very good one.<br /><br />My first thought after viewing, was how the hell are they going to market this thing? If Shaun of the Dead is a romantic comedy with zombies, Fido is a boy and his dog story blended with fifties nostalgia comedy with zombies. Doesn't exactly trip off the tongue.<br /><br />Fido has little of Shaun's carnage, gore & belly laughs. It is a different beast altogether (forgive the pun).<br /><br />Fido kicks off with a black & white information film that explains the back story - humans have won a war against zombies by developing a control collar that subdues the flesh-eaters into dumb servants.<br /><br />At first I thought we we were in for a fifties cold war paranoia parody a la Matinée, but we are soon hurled into a world of bright primary colours and fifties middle-class nostalgia.<br /><br />Young Timmy Robinon is a lonely kid who doesn't fit in at school. His mom is would-be social climber,and his dad is nervy and detached.<br /><br />Seeking to keep up with the Joneses, mom (Carry-Anne Moss) has acquired a zombie. Jimmy is disinterested at first, but 'Fido' (Billy Conelley) soon proves a great buddy for Jimmy. Until his collar goes on the blink...<br /><br />Fido is NOT a horror film, but my problem with the movie is figuring out exactly what it IS.<br /><br />Much of the humour is of the light family variety, and sometimes the plot line is too heavily reliant on the boy and his dog/family moments.<br /><br />Yet the film is shot through with wonderfully dark, truly funny moments, which while welcome, will ensure an R rating for what is, for extended periods, a family comedy.<br /><br />The film looks gorgeous, and is wonderfully performed by all involved.<br /><br />Despite its difficult tonal problems, I hope this movie finds a niche, as it's quite a little gem in this year's deluge of cinematic crap.",1 +19734,"I've read some of the other comments and I do have to agree with the ones that didn't get the ending. I thought it was going rather well..until the end. It kept your mind running and then splat. I have not clue what went on the last couple minutes of the movie except a complete mess. It's like they ran out of money to come up with a good ending so they improvised. First they had a mysterious thing making people disappear then they had a guy talking about Area 51 (which makes you think about aliens) then after they it went to crap. I thought the actors and actresses did fine it's just the script went sour. Anyways, if you do watch this movie be prepared to be disappointed at the end.",0 +9165,"I was up late flipping cable channels one night and ran into this movie from about 10 minutes into the start - every time I even thought going to bed, something kept on telling me to keep on watching it even though it was way way way past my bedtime.<br /><br />This movie could have been another easy slam dunk anti-gun film, but instead they chose to examine the aftereffects of the shootings. And even better, the movie kept on with the real life - just when you think they are going to take the easy and obviously contrived way out, a twist comes along and changes the whole outlook of the movie. This film not only doesn't follow the formula, it shows how other events often lead up to and/or affect what happens afterwards.<br /><br />I only wish the filmmakers had explored the issues around anti-depressant drugs more - the kids from Columnbine who did the shootings were on them for years and it was frightening to watch the way Deanna popped them every time the nightmares started. Up until recently they were dispensing the stuff like candy and only now do they even begin to understand what long term effects the drugs have. It was very refreshing to see that the mental illness aspect of the story was given quite a bit of film, having a relative who suffers from a mental illness, I can say that the movie was dead nuts on in every aspect of mental illnesses. Bravo to the director and writer who obviously did their homework on those issues. And for those who think certain things couldn't happen in a hospital (I don't want to tell any particulars), you're dead wrong on that too - I've been there. The script was so real it was amazing.<br /><br />Go BUY this film and show it to your teenage kids before it's too late. Someday they'll thank you for it.",1 +16432,"I thought it was a New-York located movie: wrong! It's a little British countryside setting.<br /><br />I thought it was a comedy: wrong! It's a drama.... Well, up to the last third, because after the story becomes totally ""abracadabrantesque"", the symbolic word for a French presidential mandate. It means, close to nonsense even it the motives would like to bring a sincere feeling.<br /><br />What Do I have left? Maybe, a good duo of actress: Yes, I know, they are 3 friends, but the redhead policewoman is a bit invisible for me. The tall doctoress surprises by her punch, and McDowell delivers a fine acting as usual, all in delicate, soft and almost mute attitude. This gentleness puzzles me, because as other fine artists or directors, the same pattern is repeating over and over. In her case, it's like, whatever the movie, it's always the same character defined by her feelings, her values, who lives infinite different stories. I still don't know how to set the limit (or the fusion) between the artists and the works.<br /><br />Another positive side of this movie is its feminine touch & the interesting different points of view. The women have each their own way of living, even if they are all single. It brings a lot of tolerance and learning to witness how a same and unique reality can be perceived in as many ways as people.<br /><br />Finally, the movie is quite viewable, but the great final cuts the desire of a next vision.",0 +11160,"<br /><br />Everything is relative seems to be the main theme from the outset by this set of eleven pieces by eleven directors. That is to say that what might be number one priority for people like Bush, Blair and Company, may not be so for a great many other people, ordinary people. From the opening scene in which an Iranian teacher is trying to impress on her little students the most important thing that has happened, with the result the children are not impressed, as the death of a neighbour and things like that evidently affect them much more closely than anything which may have happened in New York, USA, wherever that is, this series of almost documentary styled pieces establishes that not all things are as equal unto all men as some world leaders would try to prophess. <br /><br />Whereas, obviously, the attack on the WTC was a dastardly event by any yardstick, one does get the impression that both politicians and TV cameramen tend to blow up things out of all proportion - wonderfully manifested in one of these pieces. Would the same reaction at international level have occurred if the attack had been made on Lagos, say, or Djakarta, say, or even on Rio de Janeiro, say? I rather think not. News seems to suffer distortion depending on where things happen: much more TV time is given to an earthquake in Italy, say, than one ten times more destructive in Outer Mongolia, say. Greater distances seem to decrease the magnitude of the disaster. <br /><br />This series of eleven pieces helps to put things in better perspective - or, perhaps I should say, some of the pieces do, as each director with complete freedom has made up his own story, his own translated perspective, such that it is not possible to judge the whole merits, but individually for each eleven-minute segment. <br /><br />In no way should one deduce that this is an anti-American film: that would be a too simple reading of the diverse messages manifested through the segments. However, it is not pro-American either. The eleven segments adopt varied attitudes and the common link - if there is one - is that the disaster of the WTC attack has to be seen in perspective from different view-points. Only then will such people as George Bush even begin to comprehend the planet he is living on. <br /><br />Clearly stated in one segment is a belief of mine I have been harbouring for two years now: America has not learnt the lesson. And the lesson is that the USA has to share this planet with the rest of humanity - not dominate it by ruthless economical persuasion or just plain force. Instead of learning that the USA cannot continue just stamping all over everybody and everywhere, its political leaders, aided and abetted by Blair (and even Aznar) have become even more arrogant and even more intolerant, which is not doing any good to anyone in Afghanistan or Irak at present, let alone much elsewhere. The White House mentality is totally rejectable: the US and UK invaded Irak and caused all the chaos, and so should clear up the mess they caused - not insist on the UN and other nations to delve in with a helping hand and thus find an easy way out of the turmoil. <br /><br />Radical stances adopted by the US (or even Israel) is only going to be met by radical stances from Islamic people, who for years have been gearing up fanatical fundamentalism, if only to cover up their own macho uselessness, i.e., stoning women to death or simply shrouding them from the tops of their heads to the dusty ground. <br /><br />The world is in a terrible mess, fueled by the greed of a few rich countries who seem bent on not seeing or understanding anything from more multilateral perspectives. This film in eleven separate pieces accurately portrays this dismal and dumb posture.",1 +6529,"If you're going to put on a play within the prison walls why not go for the top playwright William Shakespeare? And if you are going to choose your cast from a whole lot of criminals serving long sentences for the most heinous crimes, you can be sure there will be plenty of time for rehearsals. In a Kentucky Correctional Prison a courageous project such as this was undertaken with amazing results. This film shows how it was all done .the casting .the rehearsals .the set and costumes and the final presentation of Shakespeare's play ""The Tempest."" It had not occurred to me before but there is an analogy between the setting of the play and the correctional prison. In the play the ship-wrecked characters are confined to an island with no contact with the outside world. Prison life too is much like that.<br /><br />With a simple painted back drop of a surrounding seascape, the characters in a most pleasing assortment of costumes bellow out their lines to an approving audience, may be not quite as Shakespeare intended but with good heart and true sincerity for sure.<br /><br />More interesting than the play itself were the little cameos of each man behind his character. One inmate saw the play as a lesson in forgiveness another as a redemption of his sins. It was quite moving to see the men wipe away a tear as they spoke of murder, shooting and strangulation. One had the feeling that they would all like to wind back the clock and reconsider their brutal actions. However (as someone said) the past was past, and the present was the beginning of a new future. At least the play gave temporary relief from the depressing thoughts of past events.<br /><br />The prison authorities should be applauded for allowing the play to take place. Such an event would put Kentucky on the map and hopefully other prisons might follow their good example. It seems to me that everyone stands to benefit not only the Kentucky prison but the prisoners themselves who need to find new confidence and self esteem and be prepared for the day when they go out on parole.",1 +5548,"This is possibly the best short crime drama I've ever seen. The acting is superb especially Amanda Burton who's character goes from scary to sweet to disturbing to sad and then some...She does an amazing job balancing Rachels/Carlas feelings and acting out the pain of someone who's lost a child, its so believable that it feels more like a real life story then a drama. The other actors are of course great too which they usually are in British TV/Film. The ending,which I'm not going to give away,is fantastic mainly because you don't really get one... (you'll get what I mean after you've seen it) This is well worth buying and seeing over and over again and if you're not touched by this you're one cold hearted person.",1 +9056,"This is one fine movie, I can watch it any time. Rauol Julia gave an outstanding performance, we lost him too soon. Richard Dryfus is a great talent. Only thing it needed more of was Dana Delany, what a babe!",1 +14676,"This is the single worst movie I have ever seen. I cannot express how bad it is. I honestly wanted to kill myself several times through this atrocious experience just to have the pain end. I recommend instead of seeing this movie, you bathe in acid then you will at least know a fraction of the pain without all of the scars.<br /><br />I had such high expectations when I read the back of the DVD case, and when in the beginning it added that Jesus was following them I was so excited... then by the end I wanted to kill myself. I mean a twenty-three minute introduction to the most annoying characters in the history of cinema... JUST PAIN! Monkeys could have done a better job editing this trash. At least they would have thrown feces and blurred some of the garbage. It would have made it better to have not seen any of the horror.<br /><br />It wasn't that I didn't get the jokes, it's that they were not only not funny, they repeated themselves like twenty times. Apparently, something isn't funny unless you see it like a million times.<br /><br />Do not under any circumstances see this. People have rated 'Manos the Hands of Fate' as the worlds worst movie. I have seen that too and agree that it is bad... but ALAS it is only the second worst. 'Fatty Drives the Bus' is by far worse.<br /><br />This deserves all kind of harsh language, but I can't write that here so just imagine I swore a whole bunch.",0 +3995,"Very sweet pilot. The show reeks of Tim Burton's better films...Edward Sissorhands, Big Fish, Charlie & the Chocolate Factory. The cinematography, the narration, the music, the external sets all scream Tim Burton. There has to be a connection, or a STRONG influence, I just haven't researched enough to know where it is.<br /><br />As I've seen in the forums, yes Anna Friel is playing a poor man's Zooey Deschanel. Every time I see her on the screen I see Zooey. Don't get me wrong, Anna Friel does a great job. Her character is very sweet and lovable and you easily get attached to her. It's more of a distraction that I keep thinking ""Why didn't they get Zooey Deschanel"".<br /><br />Lee Pace does a great job too. I kept trying to remember where I knew him from and just looked it up. Wonderfalls!!! Great, short lived series from 2004. If you enjoy Pushing Daisies you MUST go rent Wonderfalls, which is another Brian Fuller creation .hmmmm <br /><br />Loved seeing Swoosie Kurtz (World According to Garp) and Ellen Greene (Little Shop of Horrors) again. Two underrated character actresses that never fail to bring it with their performances.",1 +5259,"This is just the best movie of all times! Sorry, Hollywood! I've seen it in early 70's, as soon as it appeared on the Bulgarian TV, and I loved it immediately (I was 14 then). 25 years later I bought it on a video tape, and a few months ago it finally appeared on a DVD here in Bulgaria. I live with this movie 35 years already, and so do all my friends and my family. My son was a teenager when he saw it for the first time, and he loved it immediately, too (and this is the generation that grew up watching practically only Hollywood movies and not speaking or understanding Russian at all!). What makes this masterpiece of Danelia so special? It's difficult to say, as it is difficult to describe what the beauty is... But the fact is that you can watch this movie dozens of times with the same pleasure as it was the first time. I can't remember any other such movie, no matter how many millions it cost or how great the cast was... Chapeau, Maestro Danelia! Bulgaria loves you!",1 +14619,"This is an interesting left turn for Reel 13 Indies. TWO HARBORS is a B&W 75 minute film from Minnesota that features non-actors and is about two people finding a connection through a search for alien life. I applaud the boldness of the Reel 13 programmers of thinking out-of-the-box when selecting this film. I just wish they had picked a stronger film to be bold with. As a matter of fact, I wonder if the choice had more to do with the uniqueness of the film than with the actual quality of the film itself (Not that TWO HARBORS is completely without merit, but I'll get to that a little later). <br /><br />As is common with independent films, TWO HARBORS is limited in terms of location. There are only two real locations a large junk dealership market and a very teeny trailer, which is the home of the middle-aged main character, Vic, played by Alex Cole. Writer/director James Vculek uses the market setting to provide exposition about Vic, who is one of the dealers there. He has various people walk up to Vic and start very long conversations that provides us with just two pieces of information Vic sells space toys (he prefers to call them ""outer space action figures"") and he is a caustic asshole. This is emblematic of one of the two key problems with TWO HARBORS - all the chatting. I've said it before and I'll say it again we are dealing with a visual medium and filmmakers need to work harder to tell their stories visually. There are exceptions, of course, but generally, endless patter is not so engaging on film particularly if the dialogue is being used as exposition. Pretty much all the conversations in the film are long and unnecessarily verbose. A notable example would be a few scenes which feature Vic trying to play himself off as a Boy Scout leader in order to get a discount at a store. He argues with the clerk back and forth and these scenes don't even advance the plot one iota. This is the kind of thing that makes even a 75 minute film feel long.<br /><br />The other problem with TWO HARBORS is the acting. I may be a bit of a curmudgeon when it comes to performance in film, but I really don't feel like there's a good excuse for not having good actors in your films. There are plenty of good actors out there, many of which willing to work on low-budget projects even in Minnesota. Many filmmakers eschew the importance of acting ability as being secondary to their visuals, but that is naïve. In narrative film-making, next to the story, nothing is more important than the acting/performances. If you don't believe the people enacting your story, your audience is lost.<br /><br />Originally, I thought Vculek was using non-actors, but as the film went on, I decided that they were probably community theater-type actors. It wasn't that they were uncomfortable on camera. It's that they were overly theatrical (i.e. big). Granted, the best of the actors were the two leads Cole and Catherine E. Johnson as Cassie, a lonely young girl that gets caught up in Vic's extra-terrestrial hunt. They seemed to have the most training, but they were still a little rough around the edges. The eccentricities they displayed seemed to be surface only - not coming from a real, organic place within. Ms. Johnson, in particular, is an interesting case. She definitely has a presence a Midwestern charm about her, but that charisma belies the multitude of issues her character is supposed to have. She struggles to portray the idiosyncrasies that stem from a supposed life of solitude and (slave?) labor, relying on stock gestures like eye rolls, lip biting and stammering to suggest her discomfort with the outside world.<br /><br />I mentioned in the first paragraph that TWO HARBORS is not completely without merit and here's what I mean. Without giving too much away, there is a fade to white an hour into the film. After that, the story takes a stunning turn, which allows the last fifteen minutes to be evocative and downright powerful it's like a sucker punch to the gut, but in a good way. It's almost a huge relief to feel something after so long with these characters. The last five minutes of the film don't have any dialogue at all and the result is the best part of the film subtle, detailed (Cole does his best work of the film) and most importantly, cinematic. Then, with the closing credits comes the most staggering revelation of all that it's based on a true story, which got me to thinking. With all the dialogue, the minimal locations and the lack of cinematic qualities, it occurred to me that with two kick ass actors and a tightening re-write, TWO HARBORS might make a really kick-ass stage play maybe even a one-act. If there are any bold theater producers out there reading this, I definitely recommend seeing if you can get a hold of the film and contact the filmmaker, Reel 13 or whomever. There might be something to this story after all <br /><br />(For more information on this or any other Reel 13 film, check out their website at www.reel13.org)",0 +2061,"This movie can be described in those 2 words ""just unbelievable"". This is the best movie ever made, I just cant see why this movie isnt in the top 250. I also can't see why anybody would not love Scarface. Anyways, if you havnt seen it, it is a must buy.",1 +9229,As an adult I really did enjoy this one. I watched it with my 2 granddaughters and the 3 1/2 year old was fascinated and the 15 month old giggled at the mice.<br /><br />The music is fun and the animation is wonderful. This sequel does what Return to Neverland didn't accomplish. A good follow-up to the Cinderella story; but what becomes of Drusilla? Another sequel? I hope so!,1 +2907,"This movie was such a blast! It has that feel-good, yet totally in your face attitude that draws me to a movie. It has a good message (party girl decides she needs a real job) yet she doesn't completely lose all sense of fun. I recommend this movie for anyone who needs some humor, but is also a thinker! :)",1 +14346,"I don't often go out of my way to write comments, but for this I had to, just to warn anyone that might think that by watching this they will see a comedy. This doesn't come close. While the premise (change in colour/gender/whatever) is bad enough (and has been done, better, many times before)the actual transformation of two black guys into two white girls is one of the least convincing transformations ever put on screen. It would be bad enough if all that was required by the script was a change to white chicks. However the Wayans brothers are required to disguise themselves as two specific white women. As you will have guessed by now, they fail completely. I have seen drag queens without makeup make more convincing women than these two do with the best special effects and make-up people that Hollywood can provide. Its appalling. Add to the mix a basketball player built like a building, terrible dialogue and more plot holes than a golf course and this film hits a new personal low. And I like bad movies! Avoid like the plague.",0 +1045,"The thought of Sarah Silverman having her own show worried me at first. The films she has appeared in were not very funny and her humor is a bit off. However, I was very surprised to see her true colors shine in this Comedy Central gem. I could possibly put her on par with the likes of Amy Sedaris in Strangers with Candy -- Sarah's character is a true sociopath, very comparable to Sedaris' Jerri Blank.<br /><br />The one downfall of this show is its supporting cast. Her sister's character is good; Funny at times, but ultimately meant not to steal Sarah's show. However, the rest of the cast is extremely sub-par in comparison.<br /><br />I'm glad, though, that Comedy Central has given Sarah a chance to show her unique and crazy sense of self and humor.",1 +10037,"I've just watch 2 films of Pang brothers, The Eye and One take only. When I watched The Eye, I was kind of disappointed about this two guys, who I had heard good words about them before. That film (The Eye) has a really bad script, especially the ending (childish,cliche and too coincident in my opinion) , but its still good in photography and experimental images. So I decided to see One take only and I didn't disappointed again. Still great photography, stunning image, MTV-style editing, cool music and this time,the story has a lot of indie spirit,logical and beautiful, you'll see some tiny plot holes, but it doesn't cause any trouble with the storyline. The only problem about this film is I get a bad DVD.",1 +11651,"This movie is pretty good. Half a year ago, i bought it on DVD. But first i thought that it was the original film. I have seen the series and it is a good film, but here, they have put ""The Living Legend,part1 and 2"",and ""Fire in space"" together. The same as they did with the first film, but with other episodes. But still, it is a pretty good film. Only the ending is strange (you don't see what happens with the Pegasus). But I still think that it is pretty good. The actors and special effects were good. If you haven't seen it, go see it. Starring:Richard Hatch, Dirk Benedict, Lorne Greene, Herb. Jefferson Jr., Tony Swartz, Terry Carter, Lloyd Bridges, Jack Stauffer.",1 +6400,"Insisting that Martin Luther King's inspirational spirit resides not just in American civil liberties but inside the hearts and minds of people everywhere, Danish helmer Niels Arden Oplev transplants this belief to a 1969 Danish middle school. More specifically, it works its way into the crusade of a young boy named Frits (Janus Dissing Rathke) against his oppressively rigid and churlishly abusive headmaster Svendsen (Bent Mejding). Adapted from a true story, the performances are executed with certain aplomb and a refreshing command over its varied characters keeps it involving. A battle of ideologies between a 13 year-old and a demented disciplinarian gives way to inherent humour but awkward shifts in mood disorients despite keeping it shrewdly cynical in the same vein as a ""Dead Poets Society"" more than a ""Matilda"". It treads a familiar path but a continued and precise service to its young protagonist including a personal subplot that rounds off Frits as a young boy becoming a young man, manages to raise the film into a rousing family film with its nose right on the money.",1 +16876,"1 How is it that everyone can understand each other perfectly without devices like universal translators or translator microbes? Did the creators of this show realize that people who were taken from different parts of the earth, in different time frames (Attilla the Hun wasn't a contemporary of preliterate Hellenic cultures, nor were the Vikings contemporary to the Pyramid builders) speak different languages and can never develop a language so similar to modern day English(except for the inflections they ""do not"" use), which has been influenced by Latin, ancient Greek, Danish and French? <br /><br />2 Cultural differences can't be overcome so easily, trust has to be won, yet everywhere the team arrives they are welcomed without any suspicion and start ordering people around like they are their appointed leaders. Of course real fans would comment that they are perceived as gods. The people they meet should be shocked by their technology and accuse them of witchcraft and the like.<br /><br />3 Historical background: none. Visually it might vaguely remind you of Greek or Viking culture, but anyone can dress in a bunch of tablecloths or run to a local costume rental for a plastic helmet with horns and claim to look the part. A small-town theater group probably has better props.<br /><br />4 Boring! Another lame Canuck production, which inexplicably ran for ten long years. As a kids show it could make the grade, but anyone who has a little knowledge about human behavior and language couldn't bear to even watch the first twelve episodes of season 1, like I just did. I very much wanted to believe I had found a decent sci-fi show, otherwise I would shut it of and cleansed my computer of this refuge after the first five minutes!",0 +9059,"This is one the few movies I can watch over and over. If you've never seen it, give it a shot. Richard Dreyfus and Raoul Julia are wonderful together and although the movie amuses me greatly, it reminds me of Julia's untimely demise. It is a good opportunity to sit back and laugh at the international intrigue that is too much with us in these time of terror and fear.",1 +14449,this is a great movie. I love the series on tv and so I loved the movie. One of the best things in the movie is that Helga finally admits her deepest darkest secret to Arnold!!! that was great. i loved it it was pretty funny too. It's a great movie! Doy!!!,0 +3874,"It was considered to be the ""Swiss answer to the Lord of the Rings"", but it is much more than that. It isn't an answer to anything, it's in itself something new, something funny and sometimes it's downright stupid and silly - but was Monty Python any different than silly?<br /><br />The beginning immediately makes the statement that this film is low budget and not meant to be taken entirely seriously. Cardboard clouds on strings knock into the airplane in which the main character is seated. But, to compensate the missing special effects, the landscape does the trick. It is absolutely beautiful and stunning - who needs New Zealand, Switzerland has it all. <br /><br />What I liked about the film was the simple approach and the obvious passion and energy that went into it. It isn't brilliant; yet it's got some good humorous parts. Edward Piccin as Friedo is absolutely convincing, it would be enough to go and see the film because of him!There are some good jokes, some of them are very lame, some of them won't be understood by people outside of Switzerland. I liked the idea of having ""Urucows"" instead of Uruk Hai; I loved the scene where Friedo decides to take ""Pupsi"", a telehobbie, with him on the journey. Also very funny is the scene when Rackaroll, the sword-fighting knight, decides to show off with his sword - and subsequently smashes it into a wall, breaking it. And there is this one scene where the ""nazgul-ish"" characters do a wonderfully comic scene that includes a toilet brush... I didn't approve of the idea of the Ring being used by Schleimli, the ""Gollum"" character, in order to ""seduce"" the ladies. That was a bit far fetched. The idea of Lord Sauraus wanting to cover the lands with fondue wasn't that brilliant either. Original, certainly, but not brilliant. But most of all did I dislike the idea of a gay dragon, that really wasn't necessary. All in all I recommend to see the film simply because it is so crazy and totally trashy. Don't expect a LotR parody like ""Spaceballs"" was for Star Wars. But if you go to the flicks thinking that this is going to be an amusing evening out, with absolutely no ambitions, then you'll enjoy. I am not sure if it works in other languages, because it does live from the Swiss dialects as well as from the jokes and actors.<br /><br />All in all: hat off to the courage of the Swiss crew who did that!",1 +11860,"A super comedy series from the 1990s (Two series were made in total) that suffered in the UK ratings due to poor scheduling. When you are up against established comedies like 'Minder', even the best new comedies are going to struggle to get noticed.<br /><br />Luckily, I caught the series from episode one and followed it avidly. I mentioned it to friends and family at the time, but everyone seemed to have been watching something else. Very, very frustrating.<br /><br />Anyway, I loved both series and never forgot it.<br /><br />Then I looked it up on the internet and found that an ultra-fan was trying to get both series released 'on his own'.<br /><br />Well, both series are now available on DVD.<br /><br />http://www.replaydvd.co.uk/joking_apart_S1.htm",1 +22150,"This movie is a waste of time and money. Throughout the entire hour and a half, I continued to wait for it to get better and it never did. It was slow moving, the plot jumped around, it wasn't scary or interesting, and really never amounted to anything. The credits during the introduction were long and drawn out, which was basically like the rest of the movie (long and drawn out). Numerous parts of the plot made no sense. Several times during the movie I had thought that maybe I had ""zoned out"" because the incongruity of the plot, however, my companion had the same issue and assured me I did not ""zone out"" from boredom, but it was indeed the movie. I've actually never posted on here about a movie before and have been actively looking up movies on IMDb for numerous years. So the fact that I'm actually taking the time to write something should speak volumes of how bad this movie is and that you should not waste your time or money on it.",0 +3739,"After seeing You've Got Mail and feeling disappointed, I decided to see the original movie which inspired this one, The Shop Around the Corner. I was amazed at this movie. It's a true gem and from this moment one of my favorite movies of all times. The acting is so perfect, the story is so beautiful, that if you haven't seen it, I wish to urge you to see it today. I'm not against re-makes and sometimes I like the new version more than the original one, but this time have to admit that You've Got Mail is a poor adaption of this classic. Don't miss it, go to your video store and rent The Shop Around the Corner today!",1 +29,"Without Kirsten Miller this project needn't have been completed. However with the awe inspiring beauty and talent that is Miss Miller I would definitely recommend it. It looked as if the other actors were only playing to her strong performance. Wagner's dismal attempt to honor this film was a bit disappointing, but his few scenes didn't detract from being entertained. Mostly my criticisms are with the writing and plot line, the group of talent assembled did a heroic job of salvaging what should have been a disaster. The charismatic Miller delivery and timing were impeccable and believable. She plays that fine line between assertive and bossy but never offensive she is in fact the structural engineer she claims to be. I wish I had seen this on the big screen but alas I was fortunate to rent it before it was lost.",1 +18932,"Ok, first the good: Cher's performance and the cinematography. Although I'm no Cher fan, she gives an excellent performance and her part was well written. The cinematography was well done and captures a sense of romance.<br /><br />The Rest: a thin plotline, Nicholas Cage's performance, and a totally unhumorous and weak attempt to portray an Italian-American family from New York. Firstly, everytime time Cage opened his mouth I cringed. I don't know what kind of accent he was trying use. I honestly don't, it sure wasnt any New York or Italian accent I've ever heard. It was quite surreal. And it wasn't because I'm some stickler for accuracy, his voice just cloyed in my ears. And I like Nicholas Cage in other performances. Secondly, and this is purely anecdotal, but I have many Italian relations, friends and acquaintances in New York City, and frankly I've gotten more laughs and felt more joy in the appreciation of the Italian ethnic family by far than this movie provided. And that would be on a boring night at the house. What a let down.",0 +8843,"THE LAST WAVE is never going to win over the mainstream audience. It is a slow-moving but fascinating film for those who are willing to go along with it. An Australian properties lawyer is asked to take on the case of five aborigines accused in the murder of one of their own. All sorts of portents and omens soon pop up, as the man's death involves a tribal issue that was not meant for white man's court, and pretty soon the lawyer is having trouble distinguishing reality from fantasy. It looks like the end of the world may be at hand, and he and the aborigines may know this but no one else does. Richard Chamberlain as the lawyer is at his peak here. David Guptil, a familiar face from several other Australian flicks and a decent actor, is one of the five aborigines on trial. THE LAST WAVE is simply not for everyone, anymore than is MAGNOLIA (both happen to have strange things falling from the sky). Check it out on a slow Saturday night.",1 +6814,"For persons of a certain age, W.W. II was the defining time of their lives, and whatever followed could never compare. As the movie opens, a recently widowed but still lively woman (Judi Dench) hears a street musician gamely attempting to play the classic song, ""Stardust.""<br /><br />This recalls her memories of when she played in an almost all-girl band that entertained between bomb raids during the War. The drummer, Patrick (Ian Holm), happily avoided the draft and enjoyed the ladies.<br /><br />Patrick and Dench's character meet and decide to reunite the band, which takes them on a series of mini-adventures. Despite ups and downs, the band does reunite and makes a successful reappearance.<br /><br />The movie is exquisitely written and understated, with superb performances from all involved. The characters are well-developed and all people who have not quit living, despite their years. And there's all that glorious old swing music!<br /><br />This isn't the pontification of Steven Spielberg, but a serious movie nevertheless. The War affected everyone and that lesson is not forgotten in a movie that isn't afraid to entertain as it teaches.",1 +11257,"The film's design seems to be the alpha and omega of some of the major issues in this country (U.S.). We see relationships all over at the university setting for the film. Befittingly, the obvious of student v.s. teacher is present. But what the film adds to its value is its other relationships: male v.s. female, white v.s. black, and the individual v.s. society. But most important of all and in direct relation to all of the other relationships is the individual v.s. himself. <br /><br />I was amazed at how bilateral a point of view the director gave to showing the race relations on campus. Most films typically show the injustices of one side while showing the suffering of the other. This film showed the injustices and suffering of both sides. It did not attempt to show how either was right, although I would say the skin heads were shown a much crueler and vindictive (quite obvious towards the end). The film also discusses sex and rape. It is ironically this injustice that in some ways brings the two races together, for a time. Lawrence Fishburne does an over-the-top performance as the sagacious Profesor Phipps. He crumbles the idea of race favortism and instead shows the parallelism of the lazy and down-trodden with the industrious and positive. Other stars that make this film are Omar Epps, Ice Cube, and Jennifer Connelly. Michael Rapaport gives an excellent portrayal of a confused youth with misplaced anger who is looking for acceptance. Tyra Banks make her film debut and proves supermodels can act.<br /><br />Higher Learning gets its name in showing college as more than going to class and getting a piece of paper. In fact, I would say the film is almost a satire in showing students interactions with each other, rather than some dry book, as the real education at a university. It is a life-learning process, not a textual one. I think you'll find ""Higher Learning"" is apropos to the important issues at many universities and even life in general. 8/10",1 +15105,"This movie starred a totally forgotten star from the 1930s, Jack Pearl (radio's ""Baron Munchausen"") as well as Jimmy Durante. However, 7-1/2 decades later, it's being billed as a Three Stooges film because they are the only ones in the film who the average person would recognize today. Film fanatics will also recognize the wonderful Edna May Oliver as well as Zazu Pitts.<br /><br />As for the Stooges, this is a film from there very early days--before MGM had any idea what to do with the team. At this point, they were known as ""Ted Healy and his Stooges"" as Healy was the front man. Fortunately for the Stooges, they soon left this nasty and rather untalented man (read up on him--you'll see what I mean) and the rest is history. Within a year, they were making very successful shorts for Columbia and executives at MGM were soon kicking themselves for losing the team. This sort of thing was a common occurrence at MGM, a great studio which had no idea what to do with comedy (such as the films of Buster Keaton, Laurel and Hardy, Abbott and Costello and others). In fact, up until they left for Columbia, MGM put them in a wide variety of odd film roles--including acting with Clark Gable and Joan Crawford in DANCING LADY. And, oddly, in this film they didn't act as a team--they just did various supporting roles, such as Larry playing the piano!<br /><br />This particular film begins with Pearl and Durante lost in the African jungle. When they are rescued and brought home, all sense of structure to the film falls apart and the film becomes almost like a variety show--punctuated by scenes with the leads here and there. As for Pearl, I could really see why he never made a successful transition to films, as he has the personality of a slug (but slightly less welcome). As for Durante, I never knew what the public saw in him--as least as far as his films are concerned--he was loud and...loud! He apparently took time off from helping MGM to ruin Buster Keaton's career to make this film. Together, Pearl and Durante rely on lots of verbal humor(?) and Vaudeville-style routines that tend to fall rather flat.<br /><br />In this film, the Stooges they didn't yet have the right chemistry. Seeing Healy doing the job that Moe did in their later films is odd. What they did in the film was pretty good, but because all the segments were short, they came on and off camera too quickly to allow them to really get into their routines. Stooges fans might be very frustrated at this, though die-hard fans may want to see this so that they can complete their life-long goal of seeing everything Stooge--even the rotten Joe DeRita and Joe Besser films (oh, and did they got bad after the deaths of Shemp and Curly).<br /><br />Overall, the film is rather dull and disappointing. However, there are a couple interesting things to look for in the mess. At about the 13 minute mark, you will see a brief scene where a tour guide on a bus is singing. Look carefully, as this is Walter Brennan in a role you'd certainly never expect! Another unusual thing to look for in the film is the ""Clean as a Whistle"" song starting at about 22 minutes into the film. This song and dance number is clearly an example of a so-called ""Pre-Code"" scene that never would have been allowed in films after 1934 (when the Production Code was strengthened). Despite the word ""Clean"" in the title, it's a very titillating number with naked women showing lots of flesh--enough to stimulate but not enough to really show anything! It's quite shocking when seen today, though such excesses were pretty common in the early 1930s. Finally, at the 63 minute mark, see Jimmy Durante set race relations back a few decades. See the film, you'll see that I mean!",0 +21745,"When this film was released in 1997 the 'special effects', such as they are, were poor. They would have been dated even for the 1980s, and even some films made in the 1970s and 1960s have had the same or better SFX work. Certainly no-one involved in the production of this film was looking for an Oscar. It's a wild departure from director Fred Olen Ray's usual stuff, most of which has the word ""Bikini"" in the title (Bikini Pirates, Bikini Chain Gang, Bikini Girls from the Lost Planet, etc) and are little more than T&A flicks, but here we are with a film rated ""U"" and aimed squarely at the kiddies. You've got to give him credit for diversifying!! This was a minor direct-to-video cult hit which later resulted in a couple of sequels - Invisible Mom 2 and Invisible Dad. Dee Wallace-Stone (whose career went downhill fast after 1982s ""E.T.) plays the 'invisible mom' of the films title and would return for the sequel. Russ Tamblyn (whose career had been in free-fall even longer since 1961s ""West Side Story"") plays the villainous Dr. Woorter. It's probably fair to say that most of the cast were at the point in their careers where they would be prepared to work on almost anything just to pay the bills that month - except maybe young Trenton Knight as Josh. It's rather telling though that although he worked prior to this movie, this child actor didn't work again after the sequel, ""Invisible Mom 2"". Maybe the film was cursed. After all, he wasn't that bad in this film. For a child actor, he's pretty good - no better or worse than any of his more experienced co-stars.<br /><br />As mentioned above, the ""invisibility"" effects are naff to say the least, the direction is poor, the writing obvious and the acting nothing to write home about. There are plenty of worse films out there though, and for anyone under the age of about ten, this film will no doubt be quite watchable. Most adults will probably want to do a disappearing act of their own while it is on though, and I wouldn't blame them one bit!",0 +5449,"De Sica is becoming one of my favorite directors, but this one was a hit-and-miss for me. A grinning idiot youth becomes the leader of a community of illegal settlers in a deserted area outside Milano. It is a detailed and sparkling story of the innocent poor masses, complete with evil capitalists and trigger-happy police forces, but slowly it evolves into a magic fantasy tale, as the boy wonder Toto develops unlimited superhero powers. I had it up to here with the ever-smiling Toto after 10 minutes, and when the magic took over, I was left in the dust. There were so many wonderfully orchestrated shots, so many good characters among the settlers, that I kept thinking it was a waste the movie wasn't more serious with its material. The coupling of neorealism and fantasy comes out more as an experiment of the ""look-what-we-can-also-do-mum"" sort than as a fully developed piece of work/art.",1 +17984,"It's not just that this is a bad movie; it's not only that four of the ""best"" Mexican movie makers are in this film; and it's not only that the script is terrible. It's just that...this movie sucks...big time. This people are wasting money in terrible scripts. It's supposed to make a criticism about Mexican society but we're fed up with this kind of films. Is bad language supposed to be funny? I don't get it. Mexican cinema is in big trouble if this kind of movies are going to continue playing (and being written and produced).<br /><br />Please, don't think this kind of movies are well received in Mexico: We hate them and they don't reflect us.",0 +7125,"An unusual take on time travel: instead of traveling to Earth's past, the main trio get stuck in the past history of another planet. They beam down to this planet, whose sun is scheduled to go nova in 3 or 4 hours (that's cutting it close!). In some kind of futuristic library, they meet Mr. Atoz (A to Z, get it? ha-ha) and his duplicates. It turns out, instead of escaping their planet's destruction via space travel, the usual way, the inhabitants have all escaped into their planet's various past time eras. Mr. Atoz uses a time machine to send people on their way after they make a selection (check out the discs we see here, another Trek prognostication of CDs and DVDs!). When Mr. Atoz prepares the machine (the Atavachron-what-sis), gallant Kirk hears a woman's scream and runs into the planet's version of Earth's 17th century, where he gets into a sword fight and is arrested for witchery. There's an eccentric but good performance here by the actress playing a female of ill repute in this time, using phrasing of the time (""...you're a bully fine coo.. Witch! Witch! They'll burn ye...!""). Spock & McCoy follow Kirk, but end up in an ice age, 5000 years earlier.<br /><br />Kirk manages to get back to the library first. The real story here is Spock's reversion to the barbaric tendencies of his ancestors, the warlike Vulcans of 5000 years ago. This doesn't really make sense, except that maybe this time machine is responsible for the change (even so, Spock & McCoy weren't 'prepared' by Atoz - oh, well; it also seems to me Spock was affected by the transition almost immediately - he mentions being from 'millions of light years' away, instead of the correct hundreds or thousands - a gross error for a logical Vulcan). In any case, Spock really shows his nasty side here - forget ""Day of the Dove"" and remember ""This Side of Paradise"" - McCoy quickly finds out that his Vulcan buddy will not stand for any of his usual baiting and nearly gets his face rearranged. Spock also gets it on with Zarabeth, a comely female who had been exiled to this cold past as punishment (a couple of Trek novels were written about Spock's son, the result of this union). All these scenes are eye-openers, a reminder of just how much Spock conceals or holds in. It's also ironic that, only a few episodes earlier (""Requiem for Methuselah""), McCoy was pointing out to Spock how he would never know the pain of love - and now all this happens. Kirk, meanwhile, tussles with the elderly Atoz, who insists that Kirk head back to some past era (""You are evidently a suicidal maniac"" - great stuff from actor Wolfe, last seen in ""Bread and Circuses""). It all works out in the end, but, like I mentioned earlier, they cut it very close. A neat little Trek adventure, with a definite cosmic slant.",1 +7136,"Rarely do I see a film that I am totally engrossed with; this was one of them. It had good acting, dialogue, plot, and the scenery was beautiful. I laughed out loud many times, especially the scene dealing with the kitchen raid. The slapstick comedy performed by the lunkhead hired hand had me one the floor, but I admit that I am a sucker for slapstick. The story dealt with a group of people in their 30's coming back to a summer camp that they had attended 20 years previously. It was a farewell week of camping, as the place would be closed down permanently at the end of the season. As adults the camp looked different, and they felt differently about it and each other. I recommend this funny, moving movie to all.<br /><br />",1 +9932,"When people think of downtown Chicago they think of Walter Payton, Ditka and ""Da Bears"", Ryne Sandberg, The White Sox breaking the curse in 2005 or the immortal Michael Jordan and his six championships (and Finals MVP's) with the Chicago Bulls. Rarely in this generation do people think of the struggling side of Chicago, the ghettos, the drug infested streets and life in the urban housing projects during the 1970's.<br /><br />One of television's most formidable shows ever and a groundbreaking sitcom was ""Good Times"", which I remember vaguely as a small child on CBS, and I enjoy regularly now on TV Land.<br /><br />""Good Times"" was another Norman Lear classic, the producer that gave us ""The Jeffersons"", the best African American sitcom of all time and ""All in the Family"" the greatest show of all time. ""Good Times"" brought out the hardships of the ghetto and the urban housing projects, and did so with charm, well written and thoughtful plots, and some wonderful acting especially by the matriarch and patriarch of this struggling ghetto family played by Esther Rolle and John Amos. The children in the supporting cast were also pretty good especially the ever popular Janet Jackson in her early years and Ralph Carter as Florida and James Evans youngest son whose character at a young age realizes that life is unfair, and he has to learn to stand on his own two feet.<br /><br />The eldest of the children J.J. played by Jimmy Walker is somewhat out of place on this show and is there mainly for comic relief. His emotional age is about 11 or 12 even though he looks like a guy in his early twenties. J.J. gets annoying, and it is a credit to the often nasty James Evans (Amos) that he never tells J.J. to get his own life, get a job and get out of the house. J.J. is an aspiring painter but unlike his younger brother is never serious about getting a college degree, or more important to the family getting a job to help support a household that is just above welfare status.<br /><br />Two classic episodes of Good Times was the one where the Janet Jackson character is running a fever of 104, and Florida Evans is desperately seeking good medical help for her can't afford anything but a clinic doctor who is very professional yet doesn't want to give a family from the projects any more attention than she legally has to. The other episode is the one where James Evans can't afford the rent a paltry low $104 a month. The Evans are about to get the largest of family setbacks, being thrown out of the projects with no where to go. Florida Evans goes downtown to the board of social services to try to get either a loan or a grant to help her family. But the government doesn't consider her family poor because they have over $4,200 in assets for a family of five which is unfairly but unfortunately legally over the poverty line. James and the kids want to hustle for the money, but Florida is a person of great moral character and doesn't want to do anything dishonest no matter how dire their predicament is. In the end the family does find a solution to keep their heads above water.<br /><br />""Good Times"" a classic show from the 1970's is about keeping you're head above water in a cruel world. James and Florida Evans both work hard in menial jobs to try to bring their children up right and avoid the social stigma of welfare. I was too young to understand the message of the sitcom as a toddler in the 70s in its first airing on CBS, but I really enjoy the reruns on TV Land in 2006. ""Good Times"" is one of the classic sitcoms from back in the day.",1 +3776,"Everyone in the cast, from Sugiyama to Aoki and Toyoko is someone we know in everyday life. They were so natural, and Sugiyama's transformation is incredibly believable. The score is so moving, it brought me to tears. The choreography was beautiful without seeming athletic. Mai's graceful dancing and charm gave me goosebumps. Tamako is such a wonderfully delightful character. You can almost see the charmed schoolgirl in her face as she reminisces about seeing ""The King and I"". Aoki's character is both hilarious and pitiful. Masako is so overwhelmingly natural as the bewildered wife, you almost want to hug her to reassure her that everything will be all right.<br /><br />This film is truly a keeper.",1 +11147,"Flynn, known mostly for his swashbuckling roles (and his bedroom antics!) takes a different tack with this film and it works beautifully. Playing real-life boxing champ Jim Corbett, Flynn turns on the charm full blast as he makes his way from a stifled San Francisco bank teller to a celebrated pugilist, all the while setting one eye on society deb Smith. He and best pal Carson attend an illegal bare-knuckle fight and are arrested along with scores of other men (and a dog!) including a prominent judge. The next day, he gets a chance, via Smith, to gain entrance to the judge's private club. He uses this opportunity to weasel his way into the good graces of its exclusive members and land a spot as the club's resident boxer. His unusually adept skill in the sport soon has him taking on all comers, up to and including the world champion John L. Sullivan (Bond.) Flynn is downright magical here. He is the epitome of charm, charisma and appeal in this role. He looks terrific (especially in a hangover scene with his hair mussed and wearing a white union suit) and does virtually all of his own stuntwork (impressively!) His line delivery is delicious and he is credible and sympathetic and at the same time duplicitous and rascally. Smith exudes class and taste from every pore and is a good match for Flynn. At this stage, he needed a female costar who could stand up to his advances and reputation (he was undergoing statutory rape charges at the time) and she does so admirably. She is repulsed by his freshness and cavalier attitude, yet can hardly help but fall under his enchanting spell. Bond is incredibly burly, brawny and towering, yet tender when the script calls for it. Amusing support is provided by a young and ebullient Carson. Frawley is his dependably cantankerous self as Flynn's manager. The rest of the cast is excellent as well including Flynn's rambunctious family and an assortment of stuffy Nob Hill types. The whole thing is beautifully appointed and securely directed. A few of the sets are amazingly presented. Some of Smith's gowns border on the garish, but she suits the upswept hairstyles very well. It's a terrific glimpse into the earliest days of championship boxing, but it's also so much more. Some of it (like the character traits shown by Flynn) is enhanced or exaggerated for entertainment purposes, but a lot of it is authentic (like the methods and costumes shown in the fight scenes.) One line is particularly memorable: ""I believe you like me more than I like you, but it's entirely possible that I love you more than you love me."" It's classic romantic dialogue (and there are more than a few zingers sprinkled throughout the script as well.)",1 +19471,"There's not much to say about this one. Gammera is some kind of fire breathing turtle. He is loosed by a nuclear explosion. He heads for land and begins to destroy building and tanks and other junk (oh yeah, power lines. I almost forgot). At one time, early in the film, he befriends a little boy, and instead of just throwing him away, or squashing him, he places him down on the ground. Safe. From then on we have to watch this chubby faced little twerp show up and run away, show up and run away, show up and run away. For some reason, Gammera is able to hear this kid from 20,000 feet away. Oh, well, the plot is to try to get Gammera to get to a place where he can be put on board a rocket and shot into space. As usual, the monster is lumbering and uncoordinated (a guy in a Gammera suit). The Japanese army (with the help of Americans), uses up enough ammunition and fire power to solve the national debt, and, of course, it does no good. They should know this anyway. We've seen a lot of monsters stomp on Tokyo. Not to put these down because they can be fun, but it's really not very good.",0 +3002,"Being a transplanted New Yorker, I might be more critical than most in watching City Hall. But I have to say that before even getting to the story itself I was captivated by the location shooting and the political atmosphere of New York City that Director Harold Becker created.<br /><br />For example there's a reference to Woerner's Restaurant in Brooklyn where political boss Frank Anselmo likes to eat. There is or was a Woerner's Restaurant on Remsen Street in downtown Brooklyn when I lived in New York back in 1996. It was in fact particularly favored by political people in the Borough though they did have a couple of other hangouts.<br /><br />No surprise because the script was co-authored by Nicholas Pileggi who still writes both political and organized crime stories. He knows the atmosphere quite well and he sure knows how those two worlds cross as they do in this film.<br /><br />A detective played by Nestor Serrano goes for an unofficial meeting with a relative of mob boss Anthony Franciosa and things erupt and three people wind up dead, including an innocent 6 year old boy whose father was walking him to school. The story mushrooms and at the end it's reached inside City Hall itself.<br /><br />Al Pacino plays Mayor John Pappas and John Cusack is his Deputy Mayor a transplanted Louisianan, a state which has a tradition of genteel corruption itself. He's the outsider here and in trying to do damage control, Cusack finds more than he bargained for,<br /><br />Danny Aiello plays Brooklyn political boss Frank Anselmo and for those of you not from New York, his character is based on the late Borough President of Queens Donald Manes who was also brought down by scandal. He's very much the kind of Brooklyn politician I knew back in the day whose friendship with organized crime and favors done for them, do Aiello in. <br /><br />City Hall was the farewell performance on film for Anthony Franciosa, one of the most underrated and under-appreciated talents ever on the screen. No one watches anyone else whenever he's on.<br /><br />Al Pacino's best moment is when at the funeral of the young child killed, he takes over the proceedings and turns it into a political triumph for himself. His is a complex part, he's a decent enough man, but one caught up in the corruption it takes to rise in a place like New York. <br /><br />For those who want to know about political life in the Big Apple, City Hall is highly recommended.",1 +11289,"I've seen The Blob several times and is one of the better low budget alien invasion movies from the 1950's.<br /><br />A strange meteor lands just outside a small town and an elderly man goes to investigate this. A strange jelly like substance then attaches itself to one of his arms and a young couple who saw the meteor land arrive in time and take him to the local doctor's, where the old man then gets completely absorbed by the mass. The doctor and his nurse are the next victims and the mass is getting bigger. When these incidents are reported to the police, they don't believe the young couple and accuse them of making all this up. They finally believe them when the mass, now huge turns up in the town's cinema and everybody runs into the streets screaming. It then attaches itself on a diner with the young couple and some others inside. The Blob is stopped by spraying a load of fire extinguishers at it and it freezes, which is its weakness. It is then transported by plane to the frozen wastes of the Arctic and disposed of there. But it is only frozen, not dead...<br /><br />This movie has a typical setting for its period: teenagers and a small town. The Blob has a good rock and roll style theme song at the beginning and the movie is atmospheric throughout.<br /><br />The sequel, Beware! The Blob followed in 1972 and a remake came in 1988 but this is the best of The Blob movies.<br /><br />The cast is lead by Steve McQueen (The Great Escape)and is the movie that made him a star and Aneta Corsaut plays his girlfriend. I'm not familiar with any of the other stars.<br /><br />The Blob is a must see for all sci-fi fans. Fantastic.<br /><br />Rating: 4 stars out of 5.",1 +4877,"I am Black American and I loved this soap opera. I watched it dubbed in Spanish on Telemundo, almost 5-7 years ago. The story was a TRUE story about a black slave who's love affair with a white commander led to her leadership and candid, whimsical way of living.<br /><br />A lot of us could learn a lot from XICA. She took what she had, nothing, and saw her possibilities. Many would argue that she sold herself out - but she was trying to secure her future and that of her future children.<br /><br />It was such an excellent soap opera, that I thought it would be released on DVD, but it's not being released. This soap opera was the best soap opera EVER. We need for it to be released on DVD or broadcast on TV again. It's playing on Azteca America right now, which is only available in Mexico or in the US by paid cable. We need it released again to Telemundo.",1 +960,"This movie is great fun to watch if you love films of the organized crime variety. Those looking for a crime film starring a charismatic lead with dreams of taking over in a bad way may be slightly disappointed with the way this film strides.<br /><br />It is a fun romp through a criminal underworld however and if you aren't familiar with Hong Kong films, then you may be pleasantly surprised by this one. I was somewhat disappointed by some of the choices made story-wise but overall a good crime film. Some things did not make sense but that seems to be the norm with films of the East. <br /><br />People just randomly do things regardless of how their personalities were set up prior. It's a slightly annoying pattern that permeates even in this film.",1 +984,"A horror movie is being shot and things aren't going well. It's about a masked killer. The director tells off the killer in front of the cast and crew. He goes crazy and kills two people. He's killed himself and the film is never finished. Twelve years later a bunch of film students decide to try and finish it--but there's a curse. People who try and finish it are killed themselves. The students ignore that. Guess what happens next?<br /><br />The plot is old hat but this isn't bad...for what it is (a low budget slasher film). It's well-made with a young and fairly talented young cast. No one is great but no one is terrible either. It also avoids the obligatory (and needless) female nude scenes. It moves quickly, the gore is nice and bloody and the script doesn't insult your intelligence. Also Molly Ringwald is in this having the time of her life playing a bitchy faded actress.<br /><br />No great shakes but not bad at all. I give it a 7.",1 +2561,"Wasn't quite sure what to expect with this one, outside of the uniform positive reviews I've read. Turns out, I could have never imagined this movie, because it's very close to ""The Bride with White Hair"" in being operatic and dealing with the fantastic. This walks a fine line between being a farce, a comedy, and just plain good old fashion ghost story telling. There's nothing scary about it, that's not the theme, it's really mostly a love story dealing with a bumbling guy who encounters a beautiful ghost, who is in a lot of trouble with other ghosts. So the main theme is the guy trying to save the beautiful ghost. This also takes place in ancient China, with wild outlandish Kung Fu exhibitions, and a trip to hell (more or less). Some of the stop-action ghosts are pretty cool, and the visual effects are top rate all the way. I could watch this genre of Chinese movies all day, because they are highly entertaining, great visuals, and pretty much tongue-in-cheek. And I'm looking forward to watching the first sequel of this movie also. Highly recommended.",1 +15142,"Relying on the positive reviews above, we saw a free screening of this last night. Now I KNOW that filmmakers plant positive reviews, because there is no way an objective individual could have written these. ""Destined to become a 'cult classic'""?? The theater was packed, apparently with friends and families of the production crew, because only a few of us walked out by the first hour.<br /><br />The songs were the most literal I've ever heard in a musical ""don't take the short cut, honey, there's a wolf in the woods.."". Debi Mazar's eyes blinked furiously as she struggled to sing. Fortunately, most of the tunes lasted for only a few lines.<br /><br />Now, whoever plays the wolf in this tale should be charming and seductive. Instead, we get Joey Fatone, ex N'Syncer, living up to his last name as he's not aged well. He's not exactly lithe with his extra 50 pounds and junior high school-quality makeup and out-of-tune singing. Seriously, this guy was in vocal group? The rest of the actors are semi-adequate, but can't do much about the unimaginative script. You know, it is possible to write for adults and children at the same time see under ""Pixar"".<br /><br />On the positive side, the virtual sets looked nice and were well-integrated with the actors. And it wasn't as offensive as ""Crash"".",0 +12140,"Made me wish my own happy birds could talk. Tisk tisk on the reviewer who dissed the movie. A sweet story that people of all ages will enjoy. Paulie is a lovable little treasure. He has quite a few clever lines that truly made me laugh. I especially loved the dance sequences during his showbiz stint. You can forgive the obvious clichés as you cheer him on in his quest to be reunited with Marie. A charming movie featuring two strong characters who genuinely befriend the little parrot separated from his young owner. Would have liked to have seen more of the woman who becomes blind and must abandon their mutual journey. I liked her artistic and poetic inspirations, a shame she could not share Paulie's reunion. Bless Paulie in his new home, at last with Marie, perhaps joined by the nice young man who helped him defeat the antagonists to complete his journey.",1 +8319,"Uncompromising look at a suburb in 21st century Vienna mixing the stories of six groups of characters by former documentary maker U.Seidl is a provocative, minimalistic and intense piece of observation cinema.<br /><br />After the world-wide spread of Big Brother reality shows, Hundstage takes modern voyeurism to an unsettling, profound level. Hard to like but unignorable piece of European art-cinema might seem cruel and seedy, yet manages to convey the nihilistic alienated feeling of modern society in a praiseworthy manner.<br /><br />A must for lovers of world cinema.",1 +5359,"It's hard to say sometimes why exactly a film is so effective. From the moment I first came across ""The Stone Boy"", something told me it would be a great film. In spite of that, it seemed very unlikely that I'd ever have the opportunity to actually see it for myself. Then, one day, while looking through the online catalogue of my local library, I saw that they had recently purchased the DVD release of this film. Which I'm extremely glad for, because the cinematography is of a stunning depth and quality that an old VHS copy could never replicate.<br /><br />And speaking of the cinematography, I must single it out as far and above the most stunning aspect of this film. As a photographer who pursues very nearly the exact visual style portrayed in ""The Stone Boy"", I'm a firm believer in the fact that a great cinematographer can almost single-handedly carry a film. Here, he has a lot of help from an extremely talented cast, and a director who understands perfectly what the story needs. But to have Juan Ruiz Anchía behind the camera makes virtually every scene something of beauty. And you can almost never say that. Most films would never even expect such a thing of you. Scene after scene captures some detail, some little bit of visual magic that takes your breath away.<br /><br />The director, Christopher Cain, has had a long and interesting career. As far as I can gather, this film is not very representative of it. But, sometimes, to catch a director near the beginnings of his career, before all the big budgets and loss of focus, there's a real subtle magic to be found. Cain steps back in this film, lets things happen with a life of their own, and then ever further. Much like early John Sayles films, characters are given space to breathe, time to talk. Side stories happen because they do, and that's how life is. Cain displays a remarkable, raw, even outright painful understanding of human nature in this film.<br /><br />The acting ties much of this story together. When people talk, when they exist in this film, they do so as actual people, not held back by the fact that they are playing characters. Gina Berriault's script allows immensely talented and respected actors like Wilford Brimley, Robert Duvall, Glenn Close, and Frederic Forrest to spend time simply existing. Whether the things they have to say are minor or of deep significance, it all comes down with the weight of pure reality.<br /><br />When you look at the actors involved, or the great soundtrack by James Horner, it seems strange that such a film be very nearly forgotten. Maybe much of what makes ""The Stone Boy"" what it is was the time period it was made in. There's this 1970s hangover feeling to this picture that reminds me deeply of my own childhood. People talk of the 80s in terms of modern styles and music, but that's not the 80s I lived in or remember. The look of the images, the understated and dark knowing quality of the acting, and the overall result should get under the skin of any person who grew up in or near this era of time in North America. I see myself in this. I see how I saw the world. And a film like ""The Stone Boy"" sees the world for how it truly is.<br /><br />For more of this feeling, please see:<br /><br />The Black Stallion (1979), Never Cry Wolf (1983), Tender Mercies (1983), Testament (1983), Places in the Heart (1984), Matewan (1987), High Tide (1987), Driving Miss Daisy (1989), The Secret Garden (1993), The Secret of Roan Inish (1994), Wendy and Lucy (2008)",1 +18620,"I knew nothing of this film before I was convinced to see it by a friend who had heard it was a ""non-stop epic battle scene from beginning to end"". That couldn't have been further from the truth. This was one of the most boring, poorly written, amateurishly directed, horribly acted films I've ever had the misfortune to lay my eyes upon. I'd rank it up there with the movie I consider to be the worst film of all time... Battlefield Earth. There basically is no story, it's hard to believe that the makers of this film thought that this cheesy soap opera crap would be taken seriously as actual historic fact. It also features some of the worst dialogue I've ever heard... like this little gem... Guy tells girl ""You smell like the moon."". Girl replies ""What does the moon smell like?"" OMG! You have to be kidding me! The scene where the guy was drawn and quartered got some good laughs from the audience since it looked so ridiculously cheap and the sound FX of the guy being ripped apart reminded me of someone making a fart sound with their mouth. If this is playing at a theater near you, avoid it at all costs. This movie is so bad that I actually made the decision about 45 minutes through that I needed to catch up on my sleep... and I did. Awful.",0 +16603,"this is not just a bad film, it's one of the worst films ever. it's so bad that i found it to be quite enjoyable. the acting, oh my god, the script, you gotta be kiddin'. how can you imagine the writer coming up with things like: - a kid who makes fireworks in school, fireworks SO powerfull, that when someone gets hit by it, they fly a hundred yards backwards and explode. -a girl is trapped in the celler, the killer is trying to break open the door. she gets a drill, but the wire isn't long enough. she first makes an extension cord, oh the horror, and then, when she's done, she drills through the door and drills through the head of the killer. WOW - and there are plenty more examples like that. oh yeah, and what happened to George Kennedy, he used to be great (Thunderbolt and Lightfoot/Cool hand Luke)",0 +9614,"Like another reviewer said, this movie is not a heavy melodrama, but it deals with harsh realities. A very very playful movie that does not dwell for a moment. Some very good acting and some wonderful smiles as well.",1 +4202,"The third collaboration for Karloff and Lugosi sees a move away from Poe and into the realm of the science fiction serial. Karloff plays Dr. Janos Rukh, creator of a device that can capture light rays through his telescope in the Carpathian Mountains and translate them into pictures that form a visual history of the universe.<br /><br />Before several guests, including Lugosi as Dr. Benet, an astro-chemist who had previously scoffed at Rukh's theories, he demonstrates the existence of an unknown radioactive element, here termed ""Radium X"", contained in a meteor that fell to Earth in darkest Africa several thousand years ago. Karloff joins the expedition to prove his theories, but Radium X is a tricky compound - it levels mountains at long range, and cures blindness at short range. Rukh is careless, however, and poisons himself, glowing in the dark rather like those old Ready Breck commercials! Dr. Benet is on hand to devise a counter-active for the radiation, but combination of poison and cure drives Rukh insanely paranoid. Convinced he has been cheated, he seeks out the members of the expedition in Paris, including his estranged wife, and his very touch while in his radioactive state means death...<br /><br />Along the way we get the old pseudo-scientific idea that a dead person's eyes record the image of their killer (a remarkably distinct Karloff!) and the Radium X device used to symbolically melt statues that represent the expedition members. And even a touch of James Whale in a cockney landlady in Paris!<br /><br />The Invisible Ray is great fun, aside from the Gothic opening it's interesting to see Universal move the action around to Africa and Paris. The film lacks pace, but is always absorbing. Karloff slightly overdoes his performance but Lugosi is terrific. Universal used the basic story outline again in Man Made Monster, this time with Lon Chaney Jr. as the glowing menace (this time caused by electricity) and Lionel Atwill as a much madder doctor than Lugosi is here. The Invisible Ray is a sombre and clever little film with much to admire. Not as famous as other Universal Horrors, perhaps, but it works and is highly entertaining.",1 +8025,"I heard about this movie when watching VH1's ""100 Most Metal Moments."" On the segment, Gene Simmons (who played a cameo) and several other interviewees discussed how utterly awful this movie is. Unlike most people, I'm often more curious about checking out movies that have reputations for being ridiculously bad than, say, a masterpiece of cinema. The advantage of having that sort of attitude is half the time I find out that the movies are nowhere near as bad as people said, and I end up enjoying them a lot more than I initially expected. That was my experience with ""Trick or Treat."" Now, it's hard to make a movie about a teenage boy who receives messages from a dead heavy metal star by playing one of his vintage records backwards without people scoffing at the premise. Sure, it's certainly a strange premise, but one that's never been done before! Give the filmmakers points for originality for Pete's sake! If you're looking to buy the DVD, having no prior knowledge of the movie, don't be fooled into thinking Ozzy Osbourne and Gene Simmons are the stars. However, though Simmons has a thankless role, Ozzy does have a funny cameo as a Reverend (that's right, a Reverend!!) who speaks out against heavy metal. For one thing, it's funny seeing Ozzy with short hair. And for another thing, you can't help but laugh at the irony. Sure, it's a cheap shot, but an effective one. The acting is pretty good. I found the performances convincing. The teen characters are horribly clichéd. So expect the usual array of jocks and nerds. And like in every one of these movies, the pretty girl is a decent person who has sympathy for the alienated main character, yet continues to go out with her jock boyfriend. Why's she going out with such a complete jerk in the first place? Because the plot needs an obstacle. No other reason. But I can't deny that one of my guilty pleasures is watching the evil jocks in these movies go down, since I was an outcast in high school. The movie kept my interest for the most part, but the third act is way too conventional and caused me to roll my eyes as there would be one predictable situation after another. But altogether the film is not at all bad and definitely worth viewing on a rainy day. (7 out of 10)",1 +2726,"magellan33 said: ""You can only do so much when the two stars of the show can only be seen by one fellow cast member.""<br /><br />I assume, then, that you never heard of ""Topper"".<br /><br />Which, in addition to the two stars who could only be seen by one member of the cast, had a dog, ditto.<br /><br />This was the kind of program that had ""Not Gonna Make It"" written allover it from the first episode - it was like an arcade video game where you actually have to read the instructions to play; no-one (well, very few of us, apparently) wants to watch a comedy program that has a basic premise that actually requires *thought* to grasp.",1 +3296,"The story is about Ankush (Abhay Deol) - who is professional marriage witness, in short he acts as a witness for couples in marriage registration office - and Megha (Soha Ali Khan) who ran away from her home at Nainital to get married to her love interest Dhiraj (Shayan Munshi). The story starts with Megha waiting at the marriage registration office for Dhiraj to show up but for some reason he does not show up. So Ankush comes in the picture here, who had approached Megha with the intention of earning Rs. 200 for his Witness job and he ends up helping her by providing shelter to her. Ankush grows on his side by working in a bank as an Agent… Ankush falls in love with Megha and she too falls in love with him (or kind of love), both agree for the marriage and Dhiraj comes back in the picture. Unexpected circumstances happen, actually I should say, expected circumstances with unexpected reactions and then….<br /><br />Actually the movie story is bit different than the movies we see and I do not think so it will be accepted by the masses but if you are a movie freak like me and love to watch something different, then you will definitely like the movie. The movie is just an innocent love story drafted very well by the characters of Abhay Deol and Soha Ali Khan. The characters are so natural that you feel as if things are happening to the guy next door. The background music of the film also plays a very good role, it is just too good. The way Delhi is shown is very good and gives a fresh feeling.<br /><br />so let's cut it out and sum it up.<br /><br />Story: A very common story carried very well and transformed to a wonderful experience.<br /><br />Music: Well, as it was Himesh Reshammiya creation, so I did not expect much but still I liked couple of songs of the movie including the Qawwali.<br /><br />Acting: Abhay Deol was the most impressive, very natural and innocent acting but he should stay away from singing in the songs. Soha Ali Khan, she is a doll, a very cute doll I must say. Again very innocent and natural acting and these both actors perfectly fit into their characters. Apart from these two, Shayan Munshi needs some acting lessons and may be few layers of fat to cover the bones. Other actors did their job well.<br /><br />Stars: I would also give it 3.5 stars out of 5. You will enjoy the movie if watched in the theatre, I would recommend watching it in theatre if you are a movie freak and accept uncommon stories. Otherwise wait for the DVD to arrive. The movie will definitely won't be liked by the masses and the business it can do is from word of mouth publicity.",1 +10999,Kalifornia is the story of a writer and his girlfriend photographer who are looking for someone to help pay gas money and take turns at the wheel for a cross country road trip to famous murder sights. Ironically a serial killer and his girlfriend answer the post. Kalifornia is a diamond in the rough and a very intriguing journey with a serial killer. Great performances all around by the leads with Pitt in particular being exceptional. Check it out!!,1 +8476,"Okay, this show is nothing but AWESOME! It has a great story line and plot and great actors and actresses. Jeremy Sumpter is so hott and he is perfect for the role! He is gunna be big in Hollywood. He has a bright future ahead! This show better last a long time because I really love this show, and I hope that it has a lot of success! It is so interesting. I have been waiting for it to come out for about 6 or 7 months and it's finally here, and it's great! I tape it, too. I can watch it whenever I want now! Too bad its only on once a week though. I wish it was on at least twice a week because now I wish that it was Tuesday every day! Hope you all like this show!<br /><br />~Ashley~",1 +341,"I really do not know what people have against this film, but it's definitely one of my favourites. It's not preachy, it's not anchored by it's moral, it shouldn't be controversial. It's just God. Any possible God, no matter the religion. And it's really funny.<br /><br />Jim Carry plays Bruce Nolan, a TV reporter usually stuck on the lighter side of the news, desperate to prove himself (more or less TO himself) that he can be taken seriously and do a good job in an anchor job. This drive is what is slowly driving his beautiful girlfriend Grace (Jennifer Aniston) away. When the final straws are executed, he's quick to not laugh, but yell in the face of God, who in turn gives Bruce his powers. Bruce then makes his life better for himself, until he's guilted into helping others, where he then continues to miss the point of his powers. Meanwhile, his constant excitement about his own life makes him more selfish, leaving his relationship on dangerous ground.<br /><br />OK, that was kinda long. But as a plot, it works well. The step-by-step fashion in which we meet the challenges of being God is much better than clustering his problems together, and is able to hide itself fairly well.<br /><br />As you probably know from hearing about this movie in the first place, Carrey's pitch-perfect acting stays in character (which, luckily enough, is him), and controls and gives atmosphere to the movie scene by scene. Whether they would admit it or not, the role was written or rewritten exclusively for Carrey. Without him, the humour would turn flat, as humour is half execution. And the humour is very good in the first place. But without Carrey, it would kinda feel like a It's a Wonderful Life wannabe.<br /><br />Jennifer Aniston is great and, no matter what some may say, does not act like the only excuse for the third act. At least, you don't think that when you see her. She gives a heartfelt performance and makes you forget you're watching a movie, she and Carrey feel very much like a real couple.<br /><br />The movie feels ggooooodd (see the movie to understand), has a very nice feeling, tackles the idea appropriately and better than expected and overall should never have been called slapped together just to save Carrey's career (which wasn't goin' anywhere.).",1 +291,"Just the ultimate masterpiece in my opinion. Every line, every phrase, every picture is exactly in place and Lindsay Crouse and Joe Mantegna are just THE cool shrink and the sleazy con-man, so well cast. 10 out of 10!",1 +22994,"Painfully bad Christmas film that has an equally painfully bad performance by Vince Vaughn, who is paying his usual frat boy self but this time for a children's movie but with out the wit or charm that is in his R rated films. Vaughn seems like he's on autopilot though most of the film and he keeps running into walls with his lackluster performance. After 30 minutes into the film, you would be in touch your inner scourge and say ""Bahumbag"" at how unfunny this film is and after another 30 minutes, you will want to walk out over how unbearable the film has gotten during that point. Out of all the actors involved in this mess, only Paul Giamatti and Rachel Weisz brings some life to there perspective paper thin roles and that's manly because they are both way too good of actors to be in this film. Paul Giamatti brings some depth and warmth to the character of Saint Nick himself but he's forced to Vaughn's level of juvenile behavior when they are doing their sad sibling infighting. You can see in Giamatti face that he's not having fun with his role and it painfully shows in certain parts of the film. Rachel Weisz brings a sense of fun and spirit to her role but she really does not have much of a character to work with and you can see in her face that she's well aware of that, so much so that she seems irritated in certain parts of the film. Fortunately for her, she's not in the film much at all and is able to save some face, unlike Giamatti, who looks like he's about to fire his agent by the end of the movie. The direction also feels uninspiring, like there is no feeling or flow to be had and this is a supposed to be a holiday movie but it ends up feeling like you are just staring at a fancy widow display that is being torn down.<br /><br />I don't know what went wrong here but with only two actors involved (Giamatti and Weisz) trying their best to at least bring something to the table with a unfunny script they had to work with, spotty direction with no feeling for the subject at hand ( and this is a Christmas movie of all things) and a actor who just does not care about his performance (Vaughn), you have a very unevenly bad film that is very painful to watch.",0 +12283,"I agree that Capital City should be on DVD. I watched this show only by accident in 1994 and fell in love with Rolf Saxon as Hudson Talbot. It was nice to see Americans who work abroad in London in the financial industry for a change. I loved Rolf in this role and loved every other role that he has been in. I can't believe the show only lasted 13 episodes. I liked William Armstrong as Hudson's flamboyant charming friend in the series. When they aired this show in the New York City area, it was always late at night or at off times. The show is less than an hour long. I felt this show should have gone on longer but the casting changes in the second season really made the show a little less interesting. I didn't care for Sylvia but missed the actress, Julia Phillips-Lane in the previous season. I felt this show took chances and often it worked. It showed Americans who loved and chose to live in London. The American characters were not arrogant or tried to outdo their British counterparts. I also liked the fact that they had tried to internationalize the cast rather than make them all British. I liked watching Julia Ormond in an early role. I felt this show should have lasted longer. I felt at times that the previews lasted as long as the show in less than an hour. They could have transferred the cast to New York City and it would have been a hit in America.",1 +1710,"This has to be, hands down, hats off, one of the most uproarious comedies ever made. Starting with the animated blowing, popping bubbles, the entrance to the Daytime Awards, the usual phony drivel spewed by the stars on the red carpet, the rehearsed and badly acted acceptance speech, the venomous comments uttered by the actor's jealous co-stars and producer, under phony smiles. Now THAT is only in the first few minutes. Then, all hell breaks loose from there and it only gets more frantic and ridiculous. Ridiculous in a good way, no, make that a great way. This was the first time I'd seen the always charming Teri Hatcher. While I may not be a follower of Desperate Housewives, she herself is always watchable - same goes for Lois & Clark. Not a huge follower, but if I run across an episode I'd watch it. Robert Downey, jr., does a great turn as slimy, smarmy, snaky, sycophantic David Seaton Barnes, the producer who'd give his right eye to see Sally Field's Celeste Talbert leave the show, if only to finally get to get it on with Cathy Moriarty's Montana Moorehead.<br /><br />Moriarty absolutely shines in this movie, just as she had everywhere else she's appeared. Here, all she has to do is scream ""I HATE YOU I HATE YOU YOU CREEP!"" or give one of her anti-Celeste-co-conspirators an evil grin, and she has me rolling in the aisles. Yes, Cathy Moriarty is a very gifted actress, and one hell of a comedienne. Sally Field gratefully departs from the usual 70-MM-sized Lifetime Tragedy of the Week movies, and we're all reminded why she is who she is today, having started off in comedy afraid of nothing. Her ensuing years of drama had hidden her sense of humor, but like a caterpillar in a cocoon, the brilliant comedienne she is had blossomed and it was joyous to see her as hilarious as she was. The thing with dramatic actors and actresses is that you see in such heavy, serious roles, that you associate them with their character and you can't believe it when you see them finally having some fun on screen.<br /><br />How lucky were the producers to land Carrie Fisher, if only for a glorified cameo. She doesn't realize what a presence she bears on screen. She takes a role which, in the hands of a lesser actress, could easily have been forgotten, but she owns the character and it seems as if she wrote it herself.<br /><br />How lucky was Elisabeth Shue to get thrown in the middle of all this! At the time, she wasn't really known for much. Adventures in Babysitting was kind of cute (yes, I was dragged to an evening show for which I had to pay full price), but she didn't hold my attention - - much. But here, she makes the most of her character - star's niece who falls in love with the star's ex-co-star-and-lover who, of course, turns out to be the niece's father, and the star turns out to be the poor girl's mother.<br /><br />I'll stop there - I feel I practically wrote a book about this brilliant screwball comedy, or at least a novela. If you've seen it, then reminisce. If you haven't, you've missed a real classic, but not really. The DVD's are made of a material that'll last for at least 25 years, and this movie is timeless, so what the hell.",1 +14919,"Annie's wig does not look good. she is not cute and pretty enough to play Annie. Annie sticks out in the movie, as her outfits look like Halloween costumes. terrible acting and terrible plots. This movie is such a change from the 1982 version. I think that a younger and smaller girl should have had the lead role. Ashley Johnson portrays a very boyish Annie. Not appealing at all. At least the casting director got it right with Daddy Warbucks. Ms. Hannigan was also miscast. Camilla Belle played Molly alright. ""Warning"" this movie might insult your IQ so you might just want to only show it to very young children. 8 and younger. Some of the plots are too fictional and could hardly take place in the real world.",0 +23978,"There's a lot of movies that have set release dates, only to get pulled from distribution due to a legal snafu of some kind, and then put in limbo for a long time. You can only wish a film as rotten as ""Slackers"" remained in a coma for what it's worth, which is miniscule. Release dates were continually shifted around for this truly awful movie that is so much a bleep on the radar like it deserves. The premise kicks off under the guise of Ethan, a creepy nerd with a scary obsession for the campus bombshell Angela. Ethan devilishly enlists the aid of David and his friends who have been scamming the school for their entire run with blackmail to help win Angela. I don't like to give spoilers out, but for a piece of crap like this I can make an exception. Angela falls for David, Ethan intentionally screws everything up, the good guys win. That's what happens in a nutshell for another tired retread of the teen gross out genre. Gross humor is funny, it always has been dating back to the days of the immortal classic ""Animal House"", to the likes of contemporaries like ""There's Something About Mary"" and ""Road Trip"" amongst dozens of others of which there are too many to mention. But when you use it as a plot point you can only get so far, case in point, Ethan has an Angela doll composed of her individual strands of hair of which he does god knows what with it. No one wants to take witness to watch Ethan urinating in the shower while singing to himself. No one wants to watch a young man singing ""She'll be coming around the mountain"" with a sock on his penis. But nothing can prepare you for the full visual assault of seeing 50's bombshell Mamie Van Doren bare her breasts at 71 years old. I don't know if it's the story's lack of coherence, which cuts to scenes that make absolutely no sense. Director Dewey Nicks was a former fashion photographer, and after reviewing this film, you can only wish he'll go back to the profession. The worst thing you can do on any film, is to make it look like you're having fun, because you detract from your objectives, just like ""Slackers"" does, by burying it's plot outline under a pile of gross out gags, pointless vignettes, and lack of construction. It's like a bunch of college students got drunk, took one's camcorder, and shot a bunch of random crap and compiled it together. If you want to see a teen gross out comedy that's actually good, then I suggest ""American Pie"" and ""Animal House"", or ""Road Trip"", just something that's entertaining, and not dreadfully bad like ""Slackers"". Coincidentally Cameron Diaz makes a cameo in this film, just as she did in another bad film such as ""The Sweetest Thing"" where the story treats gross humor like another plot, instead of a device much like this disaster.. If you pass by ""Slackers"" at your local video store, just keep on walking, and let it end up at the bottom of the shelf like it deserves.",0 +21403,"NATURAL BORN KILLERS (1994)<br /><br />Cinema Cut: R <br /><br />Director's Cut: NC-17<br /><br />It's an unusual Oliver Stone picture, but when I read he was on drugs during the filming, I needed no further explanation. 'Natural Born Killers' is a risky, mad, all out film-making that we do not get very often; strange, psychotic, artistic pictures.<br /><br />'Natural Born Killers' is basically the story of how two mass killers were popularised and glorified by the media; there is a great scene where an interviewer questions some teenagers about Mickey and Mallory, and the teenager says 'Murder is wrong.... but If I was a mass murderer I'd be Mickey and Mallory'. Mickey describes this with a situation of 'Frankenstein (the monster) and Dr. Frankenstein' - Dr. Frankenstein is the media who has turned them into these monstrous killers<br /><br />Most Oliver Stone films examine the flaws of the America, the country that the director loves and admires. I guess 'Natural Born Killers' is about the effect of mass media, technology and how obsessive as a nation, Americans are (and most of the world) over things such as mass killers and bizarre situations.<br /><br />The killers played by Woody Harrelson (Mickey) and Juliette Lewis (Mallory) are executed astonishingly by two excellent actors who step into the lives of two interestingly brutal killers. Mickey and Mallory believe that some people are worthy of killing, perhaps in the cruel theory of Social Darwinism (survival of the fittest) - Mickey says in his interview in prison, that other species commit murder, we as humans ravage other species and exploit the environment; the script is interesting, but it is questionable how much this film amounts to, in the sense of making us think about society and human behaviour, rather than the intensity of a 2 hour bloodbath that we have seen.<br /><br />The last hour of the film takes place in a maximum security prison; we see the harsh realities of prison life; the attitudes of the warden etc;overfilling of prisons - maybe Stone is questioning the future, the path that society is leading to.<br /><br />Two other interesting characters; First, a reporter who runs a show about 'America's Maniacs' and is obsessed with boosting ratings, that he goes to any length to capture the story of Mickey and Mallory. The other is police officer Scagnetti, an insane, perhaps sadistic officer that is in love with Mallory - he also has some weird obsession with mass killers, since his mother was killed during the massacre at Waco, Texas by Charles Whitman.<br /><br />The cinematography is superb; different colours, shadows, styles create a feeling of disorientation; the green colour most evident of all is green, to resemble the sickness of the killers (in the drugstore when they are looking for rattlesnake antidote).<br /><br />The camera work is insane; shaky, buzzy, it takes some determination to get use to it and accept it. Highly unorthodox, psychedelic and unusual.<br /><br />'Natural Born Killers' does not glamourise the existence of insane murderers, it questions it and how we as the public may fuel this attribute...<br /><br />Although the above review sound quite positive, I did dislike the film. Quentin Tarantino, who originally wrote the script for the film, was not pleased with the altered screenplay and he asked for his name to be removed. I can see why. While mildly interesting at times, Natural Born Killers is a mess of a picture.<br /><br />4/10",0 +19704,"This is a strange sex comedy because there`s very little comedy but a whole lot of sex , most of which takes place in the back of a car and is so graphic it makes BASIC INSTINCT look like an edition of TELETUBBIES . I kid you not , the sex in this film is so in your face it might just choke you , especially if you`re watching with your grandparents .<br /><br />As for the rest of RITA , SUE AND BOB TOO there`s not much else worth mentioning except the language where every single sentence seems to contain the F word . This a rather bleak hyper-realist British film made at a time when Channel 4 was the main investor in British movies which explains its made for television low budget feel",0 +1888,"Man oh man... I've been foolishly procrastinating (not the right term, there's a long list!) to watch this film and finally had the chance to do so. And ""news"" are: Marvellous labyrinthine spectacle!<br /><br />For any Von Trier's ""follower"": both Rigets, Element of Crime, Dogville, Dancer in The Dark, The Five Obstructions, etc... Europa is probably the differential for its greatness in visual terms. Everything is beautifully somber and claustrophobic! You really get the feeling of being inside this ""imaginary"" nightmarish time warp. Taking from the masters of surreal cinema like Bunuel, Bergman, till noir films of the 40's with acidic drops of avant-guard Von Trier leads the art-film scene as the ""well intended totalitarian"" movie maker of nowadays. His authoritarian way of dealing with very intricate issues, without being irrational, hits the nerve of the viewer with the intent to cure some of the deepest wounds we feed in our hypocritical world.<br /><br />As Utopian as it seems, I do believe people like Von Trier could help society in many ways in a broader aspect. The day films and filmmakers that carry this sort of power are no longer necessary, as a tool for reflection, perhaps it could be the start of a new era: ""The age of emotional control over our fears"". This is what he offers to us constantly through his work over and over.<br /><br />Bravo!",1 +12434,"A good Korean film about not just Taekwondo but what its takes to be good, like a thugs way of fighting cannot beat a taekwondo guy in his sport because there are rules, just as there are to life and school and this film has undertones of this notion.<br /><br />The martial arts in the film isn't that good but it is passable and enjoyable. Friends who go on to achieve something they once would mock become stronger through the mind and heart. This film isn't meant to be taken too seriously as it does have slapstick, but it also carries a message.<br /><br />A good film again from Korea.",1 +3398,"All Dogs Go To Heaven Is The Most Cutest Animated Film To Have Dogs In 1989. The Previous Don Bluth Film The Land Before Time(1988) Became A Success. Dogs Are So Cute As Little Mice. Aw, I Just Want To Hug Them When They're Cute. Where Was I? Oh, Yes. Its Animation Is Beautiful, The Characters Are Great When They're Perfectly Voiced And The Songs Are Cute And Touching. It Opened In November 17 1989 The Same Date As The Little Mermaid Produced By Walt Disney Feature Animation.<br /><br />The Part Where Charlie Got Killed By Carface Was So Unforgivable. Carface Is So Mean Because He Wanted To Kill Charlie. Shame On Him! The Love Survive Song Performed By Irene Cara And Freddie Jackson Was So Beautiful. All Dogs Go To Heaven Is The Best Animated Movie Ever.",1 +16297,"Having read another review, I thought this movie would actually be good. I do enjoy the ""B"" movies, but this couldn't even be classed as such. The photography is probably the only half-way decent thing in the movie. But the editing left much to be desired. It was very choppy and staccato. Whoever chose the music and sound did a terrible job. The music was awful, specially anything atmospheric or scene setting. If the acting had been better, they could have pulled the movie off. Unfortunately, I've seen better acting in porn flicks. If you want to see a ""B"" vampire movie, check out 'Blood Ties'. You'll be much more entertained.",0 +17418,"I have to admit that Over Her Dead Body actually wasn't as bad as I was expecting, my mom wanted to see it, so I rented it. I figured just to go ahead and see the horror before my eyes, but actually this wasn't too bad. I was just expecting this horrific movie, but it seems like the writers meant no harm, but the casting of Eva Longoria(Parker, sorry), she seems a little off set for the movie. I think I may have found it to be a little better without her, just she does annoy me. But Paul Rudd and Lake Bell had a decent chemistry that made the film somewhat likable. But you have to admit, there was no point to this movie, it was one of those quick paychecks for the actor type of thing. The movie could've been funnier if someone had really paid attention to it and had a better cast.<br /><br />Henry just lost his bride to be, Kate, who was killed by an ice sculpture on their wedding day. But when his sister takes him to a psychic, Ashley, Henry falls for her, but Kate is haunting her from beyond the grave. Kate is jealous and doesn't want Henry to move on so quickly and she will make sure that Ashley doesn't get him by torturing her day and night with her rambles, believe me, with Kate's voice, that's scary.<br /><br />Over Her Dead Body is an alright movie, not sure if it's worth the money, but I'd give it a rental for you if you want to see it or are curious. Eva Longoria just doesn't have enough star power to make the film work, no offense to those who love her, she just belongs on the small screen over the silver screen. Not to mention the character of Ashley, she seems still not too likable with everything she pulls, or her ""gay"" friend, Dan, just again, not really likable. Just with some re-writing and proper attention, this film could have been better, but instead we get the average predictable romantic comedy that will leave with with an empty feeling.<br /><br />4/10",0 +14491,"Deep Shock plays out like a TV movie: a whole cast of commercial-quality actors, a poorly designed creature to be the ""bad guy,"" and a script that is more full of technical, political jargon and importances than it knows what to do with.<br /><br />I checked out the movie because of the creature (I love to see what filmmakers have in mind for their designs in these cheaply made videos), and right off the bat, I got disappointed because the creature on the box was not the one in the movie. The actors I expected because of the type of film it is (really quite generic and not thought out past a certain point). The music was typical, not-thought-out action symphonic music.<br /><br />I liked the design of the computers and technical equipment, along with the mini-sub design. The movie even flowed really well, with guiding screens letting you know which set you're watching the story unfold in. But there isn't much of a story here anyways.<br /><br />This movie gets a 3/10 stars IMO. The boring search and destroy mission to blow up the North Pole and these creatures protecting it...kinda lame. Even lamer is the tagged-on love relationship between two of the characters that you don't see coming. Chalk this one up to being a movie which tries to get actors' careers off the bench and into a video. Don't bother.",0 +6425,"First time of seeing Buster Keaton's first feature film and I have to admit I liked it a lot and only wish I'd stumbled across it years ago. The Rohauer blurb at the start warns that the Three Ages single nitrate print was rediscovered and salvaged in 1954 just in time before combustion, and many frames that seemed hopelessly glued together were separated. So, it's rocky viewing in places, but I've seen and survived much worse.<br /><br />It would have been OK as the 3 short films but as a take on Intolerance it's inventive and funny from the start to the finish: In the Stone Age with baddie Wallace Beery riding an elephant and goodie Buster riding a pet brontosaurus; In the Roman Age Buster riding a chariot with wheel locks and adapted for sledging, No Parking signs in Latin; In this technological Age of Speed Need and Greed his car beautifully falls to bits at the first hump. Both him and Beery are after the Girl through the ages, a never ending tussle. Favourite bit: As the caveman he gets knocked backward over a cliff edge but still blows a kiss to the camera - an amazing second or two!<br /><br />Great stuff, reaffirming my love of silent film comedy.",1 +24974,This is one of the worst movies I have ever seen! I saw it at the Toronto film festival and totally regret wasting my time. Completely unwatchable with no redeeming qualities whatsoever.<br /><br />Steer clear.,0 +4186,"This is, by all categories, the best movie I have ever seen. Forget Hollywood - their movies always sucked - this is art! Moon Child's story starts with Kei - a Japanese vampire, who loathes what he has become and lives in denial. His wish for final death leads him to Mallepa, where refugees from several Asian countries live. Here, he meets Sho, an orphan living on the street.<br /><br />From here, the movie is an intense experience which bases on the visual and emotional part of the movie. It has everything; you laugh, you cry, you get angry, excited, sad, happy... Never has a movie touched me the way this movie do. And the actors are amazing - never have I heard anyone speak so many languages without it sounding strange. A big praise to the editor for creating this masterpiece...<br /><br />A last comment on this brilliant movie, is that it stars Gackt (ex-vocalist of Malice Mizer) and Hyde (vocalist of L'Arc~en~ciel) in excellent roles as Sho and Kei. I am amazed at how Gackt can change his way of speaking and acting depending on what age he is acting out.<br /><br />This is a must see. If you never see any films, see Moon Child, the Crow (Brandon Lee) and the newly released masterpiece Final Fantasy VII - Advent Children. All in their original languages, of course!",1 +15579,"<br /><br />A friend of mine enjoys watching the worst films he can possibly find, and I have a good laugh watching them with him.<br /><br />I have told him if he puts this one on again I will be forced to give him a good kicking.<br /><br />He knows I am serious!<br /><br />",0 +24301,"This is a typical late Universal Horror flick: its technically comptent, if by the numbers, with a cookie cutter plot and some serious overacting. The most interesting part of this film is its stunt casting of Rondo Hatton, a man with a bone disease as the film's ""monster"". Its sad to see this man exploited, but he probably made good use of the money they paid him. Hatton is less horrifying than the studio hoped, as I more often felt pity over fear or even loathing. Martin Koslack is on board as the film's mad artist, and he is very amusing in this part. I for one enjoy seeing Koslack in just about anything; for some reason the man amuses me. The only other part of the film that entertained me is the film's absurd take on the art world. Here we are shown evil art critics who revel in their ability to break artists; this is side by side with the film's male ""hero"" who is an ""artist"" who paints...get this...pin up girls. Somehow our hero's work is reviewed side by side with the villan's absurdist sculpture. Also amusing is the film's chief nasty critic, who at one point claims that he despises the hero's pin up art because ""women like that don't exist"" to which our heroine replies with an assurance that the critic just doesn't get out enough. Finally, there's a bit of a subplot about the heroine's (who is an art critic herself) domestication by the leading man....completely anti-feminist and ridiculous to witness. Overall this film is a rather mediocre picture with a few amusing elements.",0 +10963,"Pop quiz: you're a part of the modern armed forces in peacetime on routine manoeuvres and you find yourself thrown back in time with a chance to change history. What do you do? Well, if you're a Hollywood studio, you change the Japanese G.I.s in G.I. Samurai (aka Timeslip) to the crew of an American aircraft carrier, have them debate stopping the attack on Pearl Harbour for 90 minutes and then go home and hope that no-one reminds you that Japan did it first and with more balls in 1979 with this Sonny Chiba movie. But unlike its Hollywood counterpart The Final Countdown, this sees its premise through: thrown back 400 years into the Japanese feudal wars, its peacetime soldiers decide that their best hope of getting back lies in provoking history by trying to change it by joining with a warlord to conquer the country cue lots of tank and helicopter vs. samurai action, including a very impressive unrelenting 25 minute battle sequence featuring a cast of thousands inflicting serious damage on each other. And yes, there are decapitations.<br /><br />Of course, things don't go as planned, and even superior firepower doesn't stand up as well as hoped to thousands of soldiers. Even before that, the soldiers are falling out with each other into those who want to go home, those who want to go to war and those who want to rape and pillage for the Hell of it. Impressively directed and surprisingly well thought through, the soft rock and country and western songs are sometimes a distraction, especially when they feature English lyrics sung by Japanese singers who audibly can't pronounce the words let alone speak the language, but it's a forgivable flaw in a surprisingly good sci-fi actioner.<br /><br />Optimum's UK DVD is a good transfer of the uncut 138-minute version.",1 +23857,"Really, it's nothing much. I only recommend watching it if; 1.) You're a big fan of any of the main stars. 2.) If you really want to check out the first time Lucille Ball was seen with red hair.<br /><br />4 out of 10 stars",0 +8394,"Welcome to Collinwood is one of the most delightful films I have ever seen. A superb ensemble cast, tight editing and wonderful direction. A caper movie that doesn't get bogged down in the standard tricks.<br /><br />Not much can be said about this film without spoiling it. The tag line says it all - 5 guys. 1 Safe. No Brains.<br /><br />William H Macy and Sam Rockwell lead an amazing cast. George Clooney should be congratulated for producing this gem.<br /><br />",1 +4438,"I've seen a great many films, but 'In Cold Blood' stands alone in a class by itself. It excels in every department. The fact that it contained few big stars helps push it over the top as you pay closer attention to the characters and their story, rather than the name on the marquee. Blake and Wilson turn in stellar performances of the killer duo. The fact that much of the films is filmed in the actual locations where the crime took place, even inside the very house, add additional chills. The black/white photography darkens the mood and the photography is magnificent. There are many outstanding cinematic works out there, but if I could only vote for one to top the list, it would most probably be ""In Cold Blood"".",1 +3662,"While the soundtrack is a bit dated, this story is more relevant in the U.S. now more than ever. With not only blue collar jobs but everyone's jobs being outsourced by U.S. corporations while the government profits and American suffer.<br /><br />Peter Strauss is Emory, a steel worker who works the same job his father did for 35 years. His wife is well-portrayed by Pamela Reed, who is very realistic, trying to support the family with two children when Emory loses his job. The mill is closed under the pretext of mismanagement, but there is also embezzlement and cheaper wages where they can pay one steelworker in one month (outsourcing) what they would have to pay Strauss/Emory in a day. Never mind that these men are all good loyal workers who have values and try the best for their family.<br /><br />John Goodman, Gary Cole (as Strauss' brother) and a few other co-workers are also affected. It is very disturbing and realistic. Some scenes between Emory and his father are moving. Emory hopes his local union will be able to re-open the mill, as they promise to do so.<br /><br />Emory's brother, Lee already sees the writing on the wall. There are no jobs left in the rust-belt (Ohio) and they must move on. However where in the U.S. can they move to?. Where will it be better for a blue-collar steel worker?.<br /><br />There is a triumphant scene at the end where Emory and his crew fill the loading dock with steel products. The guard allows them to do this as a final gesture, one of the men committed suicide and he has empathy.<br /><br />Overall, a good message film about hard times right here in America. Something that few care to face until personally affected. 8/10.",1 +7427,"I saw this picture in 1940 for $.11 and I would like to secure a DVD in 2006 The film was the greatest adventure of the time and,like all epics,is still an entertainment marvel (B&W and all)You get a sense of real bonded friendship in the chemistry between the actors and the performances of Sam Jaffe & Eduardo Cianelli are outstanding (This could not be done today I particularly liked the ending where the colonel recites the end of Kipling's poem over the body of Gunga Din and tells the ""Untouchable"" ""You're a better man than I am Gunga Din""They don't make movies of this character today.The only cast member that is still alive today is Joan Fontaine",1 +6178,"If you really want to know how most of the actors and directors in the Hollywood scene ""made it"" to where they are, the vast majority will tell you (assuming they will tell) that a strange coincidence took place. They happened to meet the right people at the right time and get into the right project which led to other connections and other projects. Quinten Tarrantino took an acting class whose instructor knew Harvey Keitel. Kevin Spacey lifted a back stage pass from a sleeping old woman at the lecture of a famous playwright who helped him land an important role. And Robin Williams credits his career to Gary Marshall's son who, after having seen ""Star Wars"", suggested to his father that an alien should visit the Cunninghams of ""Happy Days"". These coincidences, many times viewed as pure luck, shapes many of the careers in Hollywood today. Or is it pure luck? Is possible something else is going on? ""Grand Canyon"" written and directed by Lawrence Kasdan, proposes an altogether different explanation for the inexplicable, aka the strange miraculous coincidence. The movie concerns several different characters whose lives intersect because of positive and yet inexplicable happenstance.<br /><br />Kevin Kline, a middle-aged father, experiences a break-down in one of the more dangerous areas of LA. After he phones a tow truck, a young gang accosts him. They threaten violence if he doesn't leave his car. Just before the confrontation can escalate, Danny Glover appears as the tow truck driver and dampens the intentions of the gang. Although Glover denies it later, he probably saved Kline's life. A producer (Steve Martin) of cheap violent films gets shot in the leg and after wards has a spiritual experience. He then announces retirement from producing blood and gore entertainment. And Kline's wife, Clair (Mary McDonnell), while on a morning jog, finds a baby hidden in some foliage. She claims the baby cried for her and that her ""rescue"" of the infant was preordained.<br /><br />The movie explores further the results of these strange connections that lead to further relationships, end to relationships, and new beginnings. And all the while, a strange homeless man appears throughout the movie as if somehow he is also connected to everything that is going on.<br /><br />It is very rare in Hollywood, or for film in general, to explore such a purely esoteric subject. There are a few moments that seem somewhat unbelievable, but maybe that's the point. What makes the film work is the superb acting by the cast. Although the miracles and coincidences may seem far-fetched, the actors make you believe they are experiencing these new realities. Maybe this is a subject we should explore more often.",1 +9124,"A big surprise, probably because I was expecting it to suck. The reviews were pretty dismissive of it, even though they all seemed to agree that the concept was golden: a man finds out his new girlfriend is a super hero, and finds, when he wants to break up with her, that she's kind of a psycho. I kept expecting it to fall apart, but it never really did. Sure, it doesn't make as much of its awesome premise as it could, and chooses to be short when it might have been better to expand the film's universe. But I can't blame it for that. Uma Thurman is great as the bipolar superhero, G-Girl. And I've discovered, after several years of disliking him, that Luke Wilson can be absolutely perfect when cast as a schlub. He's given two of the best comic performances of 2006 (the other in the pretty much unreleased Idiocracy). I absolutely cracked up at the expressions on his face when he and Thurman first have sex. It's one of the funniest sex scenes ever. My only real complaint is that they make G-Girl a bit too much of a psycho, like almost unbelievably so. Maybe with some background I could have accepted it better. I can forgive its flaws, though, because I had a really good time watching it. Underrated, for sure.",1 +24063,"Oh my GOD. I bought this movie and...I...watched...the...whole...thing. . . Okay, it's going to be alright... I'l know I'll be okay in a month or two. Some time soon I hope to be rid of the flash backs. I was going to eat something after the movie but I just can't seem to get up the courage to try and hold any food down at the moment. Bad? Yes bad. Very BAD. BAD BAD BAD BAD BAD. Wait, bad doesn't seem to get the message across in quite the right way. Hmm... There isn't a word to describe just how awful.... not awful... Hmm disgustingly horribly casted/acted/filmed/directed/written. Now I don't know what to do but throw it out. Possibly burn it I wouldn't want it to end up at the bottom of an architectural dig a thousand years from now. The worst movie ever since ""Hey Happy""",0 +12460,"I saw this movie when Mystery Science Theater ran it in 1993. It is the worst thing I've ever seen. So bad in fact, that by sheer freakiness, this movie must get a ten rating because it has to be seen to be believed. <br /><br />Whoever wrote this script with children in mind should be beaten. I mean, really, the Devil vs. Santa? Visions of Hell? Creepy laughing wind-up reindeer? Forced Child labor with racial stereotypes? It ain't Sesame Street, that's for sure.As Crow exclaims during the MST3K showing, ""This is good ol' fashioned nightmare fuel!"" <br /><br />There's plenty of weird innuendo and screwed up theology. Merlin (presumably the Arthurian Merlin) hangs out with Santa in his crazy castle in the clouds (i.e. Heaven). Santa talks about baby Jesus and sends letters to ""Mr. Stork"" for children who ask for siblings. There are symbols around the castle that either look like pentagrams or RAF stars. <br /><br />My best friend and I have watch it every year since 1993 and we subject anybody we can hold down for 2 hours to watch it with us.",1 +10705,"So one person says, ""This movie is a beautiful, delicate exploration of West German life after World War II."" And the other says, ""Former Nazis living in bombed out buildings, and the movie is 'beautiful, delicate'?"" And the first sits there nodding, takes another sip of coffee. ""I can't explain. Just see it.""",1 +13707,"Second-tier American leading man Guy Madison plays a character whose notoriety precedes him in this Spaghetti Western which, having very modest credentials emerges as essentially routine (though featuring a nice enough score). The plot offers some mild interest: the title, incidentally, refers to a wounded man involved in the murderous assault by gun-runners on a ranch the property of the family of their pursuer, cavalry agent Madison. The latter's younger siblings are determined that the injured party, now in their charge, lead them to the gang boss responsible; ultimately, the identity of either mystery man proves a surprise and both, ironically, become involved with one of Madison's sisters (another is raped during the raid). Euro-Cult starlet Rosalba Neri appears unremarkably as a saloon hostess, and Madison's ex-flame.",0 +12821,"I don't remember the last time I reacted to a performance as emotionally as I did to Justin Timberlake's in ""Edison."" I got so emotional I wanted to scream in anguish, destroy the screen, readily accept the hopeless cries of nihilism. Timberlake is horribly miscast; in fact, casting him is like casting Andy Dick to play the lead role in ""Patton,"" or Nathan Lane to play Jesus. But that is almost beside the point.<br /><br />Timberlake is simply a bad actor and he would be equally terrible in any role. I used to have problems with Ben Affleck's acting talent, but Timberlake makes Affleck look like Sir Ian McKellen or Dame Judi Dench. With his metrosexual lisp (read lithp), his boyish glances and emotional expressions which derive from something like ""The 25 Cliché Expressions for Actors,"" he poisons the screen upon which he is inflicted mercilessly, and no matter how you slice it, I do not and will not buy his role as an amateur-turned-crusader-for-justice journalist. It simply will not fly.<br /><br />However, Timberlake alone isn't to blame for his failure. Director David J. Burke puts him not only in the (essentially) primary role, but also places him aside Morgan Freeman, Kevin Spacey, John Heard, Dylan McDermott, Cary Elwes and (I'm surprised he was as good) LL Cool J. I can imagine one almost physically suffering watching some of this cast interact with Timberlake.<br /><br />There is an upside to this of course: the moment any of these actors interact without Justin there it feels like a double relief. A pleasure, if you will. Freeman and Spacey may not have more than 10 minutes of screen time alone together, but that ten minutes is blissful in contrast to their scenes with our so-called hero. Dylan McDermott is also a breath of fresh air.<br /><br />But enough of Timberlake bashing - words aren't enough in this particular case to do the trick. ""Edison"" is a very, very run-of-the-mill corruption story. It's plot ranges from cliché to simply preposterous. I do, however, admire the motivation behind making it, which I interpret as an homage to films like ""Serpico,"" or ""Donnie Brasco,"" or maybe even ""Chinatown."" Don't get me wrong - ""Edison"" is not even in the same ballpark as these films, but I can stretch my suspension of disbelief to admire its reason for existence, perhaps to justify my sitting through it.<br /><br />The script, in and of itself, features some surprisingly bad writing. Yes, it has some decent interchanges, but any conversation between Piper Perabo (who is wasted here) and Timberlake seems like it was lifted straight out of a Dawson's Creek episode. It's your typical far-too-glib-for-reality, let's-impress-the-audience-with-how-well-we-articulate (and fail) dialogue. This dialogue, mind you, is punctuated by great music at the wrong moments - sometimes it feels like ""Edison"" wants to morph into a music video, where the emotion of the scene is not communicated through acting, but precisely through the badly chosen music and variant film speeds (read slow-motion).<br /><br />Thinking about it, ""Edison"" is a curiosity. It's sure as hell got a cast to kill for but the performances are marred by Timberlake who simply doesn't work. In film as in most art, if one thing is off, the whole thing feels off. Directors must make tough choices. David J. Burke missed the mark here. Some of the scenes play well in and of themselves, but as a whole, they don't seem to fit like puzzle pieces from different puzzles forced into one incoherent picture. And it's not particularly an exciting puzzle to begin with.",0 +23941,"Originally aired as an ABC Movie of the Week. This involves two young innocent female college students who are railroaded into a prison camp in a little Southern town. They aren't allowed phone calls and nobody knows they're there. What follows is rape, torture, beatings, humiliation and degradation leading to a very disturbing conclusion.<br /><br />The TV version was (for its time) grim. No nudity and the beatings were pretty tame but the overall feeling of sleaziness wore one down. The unrated version is even worse--there's plentiful nudity, the violence is extreme and, in one particularly disgusting sequence, we see a crying female prisoner forced to strip while a lesbian guard ""uses"" her. YUCK! There's nothing wrong with exploitation films but this one just goes over the brink. You get the feeling that the filmmakers enjoy having these poor women being tortured and degraded--all this is shoved in your face like you're supposed to enjoy it. The needlessly downbeat ending doesn't help.<br /><br />I'm giving it a 3 because the acting is good--but that actually makes the movie harder to watch. A sick, sleazy film. Not recommended.",0 +21611,"Don't you just hate it when you order steak but the restaurant gives you chicken?<br /><br />Such is how I felt watching this so-called ""Battlestar Galactica"". Arguments can be made over its quality but the fact remains, it's NOT what the fans ordered.<br /><br />Imagine if you were sitting down at that proverbial restaurant I mentioned. You have waited years for them to bring back their famous New York Strip steak which you loved. When your meal arrives, you find they've applied the name ""New York Strip"" to a chicken dish. You complain but the waiter merely states ""but ze cheeken, ees really GOOD zir""! Do you really care if the chicken is good? You wanted New York Strip - a STEAK! The waiter then explains, ""you zee zir, ze chef wanted to to do, as you zay, zomezing NEW. We felt ze cheeken would be more popular zo we gave it the name of our previous delicious deesh"". You ask if you will ever find the original New York Strip on the menu in the future but are informed that because the restaurant HAS a dish called ""New York Strip"" now on the menu, you'll never see the original New York Strip - ever again.<br /><br />Such is the case with creating something NEW and slapping the ""Battlestar Galactica"" namesake on it.<br /><br />* This mini series is an affront to all fans of the original show! *<br /><br />It's a shame the production team put in charge of this new version obviously held contempt for the original. The team put in charge of resurrecting BG should have LOVED the original series - seeking to improve what the fans loved, not try to shamelessly sell this new series by exploiting the Battlestar Galactica name.<br /><br />If SciFi Channel wanted to give us a NEW show, then DO so! Give it a new name! Don't use the name we fondly remember in an attempt to lure in viewers. That effectively robs us of the chance to see any semblance of the original in the future.<br /><br />We have been waiting for 25 years to see what we knew as BG because we LIKED something about the original! We didn't simply want the NAME and remnants of the basic concept. There are things we LOVED about the original series!<br /><br />Sadly, probably the BEST elements of the original were those which were omitted. Sure, the original BG was imperfect and could have used some updating. This mini series, however, was not an improvement in any regards but the special effects (which were good but not anything unusual by today's standards).<br /><br />Many viewers will debate back and forth about the quality of this NEW show but we will not forgive SciFi and Ron Moore for destroying our dream.<br /><br />That being said... I shall offer some comments about the merits of this new mini by itself (not in comparison to the original):<br /><br />The battle sequences were the best part. Effort was obviously put into making the effects more ""real"" in appearance and less ""wow - look at that effect"". I would not say these sequences were exceptional by today's standards yet they were in keeping with made-for-cable original movies. What was the deal with this ""pseudo-live-cam""? Some views tried to fake the effect of a ""real"" camera with lagging tracking and jerky zooms. However, it was over-used considering there was no apparent SOURCE of these cameras. The infinitely more intelligent series, Babylon 5, is the only instance I've seen such ""live cams"" used effectively, when we were supposedly witnessing action from Security Cams.<br /><br />The script, you ask? The script felt like it was written by a teenager, FOR other teenagers. The characters felt cardboard and stereotypical. Indeed, the whole story felt pieced together from other well-known stereotypes. The only good features of the entire story were those few elements which were preserved from the original series. It was obviously ""dumbed down"" for digestion of your average TV audience.<br /><br />The human interaction was pitiful. Rather than drama based on subtle looks, expressions and fine timing, every moment of human tension was exaggerated to the point of being so obvious they lost all ability to move any refined viewer. Such was obvious in any interaction between Adama and son. The director must have been trying to make sure the most dense and unfeeling viewer wouldn't miss it even if not paying attention. Sorry, but real humans don't behave like the continually.<br /><br />I wouldn't have considered this a BAD show had it stood on its own. Nothing great; it will never be revered by true SciFi fans or artisans, but it would be watchable by the masses. I personally could have lived without it, though. I only watched it to see how it really DID capture the spirit of the original. <br /><br />How this mini series will always be remembered is as a symbol of how quality in storytelling has been cast aside to appeal to greater numbers. How even SciFi Channel has ""dumbed down"" its productions to cater to the masses as opposed to its true niche market, the Science Fiction fans. It will be the time we asked for steak and they insisted on giving us chicken, despite our complaints.<br /><br />I leave you with only one thought - <br /><br />NO ""MOORE"".<br /><br />",0 +24084,"The House of the Dead was the worst movie I have ever seen, between the pathetic 'matrix' 360 camera angle attemps and the cheesy acting I fell asleep. I don't think that the director and set manager could decide whether it was raining or not, because there would be rain on one side of the boat and not the other. I would rate this movie a 1 out of 10, (10 being the best, 1 being the worst). Also jumping scenes from the movie to the game was really annoying, it makes you wonder if they were just making up for lose time. I beg anyone who reads this, NOT TO SEE IT. It's not worth the time.",0 +21986,"This is a film of immense appeal to a relatively well-defined group (of which I am not a part). I went to a preview of this movie not knowing what to expect - I ultimately found it disappointing. The history of a dreadfully dysfunctional (oftentimes downright ""twisted"") Hungarian Jewish family is not my cup of tea. An epic saga like this should really provide its viewers with something more in the end. Ultimately, pictures such as this are about the human condition - this picture cast almost no new light on any of its more meaningful facets.",0 +24346,"This film was screen as part of the 2007 Sydney Mardi Gras Film Festival. I had no expectation of the film as someone else choose it for me.<br /><br />I actually like films that take time to develop, films that allow the characters to unfold and lets the story flow. Stillness is good. But this film though was just plain slow.<br /><br />Credit must go to the two main actors. There was a sense of tension between them as two totally different people, misfits really, come together in a very awkward way. There were tender moments and sadness as we learned more about them.<br /><br />I also liked the setting and the way it was shot. It was claustrophobic and monochrome and it added to the film's intimacy and reinforces the oddness of the characters.<br /><br />I just don't understand the ending. What was the point of it all?",0 +7949,"This is a really well made movie. Sumitra Bhave has always made sensible cinema and this is my favourite film by her. This movie should have won the National Award and would have been my pick to represent India at the Oscars. It is at least a thousand times better than 'Shaaws', which is going to the Oscars, from India, this year.<br /><br />It is such a pity that the information about this (and all other Indian movies) on IMDb is lacking and sometimes even wrong. Sadashiv Amrapurkar played a very important character in this movie and he is not even credited on these pages. The rest of the cast and crew too are not mentioned at all. Awards and nominations for this movie are not given even when Sonali Kulkarni won the Indian National Award for this movie. There was not even a single vote cast for 'Doghi'.<br /><br />'Doghi' is not a Hindi movie. It is Marathi, and thankfully escapes the song and dance sequence, does not get tangled up in glitzy glamour and half-witted designer ware. It is a real life, soulful story that is made with a rare understanding and respect.<br /><br />'Doghi' which can roughly be translated as 'two women' is a story of two sisters, Gauri and Krishna. It is actually a very simple story, Sumitra Bhave does not venture into many sub plots, and that makes it a very difficult film to direct. The entire movie is set in a non-descript remote village in Maharashtra and the screen rarely ventures far from the house of the two female protagonists. No aesthetic sunsets in this one.<br /><br />The movie opens and we are introduced to the entire house, which is preparing for Gauri's wedding. Gauri and Krishna's father being a hard working farmer, the house is full and happy; there is nothing wanting in their simple lives. However on the eve of the wedding Gauri's to-be-husband meets with a fatal accident. Gauri's father cannot bear the tragic news and suffers a major stroke. Without a strong, working member the house could have fallen apart but Gauri's mother shoulders the responsibility. She works as and when she can, but cannot make ends meet. But her life still, is easier than Gauri's. Superstitions, that people half-heartedly try to forget, make Gauri an evil luck bringer. She is outcast from the society.<br /><br />Gauri's mother writes to her brother. Desperate for help she accepts his suggestion. He takes Gauri off to Mumbai where she is made to work in brothels. Gauri sends home the money she earns and their conditions improve. Gauri gives her life for that of her family's.<br /><br />However when Gauri returns home for Krishna's wedding, her mother does not come out to meet her. She does not allow Krishna near her and does not allow Gauri in front of the guests. She loves Gauri but fears for Krishna's life. This breaks Gauri completely and she decides to return to her unfortunate life. But Krishna runs out and holds Gauri. She begs her beloved sister to return. Krishna promises to stand by her. Promises that they would face the world together.<br /><br />There is nothing that is not required in this movie. Everything is necessary and sufficient. Gauri goes off to Mumbai but what she does there is never told the subtle dialogues tell us what there is to know. It just the bare story, which is profound in its simplicity.<br /><br />'Doghi' is responsible cinema. It is respectful to the subject it handles. It is respectful towards its audience it does not think them to have the mental capability of a four year old.<br /><br />The acting is first rate. The direction is marvelous the silences carry the story forward in a way, no words could have. The script is well researched.<br /><br />Anyone who appreciates good cinema is bound to like 'Doghi'.",1 +10645,"this movie is a very relaxed, romantic-comedy, which is thoroughly enjoyable. Meg Ryan does a very good job as the genius niece of Albert Einstein, though she does believe in her own skills. Tim Robbins does an equally good job as the mechanic who falls in love with her when she comes into his shop with her fiancé after her car stuffs up. I loved Walter Matthau as the one and only Albert Einstein. This movie just has a very relaxing feel to it, while still keeping some sort of seriousness to it (if that is actually possible, it happens here).<br /><br />I personally found this movie extremely entertaining, especially the old scientists - i thought they were fab and hilarious! This movie seems to have been underestimated beyond comprehension. If you have a cheeky sense of humour, this is the movie for you!",1 +21001,"Can I Do it 'till I Need Glasses? at the very least proves the point that anyone can make a movie. Talent is not a consideration. The folks who unleashed this wretched pile of spewing vomit upon the world, lack any semblance of talent, taste or intelligence. The target audience must consist of the recently labotimized, and infants who play with their own feces. Anyone else would be far too world wise to get even a snicker out of this film. It consists of a series of sophmoric skits in which the punchline does not even extend to the obvious. It ends at the ludicrous. The jokes told are the types of jokes that elementary school children tell (usually potty or sexually related) where they don't know the meaning of all of the terms they use. You know, like the one about daddy's car and mommy's garage. To apply any sterner method of criticism would be pointless, since the usual standards of acting, writing, direction and such have never even been heard of by the creative ""minds."" behind this mess. Not to be judgemental, but anyone who enjoyed this film should seriously reflect upon their purpose on this earth.<br /><br />",0 +19872,"while being one of the ""stars"" of this film doesn't necessarily give me sage insight, i do know quite a bit of what was first there...and what ended up on the screen. i remember seeing the original cut of ""incoming freshman"" and being very pleased. it was funny, sexy, raunchy, all the main requirements of a drive-in film. you have to remember this was shot and released before all the rest...animal house, porky's, etc...so in its own way, this flick was truly ahead of its time. for whatever reasons, the film was given to the main distributors who editing out half the original film, and then edited in (should i say ""shuffled?"") THE most random scenes ever. the fat guy, the people with goat heads....what the heck was all that?! i'm sure it was put in for additional T&A, but it was so slowly paced, it caused anything going on prior to it to grind to a screeching and painful halt. but all in all, it's a fun memory for me...especially in that i'm able to say that the worst movie i've ever seen...i'm in!",0 +18608,"This movie had mediocrity, laziness, and thoughtlessness written all over it. If you are going to do a movie about vampires that has been done thousands of times already, then you better do a damn good job. I'll be the first to say that this movie just did not cut it. Some scary/horror movies just fail to break the mold of the ""lets do something forbidden and forsaken for the sake of fun because all the stories are just lies"" cliché. This one, sadly, was no different, and like all scary movies, once you venture down that road there is no going back.<br /><br />And the ending? How do the heroes do the same job over and over throughout the movie, but then mysteriously they get wrapped up in the moment and cannot do the job in the end? The ending was very anti-climatic and spelled part 3 which I will never watch. Terrible movie.",0 +8957,"This two-part TV mini-series isn't as good as the original from 1966 but it's solid. The original benefited from a huge number of things---it was all in black and white, it had a great jazz score and it was filmed at the real locations, including the home of the doomed Clutter family. That was important because in the book and in the original movie the home is very much a character itself.<br /><br />This remake was filmed in Canada which I guess doubles okay for Kansas. The story tries to be as sympathetic to Perry as it dares to and Eric Roberts plays him as a somewhat fey person, his homosexuality barely hidden. The gentler take by Roberts doesn't quite work in the end though because it's hard to believe that his version of Perry Smith would just finally explode in a spasm of murder. Whereas Robert Blake's take on Smith left you no doubt that his Perry Smith was an extremely dangerous character.<br /><br />Anthony Edwards was excellent as the bombastic, big-mouthed and ultimately cowardly Dick Hickcock, the brains of the outfit. His performance compares very well to Scott Wilson's role in the original movie.<br /><br />Since this is a longer movie it allows more time to develop the Clutter family and in this regard I think the 1996 movie has an advantage. The Clutters are just an outstanding, decent family. They've never harmed another soul and it is just inexplicable that such a decent family is ultimately massacred in such a horrifying way. It still boggles my mind that, after the Clutters were locked in the bathroom, that Herb Clutter didn't force out the window so at least his children would have a chance to escape. This movie has the thought occur to him, but too late. From what I read about the real home, which is still standing, the way the bathroom is configured they could've opened the counter drawers and effectively barricaded the door which would've forced the killers to blast their way in. But it might've bought time for some of the Clutters to escape. Why the Clutters didn't try this, I have no idea.<br /><br />Fans of the book will recognize that this movie takes a lot of liberties with how the crime is committed but not too serious. Still, it's distracting to viewers like me who have read tons about the case. The actors playing the cops, led by Sam Neill and Leo Rossi, are uniformly excellent, much better, I think, as a group, than the actors in the original movie. They know that to secure the noose around the necks of both of them they have to get them to confess. And the officers come to the interview impeccably prepared. They had already discovered the likely alibi the phony story of going to Fort Scott, and had debunked every jot of it. The officers then let Smith & Hickcock just walk into their trap. Hickcock is a b.s. artist who figures he can convince anyone of anything and the officers respectfully let him tell his cover story. But when they lower the boom on him, he shatters very quickly. It's very well filmed and acted and very gratifying to watch because the viewer naturally should loath Hickcock in particular by this point, a cowardly con-man who needs the easily manipulated Smith to do his killing for him. Supposedly Hickcock later stated that the real reason for the crime wasn't to steal money from the Clutters but to rape Nancy Clutter. At least she was spared that degradation.<br /><br />The actors playing the Clutters are very good, Kevin Tighe as Herb Clutter in particular. The story sensitively deals with Mrs. Clutter's emotional problems, most likely clinical depression, and Mrs. Clutter displays remarkable inner strength when she firmly and strongly demands that the killers leave her daughter alone. From what I've read the Clutters' surviving family was particularly bothered by how Bonnie Clutter was portrayed in the book, claiming it was entirely untrue. But as an aside, both of the killers related to the police how Mr. Clutter asked them to not bother his wife because of her long illness. Capote might make up that fiction to make the character of Bonnie more interesting but certainly the killers had no reason to falsely portray Mrs. Clutter and no doubt much of the conversation in the book (duplicated in the movies) is right off the taped confessions of the killers. So it would've been nonsensical for Herb to have said that and not have it be true.",1 +11385,"This films makes no pretentious efforts to hide its true genre -- a campy B movie. It will flat out tell you in the beginning the definition of campy. It should have also given the adjective meaning of cheese. But the two come together in this film in ways that make you go, ""Hmmmmm... that's so stupid!"" and then have you laughing. For example, there is a scene back in ""16th Century Japan"", which shows a couple of samurai walking in the foreground of a temple. In the background of the temple, there are several tourists looking off in the distance in slippers and shorts. Hmmmm... hahahah! I could not stop laughing. And the acting goes from decent, to bearable, to oh my Lord, but that's what makes it funny. You'll see some decent actors and then find others really terrible. I have to digress somewhat though because I have seen Stephanie Sanchez in several plays and she is awesome. Her air time in the film was pretty short though. I have also seen Bryan Yamasaki in several plays in the islands during my visits and he's also better in theatre than in this movie. Anyhow, it's an entertaining film, if you've got nothing to do on a weekday evening.",1 +15437,"""The Brain Machine"" will at least put your own brain into overdrive trying to figure out what it's all about. Four subjects of varying backgrounds and intelligence level have been selected for an experiment described by one of the researchers as a scientific study of man and environment. Since the only common denominator among them is the fact that they each have no known family should have been a tip off - none of them will be missed.<br /><br />The whole affair is supervised by a mysterious creep known only as The General, but it seems he's taking his direction from a Senator who wishes to remain anonymous. Good call there on the Senator's part. There's also a shadowy guard that the camera constantly zooms in on, who later claims he doesn't take his direction from the General or 'The Project'. Too bad he wasn't more effective, he was overpowered rather easily before the whole thing went kablooey.<br /><br />If nothing else, the film is a veritable treasure trove of 1970's technology featuring repeated shots of dial phones, room size computers and a teletype machine that won't quit. Perhaps that was the basis of the film's alternate title - ""Time Warp""; nothing else would make any sense. As for myself, I'd like to consider a title suggested by the murdered Dr. Krisner's experiment titled 'Group Stress Project'. It applies to the film's actors and viewers alike.<br /><br />Keep an eye out just above The General's head at poolside when he asks an agent for his weapon, a boom mic is visible above his head for a number of seconds.<br /><br />You may want to catch this flick if you're a die hard Gerald McRaney fan, could he have ever been that young? James Best also appears in a somewhat uncharacteristic role as a cryptic reverend, but don't call him Father. For something a little more up his alley, try to get your hands on 1959's ""The Killer Shrews"". That one at least doesn't pretend to take itself so seriously.",0 +16815,"Not to be confused with the above average supernatural thriller ""The Sentinel"". The Sentinel was a big bore of a movie for me, not delivering the consistent action, a couple of critics promised on the back. To me it seemed like everyone was Halfassing it, and only there to make some quick cash, because this felt very much like a made for TV film. The Sentinel is a rehash of several better films, like ""In The Line Of Fire"" this does not have any originality in it, and watching Michael Douglas run around, felt kinda silly in my opinion. The Main problem besides it's unoriginality, had to be the poor pace. I often got distracted while trying to view this movie, while looking how much run time was left, more then once. Not only the miscasting with Eva Longoria, who couldn't convince worth a lick.<br /><br />Performances. Michael Douglas is usually a dependable actor, here is obviously going through the motions. He does not convince as a man on a run, or a secret agent. His chemistry with Bassinger, was also off. I'm a big fan of Kiefer Sutherland, but here he is only OK, nothing more then that. He tries to come across as a gruff, but managed to be more bland then anything else, and to be honest, he didn't seem that interested. Eva Longoria Parker is pretty mediocre. She does not convince in her role, and was pure eye candy. Kim Basinger is pretty terrible as the 1st lady. She looks bored to tears, and her role is a throw away, more then anything else. Martin Donovan has a big part in the end, but not enough to matter for me.<br /><br />Bottom line. The Sentinel is yet, another political thriller, that bored me to tears. It's too old, too tired, and most importantly the lack of effort sucked. Not recommended.<br /><br />4/10",0 +11305,"I don't think anyone besides Terrence Malick and maybe Tran Anh Hung makes cinema on a purer level than Claire Denis. That said, I don't love this, her newest film, quite as much as her 2001 masterpiece ""Trouble Every Day"" (although it comes very close), which itself is one of my absolute favorite films. It it only because the narrative here is possibly slightly too elliptical for it's own good. Don't get me wrong, the fact that this film barely has a plot at all is really one of the best things about it, but I think Denis took it about one degree farther than it needed to go and consequently the film does flirt with incomprehensibility, and a few key plot points should have been clarified somehow (like that the main character goes to South Korea to get his heart transplant, instead of just showing him there all of a sudden without any explanation of where he is or why he is there). Also some of the other characters seemed unnecessary and as if they were just excuses for Denis to use actors she likes yet again (Beatrice Dalle's character in particular is a little distracting because you keep expecting that she is going to have some significance). Still, the film is incredibly absorbing and the cinematography is beyond amazing. It is definitely very much a masterpiece in it's own way. At least as good as Denis' more highly-acclaimed ""Beau travail"", if not better. Claire Denis has to be my favorite French director at this point, better than Leos Carax even. Also I have to admit that the South Korean sequence really does do ""Lost in Translation"" better than that film itself does (and I, unlike some, am a huge fan of that film as well).",1 +6133,"Ko to tamo peva is the best comedy of all times. Believe me i saw a lot of movies and comedies but tell me which one make you smile every time you watching it. But truth is that the humour in this comedy is special.It is caratherisic for serbia. And all former republic of yugoslavia know it very well!!! So i think the rest of audience (for example: In Europe)can't enjoy it so much. Because the subtitles ruin the hole thing. But they should at least try!!!! Yes it is ironic! This is the best flick in Serbian history and the world doesn't understand it! :-) If you have got a chance to see this one, don't blew up OK!",1 +10004,"""Written on the Wind"" is an irresistible, wonderfully kinky film, as only director Sirk could have done it. The movie is submerged in a bucket full of Freudian symbols, weird melodramatics and colorful contrasts. The connection between financial success and moral decay is the film's main theme. Sirk seems to suggest that sexual dysfunction is one of the side effects of capitalism. However, I prefer to see the movie as a prime example of what Sirk could do with kitschy material. The palette of colors is particularly impressive. The acting in the film is great too. Rock Hudson and Lauren Bacall are terribly glamorous and give the film an aura of elegance, but the movie belongs to Robert Stack and Dorothy Malone (she deservedly won the Best Supporting Actress Oscar), who manage to keep the film at a boiling point. Kudos to Frank Skinner's pulsating score, Russell Metty's brilliant camera work (every single shot is a masterpiece in itself), and the production design department. Also, the title tune is a beauty. It's an unforgettable movie.",1 +12375,"I liked this movie. When the guy who was in on a bank heist of $40 million in gold dies, his cell mate is used as ""Bait"" to lead them to the high-tech crazy killer partner (by having a monitoring device implanted in his jaw without his knowledge). It's an action, spy type film with enough comical scenes to keep it light. It reminded me of Enemy Of The State. Well acted and good enough plot.",1 +20104,"Wow...OK. So, after reading the little feud on here, I decided I had to see this movie for myself. This movie is HORRIBLE. I stopped watching it. I strongly recommend cleaning a closet instead of watching this movie, you'll be more spooked/entertained.<br /><br />It's low budget with bad acting.<br /><br />Whoever is giving this movie 10s is completely incorrect and should be disregarded.<br /><br />I am in no way connected to any of the other reviewers.<br /><br />Simply put, this movie is not worth watching.<br /><br />Very, very BAD MOVIE.",0 +7442,"Did you know, that Anthony Kiedis, (singer from the Red Hot Chili Peppers) father is in this movie. Blackie Dammit, is Anthony's father. I noticed this after reading ""Scar Tissue"" Anthony's autobiography, and saw a picture of his father. I thought, ""well, that guy kinda looks like that guy from that movie I saw in the eighties. Then I read more and it said his father was an actor that had a few small roles. After checking this site, and comparing with a search on the net, I realized it really is his father in the movie. It's funny, because nowhere in the book does it mention him being in this movie. Perhaps his son was ashamed of his father's acting job in this flick, but he need not be. I think his father, Blackie, did a great job in the show.",1 +2171,"Allow yourself to be transported to a different, old school kind of storytelling. Scoop is classic Woody Allen.<br /><br />Allen's latest muse, Scarlett Johansson (who also appeared in last year's Match Point, also by Allen), is surprisingly able to tone down her sultry sex kitten appeal and transform into a normal looking student-type with the aid of nerdish glasses and outfits but still fails to make the audience believe how Hugh Jackman's lordly character can be so smitten by her, given the royal's background (don't worry, no spoilers here). There are no grand transformations for Johansson's character here, as she consistently plays the same character throughout despite the script saying otherwise. You even forgive her character's apparent lack of logic, continuing an affair with a suspected serial killer, simply because he is His Royal Hotness Jackman, who is refreshing to see sans the Wolverine duds.<br /><br />If anything, consistency is what the 70-year old Allen is all about. He continues to tell his stories on celluloid in the same way he always has; as if he's never been exposed to modern film-making, which is probably what makes his quiet, simple films appealing. They never seem to aim for a specific market; as if Allen makes movies to his taste alone, whether the public likes it or not.",1 +9144,"To all the haters out there: condemning a TV series with one episode is like judging an entire book after reading the first few pages. That being said, I was a huge fan of BSG, thought it was some of the best TV drama (not just sci-fi) on the air. But it was time for it to end and the story to move on. I liked the BSG epilogue ""The Plan"", but it raised as many new questions as it answered, so I eagerly anticipated ""Caprica"" and I was not disappointed.<br /><br />I was hoping it would not try to be another BSG, and I was pleased that ""Caprica"" is something different, and I personally found the story exciting, in a different way than blazing space battles, explosions and sci-fi special effects (don't get me wrong, I like that stuff too). Eric Stolz and Esai Morales give solid performances, and Alessandra was just wonderful. I can't wait until next week.",1 +23238,"This was longer than the Ten Commandments, All Lord of the Rings and the Matrix Trilogy combined. My oh My, what a nightmare. This is the single biggest over-hype of 2006. THere is not a moment that is not scripted and clichéd. Movie Musicals can be done brilliantly and bring genuine excitement to the viewer. Dreamgirls takes the route of Chinese Water Torture, in the form of endless music montages, shoddy acting, and poor directing choices (Seriously, Mr. Condon, did you HAVE to do the old Billboard countdown shots? It's at #58! No wait, look its rising up the charts and here is the passing Billboard notice to show you again....and again....and again)",0 +15933,"This has to be the most brutally unfunny ""comedy"" I've ever seen in my life. Ben Stiller, Jack Black, and Christopher Walken as a crazed homeless man CAN'T make me laugh? Something's got to be wrong with this picture. This is the only movie I've ever felt like walking out of. I used free passes, and still felt like I wanted my money back. I can wholeheartedly say that the only movie I've ever seen worse than this one was HOUSE OF THE DEAD. The. ONLY. worse. movie. I laughed very slightly at the merry-go-round scene, and that's it. Spending 2 hours in something billed as a comedy should get you more than one laugh, right? I don't know, I guess the filmmakers thought that ""flan"" was a funny word, or something. And the other running joke really is beating a dead horse--literally.",0 +20222,"How this film gains a 6.7 rating is beyond belief. It deserves nothing better than a 2.0 and clearly should rank among IMDb's worst 100 films of all time. National Treasure is an affront to the national intelligence and just yet another assault made on American audiences by Hollywood. Critics told of plot holes you could drive a 16 wheeler through.<br /><br />I love the justifications for this movie being good... ""Nicholas Cage is cute."" Come on people, no wonder people around the world think Americans are stupid. This has to be the most stupid, insulting movie I have ever seen. If you wanted to see an actually decent film this season, consider Kinsey, The Woodsman, Million Dollar Baby or Sideways. National Treasure unfortunately got a lot more publicity than those terrific films. I bet most of you reading this haven't even heard of them, since some haven't been widely released yet.<br /><br />Nicholas Cage is a terrific actor - when he is in the right movies. Time after time I've seen Cage waste his terrific talent in awful mind-numbing films like Con Air, The Rock and Face-Off. When his talent is put to good use like in Charlie Kaufman's Adaptation he is an incredible actor.<br /><br />Bottom line - I'd rather feed my hand to a wood chipper than be subjected to this visual atrocity again.",0 +4580,"This is one of Disney's top five animated features, in my opinion. Cinderella was a perfect return to the full-length feature animation film (as opposed to the compilation films of the 40's), and expensive depth via the multi-plane camera returns to the film in no other way. Although Disney adapts the story somewhat liberally, you gather the idea of the era via the dress and set stylizations---a clear time period the story takes place.<br /><br />Cinderella is more mature than Snow White, and a multi-dimensional character. Actually, all of the characters are somewhat well-developed, except for the Prince--left the most flat--we know he has a sense of humor, and a great smile, but that's about all. Like Snow White, Disney has some permanent impact on the story in popular culture---in most versions of Cinderella, the stepsisters are attractive, just not as pretty as Cinderella, and their character takes away from their otherwise nice appearance.<br /><br />Favorite Disney additions: the mice! Also, appreciated the continuity--Cinderella always loses her shoe throughout the film. The addition of the homemade gown as well as the following assault from the stepsisters was always horrific as a child--I remember View Master showing this with a black background and a large red light on it! The broken slipper shows the unwillingness of evil Lady Tremaine to give up her hold over Cinderella and admit defeat---Audley would go on to characterize the most wicked of all Disney villains, satanic witch Maleficent, in Sleeping Beauty.",1 +5343,"I, like many horror fans, have been force fed the same banal big budget Hollywood remakes and MTV high school slasher tripe for the last 20 years. Here, at last, is an original horror genre movie that ticks all the right boxes.<br /><br />You want a hot lead actress, you want vampires, you want cool weapons, you want cool vehicles and you want blood, lots of it, by the bucket load - you got it.<br /><br />With excellent fight choreography and a supporting role from the Hammer Horror scream queen herself Stephanie Beacham, this really is fantastic stuff.<br /><br />Despite it's low budget, by opting to use 35 mm stock and adding quality CG effects to the mix, director James Eaves has created something that feels much bigger.<br /><br />A must for old school horror fans.",1 +15616,"When I decided to watch THE BARBARIANS, starring those twin bodybuilders, Peter and David Paul, I thought it couldn't be that bad because the film was directed by Ruggero Deodato, who has a reputation for creating sleazy movies but well made sleazy movies. Well, THE BARBARIANS is remarkably trashy action/adventure movie that wants to be another CONAN THE BARBARIAN, and fails at every level. The look of the film is all wrong. Some scenes were well shot but the tone and the schintzy, tacky ""disco"" look of the clothes and hair people are adorned with just doesn't make any sense whatsoever, even for a low budget flick like this one.<br /><br />Richard Lynch looks like an old woman with that ridiculous hairdo and costume. He's supposed to be menacing but he comes across as a buffoon. And it's funny to see Eva LaRue Callahan, one of the stars of ALL MY CHILDREN, appear in her first movie, walking around in skimpy fur bikini. I'm sure she wants this dreck to disappear from the face of the earth! The so-called Barbarian twins are okay as the muscle bound heroes but it's almost impossible to construct a proper critique of their acting because their roles are, like everything else in this mess, really ill-conceived. The only way the film tries to differentiate one twin from the other is by having one twin wear a loincloth that covers his ass, while the other twin's loincloth barely covers his muscular butt. I'm not kidding! Don't ask me who's who though.<br /><br />Deodato must have been really desperate to agree to make this film. And his desperation is reflected perfectly in this trashy flick. It's just bad.",0 +12842,"This is really really bad. Lamas shows just how a second rate actor does his job. But what makes it worth watching is the scene where OJ angrily grabs a fellow cop by the throat as if to kill them while the jukebox plays a song with the lyric ""I got the evidence on you!"". (Makes me want to hear the rest of the lyrics - attributed to David Gregoli and Leslie Oren but i couldn't find it on iTunes). Talk about seeing into the future...Too funny for words. The rest of the movie is forgettable. The score and songs are more interesting than the script. Ditto the sequel. Which begs the question of why they would do a sequel at all. My understanding was that foreign sales drives a lot of these B movies. Doesn't say much for the world's viewing habits.",0 +21210,"The reviews I read for this movie were pretty decent so I decided to check it out. BAD IDEA! This is another movie about a ghost out for revenge against a group friends. The story is stupid, mix two parts Ringu with one part Prom Night, a sprinkle of I Know what you did Last Summer, and add a tiny dash of Single White Female - now blend until completely nonsensical. There is nothing new to this plot, and revisiting the clichés I've grown so fond of wasn't even entertaining this time. This movie jumps to and from the past too much, and once I made sense of it all I realized it still didn't make much sense. Characters go from sane to psycho killer in the blink of an eye. Speaking of characters, they are all your stereotypical favorites - the greedy selfish lawyer, the egocentric actress, the has-been baseball star, the video voyeur, the bitter girl, the spooky quiet chick, the 'nicer-than-nice' nice girl, a freakin' black cat... and I didn't care about any of them. Perhaps a better writer could have made the movie work, there were some decent scenes in it, but overall this movie was a mess. I should also mention a certain 'video tape' that would have been IMPOSSIBLE to shoot. <br /><br />This movie isn't the worst Asian horror has to offer by far, but it is still pretty bad. If you just want to see some creepy images in the dark, or just want to laugh out loud at some over the top acting, or just want to yell ""you're stupid!"" at a movie screen, or just want to have another Asian horror flick up your sleeve when someone asks you how many you've seen - this movie is for you. <br /><br />Those seeking a decent plot look elsewhere.",0 +21229,"Not as bad as some are making it out to be, though obviously pathetic compared to the original. In my opinion Amitabh was great as the villain Babban Singh - try not to compare to Gabbar in the original as they were clearly not going for the same effect. Other than some mediocre action scenes however, the rest of the film is flawed. Character development was poor and the development of the story was hopeless, with many loopholes, and missing pieces of information which i wouldn't have known if i hadn't read the back of the DVD case. The worst part of the movie was the support roles from Nisha Kothari and especially this new dude called Prashant Raj. Nisha is just plain annoying from the time her lips first open. As for Prashant Raj - seriously who is this guy? where is he from and why on earth was he present in the film studio for anything other than to serve drinks?. His acting ability is zero and he has the same tone, dialog delivery and staunch expression in every scene, whether it be action, comedy, or even a scene when someone has just died. Ajay Devgan was average, at least his expressions changed which is more than i can say for his mistake of a companion. overall, RGV's Aag is worth watching for Amitabh's solid performance, and also a very sexy Urmilla Matondkar in a special appearance.",0 +16856,"**MAY CONTAIN SPOILERS**<br /><br />The titular topless heroine rescues another beautiful babe and her father (an eccentric professor whose stock pith helmet is broken in one shot and whole in the next) from a moth-eaten, dime-store mummy and nasty Nazis out to--what else?--build a Fourth Reich. Misty's costume, like those of some other wimmen, gets skimpier as the movie rolls on. The last portion of the movie is devoted to protracted lesbian action; this footage actually gets real boring, real fast, which says more about the critters behind the camera than the curvaceous creatures in front of it. MISTY gets its nominal plot out of the way first and fast, then gives undivided attention to nudity and soft-core sex. This makes MUMMY RAIDER a throwback to movies made in the 1960s by guys like Stan Borden, David F. Friedman and Harry Novak. Just think: if this wonder-work had been cranked out four decades ago, it would have played for years on 42nd Street along with WHAM BAM THANK YOU SPACEMAN and KISS ME QUICK. As it is, MISTY MUNDAE MUMMY RAIDER went straight to home video. Grab yours, quick, before it goes out of print.",0 +15079,"Seeing as I hate reading long essays hoping to find a point and being disappointed, I will first tell everyone that this movie was terrible. Downright terrible. And not, surprisingly for the reasons mentioned in the first review. I thought I might agree with him, seeing as he gave the movie the rank it deserved, but was sorrowfully rebuked upon reading what he said. I am quite ashamed to be taking the same side as someone who commented that the movie ""definitely lacks good-looking females."" Let me be the first to say, ""Wow! that was definitely some serious in-depth reviewing there. My mind can hardly comprehend the philosophical musings about this movie."" Seriously though, a lack of ""good-looking females"" shouldn't be considered an essential to a movie. If you're desperate enough for ""good-looking females"" you should really watch other types of movies, not necessarily falling into the sci-fi category.",0 +23912,"The bad out takes from ""Reign of Fire"" strung together, without any real story.<br /><br />Dean Cain tries to be a real actor, and fails again.<br /><br />In the end the dragons quit in disgust.<br /><br />BARF!",0 +16088,"I should have known when I looked at the box in the video store and saw Lisa Raye - to me, she's the female Ernie Hudson A.K.A. ""Le Kiss of Death"" for *ANY* movie. Its almost *guaranteed* the movie will be bad (e.g. Congo)if Hudson is in it (with the exception of the Ghostbusters films, which were intentionally campy and bad). Despite my instincts, and the fact that I just saw Civil Brand, yet another cinematic ""tour de force"" starring Lisa Raye, I rented it anyway. After all, I ignored my ""Hudson instinct"" on OZ and ended up watching a very quality series so I figured I'd give this movie a chance.<br /><br />If you are a lover of bad movies, this is a definite must see! This has got to be the most unintentionally funny movie I've seen in a loooong time. The plot is fairly straightforward: Racheal's (Monica Calhoun) sister is killed by a band of brigands (Led by Bobby Brown!) and, like many an action movie before this, she straps on her guns ONE LAST TIME and vows to avenge her sisters death. To do this, she reassembles the titular Gang of Roses (supposedly based on a true story of a female gang) and they go out and exact revenge and, along the way, there's some subplot or something or other about some gold that might be buried in the town. One nice thing I will say about this movie is that from what I could tell, the stars did their own riding and they looked GREAT galloping.<br /><br />The funniest (albiet unintentionally funny) scenes? Look for when they introduce Stacy Dash's character or when Calhoun's character rescinds her vow not to strap on her guns (replete with a clenched fisted cry to the heavens) or Lil' Kim's character joking with Lisa Raye's character or Stacy Dash's character being killed or Lil' Kim's character convincing Lisa Raye's character to rejoin the gang or the Asian Chick or Macy Grey's character talking bout ""The debt is paid"", etc. With the exception of Calhoun's Racheal and Bobby Brown's Left-Eye, I can't even remember the names of the other characters cuz I was laughing so hard when they were introduced.<br /><br />If the director had gone for parody and broad comedy this would have been a great movie. Unfortunately, he tries to take it seriously seemingly without first taking exposition, sound design (in his defense, Hip-Hop is notoriously difficult to work into a period piece), set design, script writing nor period historical research (was it me,or were these the cleanest people with the whitest teeth in the old west?) seriously. Usually when I see a movie that's not so good, I ask myself ""Could you have done any better?"" This is the first time in a long time where the answer is an unequivocal ""YES!""",0 +12014,"This has got to be the best movie I've ever seen.<br /><br />Combine breathtaking cinematography with stunning acting and a gripping plot, and you have a masterpiece.<br /><br />Dog Bite Dog had me gripping the edge of my seat during some scenes, recoiling in horror during others, and left me drowning in my own tears after the tragic ending.<br /><br />The film left a deep impression on me. It's shockingly violent scenes contrasted sharply with the poignant and tender 'love' scenes. The film is undeserving of it's Cat III (nudity) rating; there are no nude scenes whatsoever, and the 'love' scenes do not even involve kissing or 'making out'.<br /><br />The message which this film presented to me? All human beings, no matter how violent or cruel they may seem, have a tender side. Edison Chen does a superb job playing the part of the murderous Pang.<br /><br />I rate this film 10/10. It's a must-watch.",1 +14101,"After a promising first 25 minutes that makes you feel all warm inside, you're pretty convinced that this will be a great romantic comedy. Then the movie takes a turn for the worse. <br /><br />The warm feeling might still be there, but as others has said: The plot becomes so unbelievable and artificial that it's almost unbearable to watch. <br /><br />The movie gets sped up, and you get the impression that you're either fast forwarding through it, or that the producers decided to fit it in less than 1h40m and had to cut a lot of scenes out.<br /><br />Realism isn't a goal onto itself, but as a viewer, I'm pretty convinced that this comedy isn't intentionally unrealistic, it just happens to be.<br /><br />On the plus side, this movie has a couple of nice interiors, and despite the bad script, I think that the actors performances are mainly good. If I could rate the first 25 minutes only, I'd probably give it an eight. As it is now, it gets a four. ...And that's being nice! <br /><br />If you're a sucker for romantic comedies you'll probably have a great time anyways. If not, I'd recommend that you watch something else.",0 +5260,"This Wrestlemania just didn't do it for me. While some things, such as the battle royal and involvement of celebrities were a throwback to the good old days, so to speak, it seemed to be more of a highbrow ""In Your House"" than anything else. Above average...worth it for several matches such as the tag team title match, although worthy of note is that the title change meant nothing, as it was reversed the next night.",1 +12639,"...this would have been what you got.<br /><br />Words alone cannot describe how bad this is. If you're having trouble sleeping pop this in and I guarantee you'll be out in fifteen minutes.<br /><br />Robert Lowery was a pretty good actor in the 40s-- but he's phoning it in here. In an interview, Johnny ""Duncan"" Robin said that in one scene he and Batman had to run from the car to the house and that Lowery was doubled over out of camera range because his girdle was too tight! Duncan himself looks more like a motorcycle hood than a boy wonder-- in fact he's more like a guy in his thirties waiting for Lowery to kick off so he can wear the big cape.<br /><br />Driving a Batmobile that looks like it rolled off Honest Al's Used Car lot at below sticker price-- the Dynamic Duo don't put a lot of effort into hiding the fact that it's Bruce Wayne's car they're driving-- in fact it's noted by several characters throughout the serial.<br /><br />The acting is wooden-- the sets are cheap-- the dialogue is horrendous and if there was even a script they were following I'm sure it read along the lines of ""Batman says something here"" because it certainly seems like they're making it up as it goes along.<br /><br />Batman's Utility belt is made out of thin fabric with no apparent pouches to hold his gadgets-- in one scene when Batman needs a full size blow torch the producers just tuck one in as the scene starts-- never to be seen again. His cowl is so bad he can't even see out of it and his ears look more like flopsy mopsy the disgruntled easter rabbit than they do anything batlike.<br /><br />In one scene (I am not making this up), Batman substitutes counterfiet radioactive money that will burst into flames the second it is exposed to air as a payoff to some hoods. It's radioactive so he can trace it-- the reason it's so highly flammable isn't explained. Well, unfortunately the thugs open the package in a cardboard warehouse-- we know it's a cardboard warehouse because Batman sneaks in and pushes these boxes that look to weigh about six ounces on the hoods to knock them out-- and soon the whole place burns to the ground. Thanks Batman!<br /><br />In another scene after the Batmobile is disabled, Batman flags down a passing motorist in the middle of nowhere and takes his car-- leaving the man to fend for himself and telling him not to worry because if Batman smashes up the car the police will surely buy him another one! Yes, you guessed it, said car careens off a cliff within a few short seconds. Not that it matters much to the motorist who has probably died from exposure trying to hoof his way back to Gotham City.<br /><br />There is a tired subplot with Lois Lane clone Vicki Vale who is convinced Bruce Wayne is Batman-- she must have noticed the Batmobile parked outside of Bruce's house-- or maybe she saw Batman and Robin running up the walk in the clearly densely populated suburban neighborhood.<br /><br />Everything about this serial is bad-- and all but the youngest in the audience will want to hurl toast at the screen. IF you're looking for bad cinema you could not hit a better mark-- if you want entertainment, try the Burton Batman films, the Adam West Batman TV Series or the earlier Lewis Wilson Batman serial.",0 +19406,"SciFi has been having some extremely bad luck making quality movies lately (such as Minotaur or Dog Soldiers). Grendel is supposed to be based of the great epic Beowulf, however, it deviates so much (and offers so little in comparison) that the advertisements on television might as well have titled it 'some shitty Christopher Lambert movie'. I wasn't expecting it to be as accurate as a full blown Hollywood production, but I did however expect the 'artistic integrity' to not interfere with the actual story (even if a little bit was changed to make a two hour storyboard flow nicely in the allotted time slots).<br /><br />Did the director and producers have any idea about what they were doing (did any research go into this?). Obviously not, as one could tell from the massive horned helmets that Beowulf and his crew (save for mullet boy) are wearing. One major problem I have though was with the very look of Grendel if Beowulf is supposed to wrestle him, shouldn't he not have been sixteen feet tall and weigh 2 tons? Grendel's death segment was also lacking in every way in my opinion the one in the epic was actually better than the made up junk on the script; for example: Grendel is supposed to have his arm ripped out from the socket by Beowulf not cut off at the forearm after he was set on fire by an exploding arrow from a crossbow that looks like it weighs 300lbs! And Grendel's mother did they just combine her with the dragon at the end of the epic where he eventually dies when he succumbs to his wounds? And honestly, what the hell was with that mullet? <br /><br />If you want to see this movie because its connection to the epic .don't, as there really isn't one (other than character names). The only way I could recommend this film is if you liked the movie Druids (directed by Jacques Dorfmann) although I don't recommend watching either.",0 +17947,I cant help it but i seem to like films that are meant to be scary and are just plain bad. I have personally listed it in my own top 10 worst movies right under creatures of the abyss!. Watch this film and have a laugh just don't expect to see any academy awards for acting. More chance of understanding the film its self. In all honesty though i have seen much worse than this. Plus some maniac cruising round the desert wiping the same people out that just died is that unbelievable that its got to be original. i think its one of those love or hate movies. you can make up your own mind yes its awful but it pulls it off somehow thats why i love it,0 +10852,"I ran across this movie at the local video store during their yearly sidewalk sale. While scanning thousands of videos, hoping to find a few cartoon movies for sale, I came across this movie. I read the back of the movie and knew it was God's hand at work for me to purchase this movie. You see, I have a sibling group of three foster (and soon to be adopted) children living with my family. Immediately my foster children made a connection with the three children starring in the movie. The movie helped them better understand their own circumstances. For the first time, also, the oldest of the sibling group (7 year old/female) decided to open up to me a little bit about her past and the trauma she had experienced. She has been fighting the entire trust issue. This is also the first time I had seen her cry. After watching the film, I asked her what it meant for a child to be adopted. She replied, ""It means to be happy."" A must see for families who are fostering children and are considering adoption. It certainly opened the lines of communication with us.",1 +5841,"A fierce, shockingly intelligent piece of work from the gifted British writer Hanif Kureishi who wrote ""My Beautiful Laundrette"", (this is the best thing he's done since then). It's about intelligent people whose lives don't add up to much. They've squandered what they have been given and are largely empty vessels. The only character on screen who is alive is the mother of the title yet she feels dead inside until a rough handyman shows her some affection and awakens her to the joys of sex. He has his own motives but Kureishi treats him with a good deal of compassion. This is a film in which people and places feel familiar, where characters exist beyond the confines of the screen. In some respects it's a bit like ""Sunday, Bloody Sunday"" but it's an altogether tougher piece of work. The director, Roger Michell, allows scenes to build instinctively. And it is beautifully acted.<br /><br />As the eponymous mother Anne Reid betrays her wasted life in every gesture. There is not a false note in her extraordinarily lived-in performance, and that very fine actor Daniel Craig displays shadings to his character than even Kureishi hasn't tapped into. If the film strikes a false note it is, perhaps, in the character of the talentless daughter, caught up in a messy affair with the man her mother seduces (or should that be the other way round) and even messier life, but she is so well played by Cathryn Bradshaw she hooks you in nevertheless. The film is also extremely beautiful to look at (DoP Alwin Kuchler) and must rank, unhesitatingly, as the best British film of the year.",1 +5792,"I found The FBI Story considerably entertaining and suitably upbeat for my New Years Day holiday viewing. Its drama and action-packed episodes were thrilling. The Hardesty character was well drawn and admirable. Overall the photography, script and direction was perfectly creditable. Rather than taking the film to be a repugnant piece of propaganda, as some might, I enjoyed it as a well mounted portrayal of the necessity of ingenious minds and brave bodies in the fight against crime. Again, the depiction of a family holding together even under the strain of the husband's commitment to his (arguably) important work, I did not find to be a twee representation but an ideal and exemplary one.",1 +8121,"If Saura hadn't done anything like this before, Iberia would be a milestone. Now it still deserves inclusion to honor a great director and a great cinematic conservator of Spanish culture, but he has done a lot like this before, and though we can applaud the riches he has given us, we have to pick and choose favorites and high points among similar films which include Blood Wedding (1981), Carmen (1983), El Amore Brujo (1986), Sevillanas (1992), Salomé (2002) and Tango (1998). I would choose Saura's 1995 Flamenco as his most unique and potent cultural document, next to which Iberia pales.<br /><br />Iberia is conceived as a series of interpretations of the music of Isaac Manuel Francisco Albéniz (1860-1909) and in particular his ""Iberia"" suite for piano. Isaac Albéniz was a great contributor to the externalization of Spanish musical culture -- its re-formatting for a non-Spanish audience. He moved to France in his early thirties and was influenced by French composers. His ""Iberia"" suite is an imaginative synthesis of Spanish folk music with the styles of Liszt, Dukas and d'Indy. He traveled around performing his compositions, which are a kind of beautiful standardization of Spanish rhythms and melodies, not as homogenized as Ravel's Bolero but moving in that direction. Naturally, the Spanish have repossessed Albéniz, and in Iberia, the performers reinterpret his compositions in terms of various more ethnic and regional dances and styles. But the source is a tamed and diluted form of Spanish musical and dance culture compared to the echt Spanishness of pure flamenco. Flamenco, coming out of the region of Andalusia, is a deeply felt amalgam of gitane, Hispano-Arabic, and Jewish cultures. Iberia simply is the peninsula comprising Spain, Portugal, Andorra and Gibraltar; the very concept is more diluted. <br /><br />Saura's Flamenco is an unstoppably intense ethnic mix of music, singing, dancing and that peacock manner of noble preening that is the essence of Spanish style, the way a man and a woman carries himself or herself with pride verging on arrogance and elegance and panache -- even bullfights and the moves of the torero are full of it -- in a series of electric sequences without introduction or conclusion; they just are. Saura always emphasized the staginess of his collaborations with choreographer Antonio Gades and other artists. In his 1995 Flamenco he dropped any pretense of a story and simply has singers, musicians, and dancers move on and off a big sound stage with nice lighting and screens, flats, and mirrors arranged by cinematographer Vittorio Storaro, another of the Spanish filmmaker's important collaborators. The beginnings and endings of sequences in Flamenco are often rough, but atmospheric, marked only by the rumble and rustle of shuffling feet and a mixture of voices. Sometimes the film keeps feeding when a performance is over and you see the dancer bend over, sigh, or laugh; or somebody just unexpectedly says something. In Flamenco more than any of Saura's other musical films it's the rapt, intense interaction of singers and dancers and rhythmically clapping participant observers shouting impulsive olé's that is the ""story"" and creates the magic. Because Saura has truly made magic, and perhaps best so when he dropped any sort of conventional story.<br /><br />Iberia is in a similar style to some of Saura's purest musical films: no narration, no dialogue, only brief titles to indicate the type of song or the region, beginning with a pianist playing Albeniz's music and gradually moving to a series of dance sequences and a little singing. In flamenco music, the fundamental element is the unaccompanied voice, and that voice is the most unmistakable and unique contribution to world music. It relates to other songs in other ethnicities, but nothing quite equals its raw raucous unique ugly-beautiful cry that defies you to do anything but listen to it with the closest attention. Then comes the clapping and the foot stomping, and then the dancing, combined with the other elements. There is only one flamenco song in Iberia. If you love Saura's Flamenco, you'll want to see Iberia, but you'll be a bit disappointed. The style is there; some of the great voices and dancing and music are there. But Iberia's source and conception doom it to a lesser degree of power and make it a less rich and intense cultural experience.",1 +19788,"I saw this in a sneak two days before the official opening, and I must say I was extremely disappointed. And I have to put the majority of these problems on the decision to cast Claire Danes in the lead role. Depending on what you think about Danes, she was either horribly miscast, or is so far in over her head that she should be the early favorite for the 2007 Razzie for Worst Actress. I think we were supposed to be sympathetic to her. Instead, she is completely unlikeable. The other ""great"" actresses do an OK job, but certainly don't light up the screen. Out of all the ""great"" actresses in this movie, I'd say the one who did the best job was Natasha Richardson. Streep is barely in the picture, and only appears near the very end.<br /><br />Horrible screenplay as well. It comes off more as them reading lines than truly being ""in character.""",0 +17454,"I also saw this amazingly bad piece of ""anime"" at the London Sci-Fi Festival. If you HAVE to watch this thing, do so with a large audience preferably after a few beers, you may then glean some enjoyment from it. <br /><br />I found the dialogue hilarious, lodged in my mind is the introduction of Cremator. The animation is awful. It is badly designed and badly executed. It may have been a good idea for the producers to have hired at least one person who was not colour blind.<br /><br />There's nothing else to say really, this film is a failure on every level.",0 +21334,"I have been an environmentalist for years and was really looking forward to this show. I had it set to record all episodes because I thought I could really learn some great new things. I probably could if I could get past Rachelle.<br /><br />I'm sure a lot of this is staged to seem like a reality show and appeal to that class of viewer. It doesn't work for someone who's really interested in improving the planet.<br /><br />This show should be called Nagging with Rachelle.<br /><br />Since Ed is such a great font of information, maybe a second show that's really serious about the environment would be a good idea. Dumbing things down is not necessary for some of us. <br /><br />I no longer record episodes or watch the show, but do let me know if a real green show may be in the works.",0 +1339,"This movie does a great job of explaining the problems that we faced and the fears that we had before we put man into space. As a history of space flight, it is still used today in classrooms that can get one of the rare prints of it. Disney has shown it on ""Vault Disney"" and I wish they would do so again.",1 +17254,"From the first moment, this ""thing"" is just an awful sequence of extremely short cuts of blurry camera work. While the overall plot has every potential for a thriller, the story is so badly told that I'm unable to buy it. From the middle of the film, the actions of characters don't make sense to me. Stop reading now to avoid SPOILERS.<br /><br />For instance, Ed's idea to have Edna make coffee for them after having shot off her son's arm is way below his alleged experience; it's just an extremely stupid idea. Domino not questioning the fragmentary orders she receives from Claremont Williams over a breaking-up phone connection just eludes me; shouldn't she be long suspicious that Williams is turning them in? Those FBI agents seem out of their minds showing up with just one single helicopter to something they have every reason to consider a capital mafia shoot-out. Besides, what they do by withholding and leaking information towards Cigliutti is pretty much incitement to murder; it seems to me like farewell to justice if that's they way the FBI does investigations. In reality, they'd have a case messed up beyond repair if they acted like this. We get to see a car accident which normally would have at least seriously injured if not killed most of the passengers but miraculously leaves all of them with just a few bruises. Quite the contrary, the accident is immediately followed by Domino making love to Choco, which is from Domino's viewpoint in no way founded by previous events but just by being drugged to the eyeballs.<br /><br />The whole sequence of scenes starting from the phone call of Claremont Williams appears to me just as want-to-be dramatic razzle-dazzle. This combined with the awful, uneasy camera work just makes a piece I hesitate to call a movie. I'm sorry for the wasted effort of the main actors, whose talent is out of question.",0 +21465,"This review may contain some SPOILERS.<br /><br />Just when you thought they didn't make them so extremely bad anymore, along comes Rae Dawn Chong as a space vixen and Willie Nelson as a Native American witchdoctor! It's even worse when you factor in that these two are the BETTER aspects of `Starlight,' a film that should only be viewed for laughs.<br /><br />Chong is an alien sent to Earth to seek out the only remaining half-breed, part man and part alien. Apparently, the Earth is in dire straits. Something is wrong with the genetics of mankind, and in a few decades the world will be turned into a polluted wasteland. Only by duplicating the DNA of the half-breed can the kindly alien race save the planet. Don't ask me how that is, since the movie gives the impression that the world will be destroyed by pollution, which is caused by humans. You would think Earth could only be saved by getting rid of the polluting creatures, not saving them! Anyway, the half-breed turns out to be Billy Wirth, a man living in a small Southwestern town and is part Native American from his mother's line, despite the fact that his mother is a red-headed Caucasian and his grandfather is Willie Nelson. Wasn't this the sort of malarkey that made the bombastic Carmen Electra bomb `The Chosen One' such a howler? Chong arrives in her ship just as Wirth nearly drowns after driving his motorcycle into a lake in a fit of recklessness being the result of just breaking up with his girlfriend. Before you can say utter the word `hogwash,' Chong is revealing her secret to Wirth, who isn't surprised for a moment, and spreading the word to Wirth's family. Chong also makes pals with Wirth's mother, who seems to have lost a few of her marbles over the years. Well, this is because Wirth's father was an alien that abandoned her. Of course, he is the standard rogue alien that has conveniently picked this moment to come to Earth for Wirth so he can use Wirth's DNA to make the people of Earth his slaves. (Huh?) His laughable attempts to use his telepathic powers and capture Wirth suck up most of the screen time and are the worst scenes in the movie. Not only are they boring, but they are the scenes where you will be spotting the flubs the most.<br /><br />The ideas might be nice on paper, but they are handled here with the utmost of stupidity, particularly in the aforementioned scenes with the rogue alien. But the effects are the bane of the movie. The opening scene involves Chong on her spaceship, communicating with her superior, someone who we do not see but that Chong communicates with through a vat that emits pink light. They use no spoken words, but telepathy, so we are treated to subtitles. Trouble is, both Chong and her superior's subtitles both look alike, and the director gives you no indication as to which of the two are actually `speaking' at any given moment, which makes the whole conversation nothing but gibberish. The spaceship is the worst effect to come out of Hollywood this side of an Ed Wood film. Now, I am usually lenient on effects when dealing with a low budgeted film such as this, but these effects really got to me. The most offensive was the most simple one: a fake night sky. The stars in the sky are so phony they almost sound off a dial tone. Most notably are the moments where Chong tells someone she comes from Pleiades, and we get a shot of the seven stars. Thing is, the seven stars take up about half the night sky in the movie, but any stargazer knows that Pleiades is a star cluster between the constellations Perseus and Taurus, and the cluster doesn't take up much room in the sky at all. These effects just get so lousy that your jaw will hang lower and lower with every passing moment. Be careful, for it will go right through the floor during the finale when the effects have Willie Nelson turn into a human spotlight and . . . Oh, it has to be seen to be believed!<br /><br />Starlight, star bright; Last star I see tonight; I wish I might, I wish I may; not have to watch any more of this trash today.<br /><br />Zantara's score: 1 out of 10.",0 +7495,"A remarkable piece of documentary, giving a vivid depiction of a country deeply divided within itself (for further evidence, check out some of the comments on IMDb...!). Compares extremely favourably with Oliver Stone's ""Comandante"" (which is mainly an in-depth examination of Fidel Castro's nostril hairs). I don't know whether Chavez is everything he presents himself as being, or yet another in the long line of populist Latin-American ""caudillos"". Nor do I know whether he will be able to make good on the huge expectations he has clearly built up among the poor majority of Venezuelans. It's hardly reasonable to expect a film like this to be able to answer such questions - but I've certainly now got a pretty vivid idea of what's at stake, and what it feels like to be caught up in the middle of a coup. Someone says in the film ""we're making history"", and that's exactly what the film feels like it's capturing. Outstanding stuff.",1 +1514,"Imagine being so hampered by a bureaucracy that a one man spends 8 year's of his life, and has a mental breakdown trying to solve a mass murder case virtually by himself! The murder technique is clear, but a government unwilling to admit the truth let's a monster destroy dozens of lives. When I think my job is stressful, I merely remember the true story behind this wonder flick. The devotion to duty of the main character was masterfully portrayed by Rea. The comic (and almost tragic at times) relationship between Rea and the Sutherland character made this one of my favorite movies of the last 5 years. The catching of one of the worst mass murderers in history had me on the edge of my seat. While not nearly as well advertised and talked about as ""Silence of the Lamb's"", the plot was just as suspenseful. Rent or buy this movie today!",1 +19154,"That's what my friend Brian said about this movie after about an hour of it. He wasn't able to keep from dozing off. I had been ranting about how execrable it was and finally I relented and played it, having run out of adjectives for ""boring"". <br /><br />Imagine if you will, the pinnacle of hack-work. Something so uninspired, so impossibly dreadful, that all you want to do after viewing it is sit alone in the dark and not speak to anybody. Some people labor under the illusion that this movie is watchable. It is not, not under any form of narcotic or brain damage. I would ONLY recommend this to someone in order to help them understand how truly unbearable it is. Don't believe me? Gather 'round. <br /><br />Granted, as a nation, we in America don't always portray Middle Eastern peoples in a tasteful manner. But how about a kid in a sheik outfit bowing in salaam-fashion to a stack of Castrol motor oil bottles? You'll find that here. GET IT? THE ARAB WORSHIPS OIL. I couldn't believe what I was seeing. Having the kid fly planes into a skyscraper would've been more appropriate. Who in their right mind would think that was a funny joke? It's not even close to ""cleverly offensive"". It just sucks and makes you want to punch whomever got paid to write that bit in the face. <br /><br />In the middle of the film, a five-man singing group called the ""Landmines"" takes the stage at an officers' ball. Okay- are you ready? The joke is THEY SING TERRIBLY AND OFF-KEY. Why did I write that in caps also? Because the joke is POUND, POUND, POUNDED INTO YOUR HEAD with a marathon of HORRENDOUS sight gags. They start off mediocre enough; glasses cracking, punch tumblers shattering... then there is, I am 100% serious, a two-frame stop-motion sequence of A WOMAN'S SHOES COMING OFF. You read that correctly- the music was so bad, in one frame, the woman's feet have shoes on. In the very next- the shoes are off!!! Get it, because the music was so bad, her shoes came off! What the F???? <br /><br />Then there is an endless montage of stock footage to drive home the point that the SINGING IS BAD. If any human being actually suffered through this scene in the theater without running like hell, I would be astonished. This movie is honestly like a practical joke to see how fast people would bolt out the doors. Robert Downey Sr. directs comedy the way his son commands respect by staying drug-free. Badly. Other things to watch out for:<br /><br />1. The popular music shoehorned in wherever possible. Every time Liceman appears, a really inappropriate Iggy Pop song plays. Plus all the actors do their best to act like it got really chilly for some reason.<br /><br />2. Barbara Bach's criminally awful accent. She sounds like she's trying to talk like a baby while rolling a marble around on her tongue. There is no nudity, and there are several scenes where the boys all moan and writhe from a glimpse of her cleavage, like they're in a community school acting class and they've been directed to act like aroused retarded people. <br /><br />3. Liceman feeds his revolting dog a condom. Remember; when this movie came out throwing in ""abortion"" and ""condom"" was seen as ""edgy"". <br /><br />4. Tom Poston plays a mincing, boy-hungry pedophile, back when Hollywood thought ""pedophile"" and ""homosexual"" were one in the same. Flat-out embarrassing. <br /><br />5. Watch the ending. Nothing is wrong with your VCR. That is actually the ending. Tell me that doesn't make you want to explode everyone who's ever made any movie, ever. <br /><br />Watch this at your own risk. Up The Academy has been known to actually make other movies, like The Jerk or Blazing Saddles, less funny simply by placing the videotape near them.",0 +5928,"Wow. Uhm...well...wow! I guess I'll start with the plot. A betrothed woman (Lucy) arrives at the family home of her would be husband (Mathurin) in France, where they are awaiting the arrival of the Bishop or Cardinal or someone in the Catholic Church to marry them (to satisfy a will.) While waiting, young Lucy learns about a legend of a Beast who roamed the grounds centuries before. In bed that night, she begins fantasizing about the Beast and his rape-turned-consensual tryst with the former lady of the house. That's where it gets interesting! The plot is really pretty thin (and it seems to drag on for quite a while in the middle of the flick), but the filmmaker rewards (?) those who stick it out with a shocking and hilarious finale.<br /><br />This movie isn't for everyone. If you're looking for great cinema, look elsewhere. If you're looking for a far-out movie about bestiality (that almost casts a sympathetic glance over the subject) this movie is for you! (If you have a weak stomach, don't be afraid of this one. Outside of some horse-on-horse action at the beginning, the 'deeds' are pretty cartoonish, IMO)",1 +4982,"I thought it was an extremely clever film. I was very pleased with it and truly couldn't' ask for more. I actually own the film because I didn't return it to someone... Which I should do, but I really want to keep it due to how much I enjoyed it. Also, the fact I don't own too many foreign films and this is a first. Now, I personally love Finnish stuff so, that definitely added to how much I enjoyed it. But overall, its worth watching. However, if you're not into the whole trying to understand Finnish or read Subtitles bit, then this film is not for you.<br /><br />9/10 for sure.",1 +6357,"Right from the start you see that ""Anchors Aweigh"" is a great comedy. Gene Kelly and Frank Sinatra make such a funny team! The songs they sing together are pure entertainment. Kathryn Grayson is gorgeous and really sweet. Dean Stockwell is the cutiest child actor I've never seen. If you are fond of piano, you'll be amazed by José Iturbi. This movie was the first one to combine animation with real actors and it did that wonderfully in an unforgettable dance number. Undoubtedly one of Kelly's funniest movies.",1 +139,"This movie is the first of Miikes triad society trilogy, and the trilogy kicks of to a great start. The movies in the trilogy are only connected thematically, and these themes are actually apparent in all his films, if you look close enough. Shinjuku Triad Society is about a cop trying to prevent his kid brother from getting too involved with a rather extreme gang of outsiders, struggling their way to the top of Tokyos yakuza. The kid brother is a lawyer, and the triad gang is becoming increasingly in need of one, as the movie progresses. The movie takes place in a very harsh environment, and is therefore pretty violent and tough. Miike has done worse, but since this is a serious movie it hits you very hard. As usual there is also a lot of perverted sex, mostly homosexual in this one. The movie is in many ways a typical gangster movie, but with a great drive and true grittiness. If you've only seen Miikes far-out movies (Ichi the killer, Fudoh etc.) this is worth checking out since it is sort of a compromise between his aggressive over-the-top style displayed in those movies and his more serious side, as seen in the other films of the trilogy. And as always with Miike, there are at least two scenes in this that you'll NEVER forget (see it and figure out which ones for yourself).<br /><br />8/10",1 +3778,"If you are tired of films trying too hard to be fairy tales (the ""Pretty Woman"" variety love story), here is a beautiful film in which a Japanese businessman is pulled free from his robotic, dispassionate life when he falls in love...with dancing. Wonderfully drawn characters bring to life a story that is at once deeply funny and poignantly moving.",1 +8223,"I will always have a soft spot for this Disney flick, another of their part live action/part animation entries that sought to recreate the success of ""Mary Poppins"" and never quite made it. When I was in grade school, every once in a while we would have a movie day, where the whole school would crowd into the cafeteria, and a movie would be projected the old-fashioned way, multiple reels and all. At the time, it seemed like a momentous occasion whenever this day arrived, and ""Bedknobs and Broomsticks"" is one of the movies I can remember seeing this way.<br /><br />And from what I remember, it's quite charming. Angela Lansbury never put her name to anything that wasn't at least competent, and she's winning here as a witch with a magic bed (boy, that could be misconstrued, couldn't it?) who can take her and a couple of young kids on magic adventures to far-off places. Come on, what kid wouldn't want a bed like that? <br /><br />Grade: A",1 +8943,"The industry dropped the ball on this. The trailer does not do the movie justice and when this opened it was on a hand full of screens. Had people had an opportunity to see this, work of mouth would have made it very successful. The 2 lead actresses each give great emotional performances that really draw you in to the story and especially the characters. I checked this out based on the rave recommendation Richard Roeper or (Ebert and Roeper) in his book. An example of a great film that never got fully released except on a few screens. Which gave it no chance to be seen. Some movies go to video quickly because they aren't that good. This is Oscar worthy and it's a tragedy on many levels that most will never even hear of it. Maybe via word of mouth it will gain a following on DVD or cable. If you haven't see this movie you should. Great performances of the 2 lead actresses make this movie. It could have just been another formulaic teen movie after school special but instead it stands up well to other note worthy films. Girl Interrupted comes to mind. If you like that you will like this. <br /><br />Both girls are in one amazing emotional scene after another without coming off as melodramatic. Even though Alicia is angry and Deanna is crying through most of the movie it is done is such a real way that they do not come off as stereotypical characters or as melodramatic. The movie will move you in many scenes and if you are an aspiring actor use these real performances as your school. Erica is even better in this than in Traffic. I hope both of these actors get more roles that utilize their talents as well and let them shine. See this movie and if you like, recommend to friends so it doesn't get lost among all the blockbuster crap that comes out every year. This movie was buried while Spiderman 2 tops records. What kind of word are we living in? AGHhh. So to make the world right again see this and recommend it.",1 +20923,"Mr. Mike was probably the most misanthropic comedian of all time, so I was interested to see what he'd do with total creative control over a movie. Sadly, it is unwatchable, though not because the jokes aren't funny--some (I won't say most) of them are, and in fact Mr. Mike did a good job translating his mentally unbalanced screeds into visual gags. The trouble is that the technical quality (sets, lighting, sound, editing, you name it) is so God-awful, the movie is intolerable. Some outfit called ""PKO Productions"" gets the producing credit, but it doesn't look produced at all; it looks more like Mike stole one of the cameras from the SNL set and made the whole thing in an afternoon. I realize Mike's goal was to torture the audience, but even that deserves some basic standards, such as the ability to actually see, hear or comprehend whatever it is that's supposed to be shocking. Still, the DVD isn't a total waste: it includes a eulogy for O'Donoghue by Bill Murray and three ""Mr. Mike's Least Loved Bedtime Stories"" from SNL. Plus, the ""cat swimming"" section of the movie is a great scene to be caught watching if you want to freak someone out. 3/10",0 +24499,"After Highlander 2 (which I am still in denial about), I thought is was impossible to make a sequel that could make me cry because it was so bad. I was wrong. I loved the original Wargames, however, this movie is inaccurate with computer details and details about the original movie. The original Wargames at least had some hacks that worked. Whoever wrote this movie knew NOTHING ABOUT COMPUTERS except how to use a word processor. I doubt he or she even watched the original movie. The acting isn't even convincing. Please save yourselves, under no circumstances watch this movie. I don't care if the channel is stuck on the TV and you can't turn the TV off. THIS MOVIE WILL RUIN YOUR LIFE.",0 +1815,"I also just got back from an advanced screening of Redeye and I must say I haven't had so much fun at a movie in a long time. WES CRAVEN is at his best ever. He brings us an amazing end of summer thriller I was so desperately craving. This is THE thriller of the year..no doubt. <br /><br />All the actors are amazing and the action is realistic and fun. The F/X were great. It steadily built suspense. I was on the edge of my seat most of the movie. It's been a while since I heard an audience cheer and clap and get excited in a theater. <br /><br />If your looking for thrills,action and a GOOD plot this summer, REDEYE delivers. Go see it!",1 +696,"So what constitutes a real independent film? In a day and age where the latest fad of mainstream hollywood is to appear rugged and cutting edge, I'm sorry to say that what the general public tends to perceive as independent film is usually nothing more than a clever marketing ploy.<br /><br />Which is why we should be glad that films like ""Hatred of a Minute"" exist. Across the board, this film makes a point out of contradicting its own template (indie horror film). Love it or hate it, ""Hatred"" isn't afraid of being what it is, and in watching this film, you get the real sense that Kallio (the director) didn't just make this film to spray fake blood all over the place, he's in this to tell stories. Good ones. You may find this film in the horror film section of your video store, but don't be fooled, this story is also about love, about good people pushed over the edge, and that oh-so-distant light at the end of the tunnel.<br /><br />If you expect smut, or an Evil Dead ripoff, stay away from this film. But if you dig the finer points of the horror/suspense genres, check this film out.<br /><br />Yes. Bruce Campbell did produce this movie, and I'm sure he's proud to tell anyone that it's not ""Evil Dead"". Bruce has never tried to bank on his ""ash"" image, and it's obvious that he didn't get involved with ""Hatred"" so that it could do so either.<br /><br />My advice, though, to all Dead-ites rabidly devouring anything issued by Mr. Campbell is to check this film out anyway and see what else Mr. Kallio and Mr. Campbell are trying to show you.<br /><br />The acting is well done, although nothing about this film is oscar caliber (perhaps intentionally), it's good to see compassionate performances in a horror film. So often, actors in films such as these don't even seem to try, with ""Hatred"", it seemed as though all the actors took thier charecters very seriously, never resorting to typical horror-film campiness.<br /><br />Technically, ""Hatred"" is about as competent as indie film gets. The editing is fast paced, the cinematography is good given the budget, and ""Hatred"" keeps a quick pace, without any bog-down points or bad anti-climaxes.<br /><br />All in all, Hatred may not have the glossed over look of all those multi-million dollar fake indies, but personally, I don't see a problem with that. It's a film by folks who actually care about the medium. People who reached into thier broke ass pockets, pulled out thier nickles and dimes, threw caution to the wind and made a damn good movie.<br /><br />Check this one out.",1 +2583,"I first saw this film when it was transmitted around 1988 by the BBC when I was working on UK's 2000AD. My pal Steve Parkhouse recorded it on VHS and sent it to me. Up till this point, I'd really only seen the Shaw Bros kung fu movies, with their harsh lighting (so audience could see the moves clearly), so it was a revelation to me to see something that looked like it had been lit by Ridley Scott coming out of Hong Kong. This was also my first exposure to the movies of Tsui Hark (pronounced, apparently, ""Choy Huk"").<br /><br />Yet for all the smoky, back-lit exteriors and ambitious special effects (Stop-motion? In a Hong Kong Movie?) at the heart of Chinese GHOST STORY lies a simple and moving love story, made all the more real by the outstanding acting talent of Leslie Cheung (what a tragic, tragic waste of a life!) and the beauty and elegance of Joey Wong. Granted Joey is gorgeous, but it's her balletic hand gestures that give her character an unattainable eroticism that's hard to analyse. And though Joey is now almost 20 years older (gawd, which of us isn't?) this will always be the enduring image of that actress.<br /><br />Some reviewers here have said that the film is simplistic and lacks any surprises, but they're missing the fact that this movie was based on a famous Chinese story written by Pu Songling around 1700! That's a bit like complaining that Romeo and Juliet has a predictable ending and just copies WEST SIDE STORY. (Just wanted to get that off my chest!)<br /><br />For me, Chinese GHOST STORY is the quintessential romantic tale. It has high tragedy, because we know that Chio Sin and Sin Seen can never be together. It's about becoming mature, for none of us can mature until we've experienced great loss. It's about sacrifice, for sacrifice is an essential component of True Love. And the comedy stylings of Wu Ma don't hurt a bit, either.<br /><br />Enjoy Chinese GHOST STORY by trying not to view it through a filter of Western culture and you'll get on with it just fine.",1 +23880,"This movie is a prime example of squandering great resources in a film. You've got future SNL and SCTV stars in their prime, such as John Candy, Chevy Chase, Laraine Newman, Al Franken,Tom Davis and Joe Flaherty essentially making 70 minutes of coarse, uninspired fart and racist jokes. The concept of a network from the future subverting society could have really been taken to some interesting extremes, but instead right out the gate, makes a lame, juvenile proctology joke and stays in that vein of humor the whole way.Seek out the earlier and much more subversive and witty Groove Tube or the later, hilarious Kentucky Fried Movie. This movie is only for those who want to see a time capsule of bad 70's sketch comedy movies.",0 +22663,"I suppose all the inside jokes is what made Munchies a cult classic. I thought it was awful, though given the ridiculous story and the nature of the characters, it probably could've been a much better (and funnier) movie. Maybe all they needed was a real budget.<br /><br />Munchies, as many viewers have pointed out already, is something of a Gremlins parody. Hence, all the references to the movie. The movie begins somewhere in Peru during an archeological dig. An annoying dufus named Paul, aspiring stand up comedian who offers no sarcasm or witty jokes during the movie despite his career plans, is holed up with his dad in the caves. His dad is an unconventional kind of archeologist, searching the caves not for artificats or mummies or anything, but proof of U.F.O.'s. And that's where the Munchies come into the picture. Hidden in the crevice of a rock is an ugly little mutant that looks like a gyrating rubber doll with a Gizmo voice. They name him Arnold, stash him in a bag, and bring him home so Paul's dad can finally show proof of extra terrestrial life.<br /><br />Paul, the idiot that he is, breaks his promise to his dad to watch Arnold (a wager he made with his dad, if he loses, it's off to community college to get a 'real' career). The creepy next door neighbor with the bad rug, Cecil (television veteran Harvey Korman), wonders what his neighbors are up to. So, he and his lazy son, some airhead hippie type (who looks more like they should've made his character a biker or heavy metal enthusiast) to go and snatch Arnold. Why? A get rich quick scheme of course. And of course, even Cecil's son is too dumb to look after Arnold. And after a few pokes and prods at Arnold, he multiplies into more Munchies.<br /><br />This wasn't even a movie that was so bad it was good. It was just plain awful. I was hoping that the Munchies would've mutated and killed the morons that were always after them, even Paul and his girlfriend. At least it would be one way to get rid of all the bad acting in this movie that really hams up the movie. Not to mention poor special effects that look like hand puppets. And really bad writing all around--it wasn't even funny--not even that young cop who can really give you the homicidal twitch in your eye. Like I said, Munchies, if they had been given an actual budget and better actors, they might've been able to pull off a good parody. Pass.",0 +17601,"I just rented this movie to see Dolph Lundgren, whom I hadn't seen in any movies since Rocky IV. Unfortunately this movie was a big disappointment. The acting of all the parties was bad except for Mr. Lundgren, who was okay-ish. Kata Dobó was something nice to look at despite her ridiculous outfit and make-up.<br /><br />The plot is not at all clever, it's something that's been repeated a million times in different movies. The crooks were utterly stereotypical, and Lundgren's character hadn't any depth in it. I didn't really expect a movie masterpiece, but unfortunately this is not even decent action. Every turn in the plot is extremely predictable and the unbelievable amount of over-the-top unrealism and comic-book like characters started to annoy me strongly pretty soon.<br /><br />I would recommend this to young kids wanting some comic-like action, but only if nothing else is available.<br /><br />1/10. (I guess the current average vote of 7.0 with 6 votes must have been influenced by somebody involved in making this movie)",0 +23602,"Antitrust falls right into that category of films that aspire to make some great point while being uplifting yet falls completely flat. I don't hate the film, but it is missing key elements, such as suspense. There have been other attempts to make an engaging film about computers, such as Hackers and The Net. They all fall short. The improbable ending of both The Net and Antirust seem to be nearly identical. These movie endings suffer from one huge error in perception: People in the PC business having this over-indulgent self ego that assumes the general population lives it's life waiting to hear the latest news about PC's and software. I have worked for many companies and industries, and they all seem to suffer from an expanded view of their own self-importance, as does this film.<br /><br />The way they introduced plot lines was pathetic. Showing Milo, who is deathly allergic to Sesame Seeds, almost ingest one from a restaurant breadbasket crossed the line of stupidity. Only his 'girlfriend' prevented him from sure death. This makes one wonder how Milo could have survived as long as he did, braving the perils of Big Mac buns and Sesame Seed breadsticks, as they cloak themselves as, well.... Sesame Seed breadsticks and Big Mac buns.<br /><br />Antitrust also doesn't provide much suspense. The patterned and predictable plot twists are easily figured out long before they are revealed (come on, was anyone REALLY stunned when Yee Jee Tso was killed?), thereby destroying any real shock value. And here again we have yet another film/story where at the end, the bad guys are chasing the good guys to 'get the disk'. We need to have a moratorium on this Simple Simon plot line for about 20 years. Still, I pressed on. Maybe the ending would be the payoff, but no. The completely ridiculous ending where we have the head of company security, another supposed evil guy, turn around and be the good guy that enables Milo to bring down N.U.R.V CEO Gary Winston was laughable. And of course, the news coverage of the arrest of Gary Winston is more fevered than when Hinckley or Oswald was brought into custody. Gary Winston, played by Tim Robbins, is a cardboard cutout of the same character Robbins played in Arlington Road. But that fits perfectly here in Antitrust, which should be called 'Anticlimactic' or 'Anti-Original'.<br /><br />In the years to come, this film will likely be banished, to be shown only on your local third rate UHF channel.",0 +10090,"I finally got my wish to see this one in a cinema. I'd seen Fritz Lang's film on video some years ago. I'd been hoping that ideal screening conditions would work their magic.<br /><br />Conditions were ideal at Cinematheque Ontario. Pristine full-length print. Intertitles in the original Gothic-script German with simultaneous English translation, accurate without being too literal. Live piano accompaniment. Ideal.<br /><br />The film's magic sputtered for a little while but ultimately failed to catch, at least for me.<br /><br />This film bears no real relation to Wagner's Ring cycle as I already knew but some may not. Wagner had adapted the 13th c. Niebelungenlied to his own purposes. Part I of Fritz Lang's epic -- ""Siegfried"" -- has much that will be familiar to listeners of Wagner however.<br /><br />""Kriemhild's Revenge"" is the story of Siegfried's wife Kriemhild, her marriage to King Etzel (Attila) the Hun, and her desire for revenge against Hagen and Gunther, the rechristened Nibelungs, for the murder of Siegfried. The spectacular conflagration in this film presumably evolved and expanded in the Wagnerian mythos into his Götterdämmerung, his Twilight of the Gods, and the end of Valhalla. This film remains earthbound.<br /><br />Most of the film is spectacular. The massive sets rival those of ""Cabiria"" (1914), which inspired Griffith's ""Intolerance"" (1916). Their decoration sets a new benchmark in barbaric splendour. There's a huge cast of scarred, mangy Huns and Art Deco Burgundians. And battles. Battles that never seem to end in fact.<br /><br />Kriemhild is very successful in her plan of revenge. She manages to destroy all around her. Her loyalty to her martyred Siegfried seems not to stem so much from love, or devotion, but from something closer to psychosis. Lady Macbeth cried out, ""Unsex me here."" She knew she was emotionally unprepared for what she needed to do. But Kriemhild displays no normal human emotions, and certainly nothing one equates with the feminine principle. She is already ""top full of direst cruelty"", to borrow Shakespeare's phrase, from the outset. Margarethe Schön and her director convey this with a glower. I don't want to exaggerate, but that glower is virtually the only expression ever to ""animate"" Kriemhild's face. It's the ultimate in one-note performances. It's clearly intentional however, not simply a case of poor acting.<br /><br />What we have then on offer is a one-dimensional sketch of an avenging Fury. Some might see Kriemhild as an empowered heroine. I just see the film as misogynistic.",1 +8604,"10 out of 10, this brilliant, super documentary is a must see, with film clips from the war which people did not seen for years, untill this was screened in 1974. The film clips in this documentary from the war doesn't miss out anything, some of the clips left me dumbstuck. The whole series is over 20 episodes long, and Sir Lawrence Olivier is the narrator and tells a stunning story of war. Simply this is still probably the best documentary of war still, and now over 25 years old still is able to pack a tremendous punch. You must watch this at some time, even if it's a few episodes, even at that you will still be blown away at the impact this documentary means to those who have been there suffered and died in the name of WAR, in a WORLD AT WAR..",1 +367,"This is actually a trilogy of 3 of Somerset Maugham's short tales. The first one is The Verger, which is about 15 minutes long and very enjoyable. After 17 years Albert Foreman is laid off from his church job because he can't read nor write. So what does he do? Opens a tobacco shop, of course!<br /><br />The second is Mr. Know-All which was actually a story I had read for school 6 years ago and instantly forgotten, until I heard the familiar introduction. Another 15 minute one, and also very good. It worked better on film than in a book for me, but then perhaps that's because I was only 14 the last time, afterall.<br /><br />The 3rd one is nearly a let-down. Almost an hour in length, it simply drags. It's not all that bad, but not as quick and snappy as the last 2. I watched the first quarter hour of it and then skipped forward to the last quarter hour, and found that it still made sense and really I hadn't missed a thing!<br /><br />Overall I give them 8, 9, and 6 out of 10, respectively.",1 +9872,"It has been some years since I saw this, but remember it and would like to see it again. It kind of became a ""therapy"" for me with a personal experience of my own.<br /><br />A thirty-five year old man laments over a high-school baseball game in which he ""missed the ball"" and his team lost. He thinks about it 20 years later, ""if only I'd hit that ball"" and how his life would be better because of it. Then, he gets a chance to find out....and gets a little more than he bargained for.<br /><br />It reminds me so much of when I was in high school, I twice tried out for our drill/dance team and didn't make it. This team was the closest thing to a sorority in my school. If you were on it, you were ""all that."" I didn't try out till my last two years of HS and after the second time, I took it really hard. I'd hit and bruised my leg badly just before tryouts and wore tights to cover the bruise, and that caused me to not make it. That was in 1987.<br /><br />Through the years, even now sometimes, I think ""If only I hadn't hit my leg I would've never worn those stupid tights."" Now I don't sit and think my life would be any better or even any different had I made it, but seeing this movie made me realize that we never really know how different things may be by changing one little thing way back in the past. Who knows, it could have changed the course of events to the point that I wouldn't have met my son's father.<br /><br />I would recommend this movie to anyone who has that one moment in the past they wish they could change. Be careful what you wish for!!!",1 +150,"What starts out as a very predictable and somewhat drab affair is in the end quite hilarious and entertaining. ""Right to Die"" is not very suspenseful but it more than makes up for that with some outlandish set pieces and over the top gore.<br /><br />Spoilers here: <br /><br />Top credits also go to the dead-on performance from Martin Donovan as one of the most despicable characters ever to grace the screen. Playing the character in a great ""aloof"" fashion, you nearly feel bad for the guy in the end when his grand plan ultimately fails. Corbin Bernsen also chews up the scenery playing a not-so-good-guy who gets his just desserts.<br /><br />End of Spoiler.<br /><br />As a revenge-from-the-dead flick, ""Right to Die"" benefits heavily from it's performers and is more than an OK way to spend less than an hour.",1 +3108,"Luckily, not knowing anything about this movie I was curious enough to tape it from TV. And then the tape ran out just five minutes before the ending!<br /><br />But I'm glad I managed to get most of it because this is a really great spy movie. There are the usual toy submarines and a bit foggy plots, but also very chilling and even daring moments. Considering the production year 1969, the certain slight lesbian overtones must have raised a few eyebrows. Of course now it doesn't surprise anyone and those scenes in fact seem pretty beautifully done. And it's not just because of the two George's actresses.<br /><br />The gas attack seems to hit every viewer very strongly, no wonder, And it certainly did hit me. Very effective. Also the viewpoints from the both sides of the opponents gives the whole story more deepness along the usual suspense and action. This is not just a heroic war tale of one victorious side, but shows what lies behind the victory in good and bad. Well, being a case of war, mostly bad.<br /><br />For the fans of composer Ennio Morricone this is also a must. His work is always excellent, touching but never over the top. And I think I have to try to catch more movies with Suzy Kendall. Talk about Fräulein! Let's hope they get this on DVD soon, so I can have the entire movie in my collection and more people will become familiar with this very little known gem.",1 +15109,"A real disappointment from the great visual master Ridley Scott. G.I. Jane tells the story of a first female ever to go through the hellish training at the Navy SEALs. The training is the most difficult and hard in existence as the instructor says in the film to the lead character O'Neil played by Demi Moore. There is no particular message or point in this film or then I couldn't reach it properly. It may be a some kind of a statement of female rights and abilities but it all sinks under the tired scenes and stupid gun fight at the end of the film.<br /><br />I really can't understand why Ridley uses so much zooms in that mentioned last gun battle at the desert?! It looks sooooo stupid and irritating and almost amateurish so I would really like to know what the director saw in that technique. When I look at his latest film, Black Hawk Dawn, there is absolutely nothing wrong in the battle scenes (which are plenty) and they are very intense and directed with skill. The whole finale in G.I. Jane looks ugly and is nothing more but stupid and brainless shooting and killing.<br /><br />This is Ridley Scott's worst movie in my opinion and there are no significant touches from which this great director is known. Still I'm glad I saw this in Widescreen format because there are still couple of great scenes and samples of Scott's abilities, but they are very few in this film.<br /><br />A disappointment and nothing compared to the classics (Blade Runner, Thelma & Louise, Alien and so on..) of this talented director. So I'm forced to give G.I. Jane 4/10.",0 +6224,"I was looking through the movie listings in my area on yahoo and seen a movie that had not been advertised. I looked closer and noticed that Peter Falk and Paul Reiser were in it. Having watched ""Mad about you"", once, I was not a fan of Paul Reiser. However, I am a big fan of Peter Falk. So the spouse and I took a chance. We were both swept into this story. The beautiful scenery, the heartfelt acting and the sense of family and moral values that are seldom seen in movies and the world today. Not that sappy emoted junk, but real life situations from real life-like people. I even have to say, Paul Reiser was excellent, although, I still won't watch ""Mad about you"". I don't know where this movie has gone. I heard it was put out in limited release. It should be shared with the world. It is one of the finest movies I have seen. M.",1 +10459,"This movie was very enjoyable, though you'll only like it if: - you hate going to the dentist but aren't afraid of a movie where one of them goes beserk - you love horror movies<br /><br />I particularly liked the fact that some care was given to explaining the brute actions of the main character. The fact that he's totally obsessed by cleanliness (especially in the mouth) and then catches his wives providing some oral pleasure to the mud-covered pool-man is a pretty believable reason to go overboard.<br /><br />Liked it. I give it an 8.",1 +2141,"This movie, while seemingly based off of a movie of the same title in 1951 released by MGM and starring Janet Leigh, is still a great film. Danny Glover in one of his best performances brings George Knox, a down on his luck baseball manager with a short temper, to life. As for this movie being ""stacked"", how about adding Christopher Lloyd (his stage experience works and shows through in his performances on screen, a wonderful actor), Joseph Gordon-Levitt (Third Rock from the Sun), Brenda Fricker (a charming and well seasoned Irish actress), Tony Danza (yes even he is good in this film), Matthew McConaughey (he stole the show in Dazed and Confused, and his role may not be as pivotal in this film, but he got exposure), Adrien Brody (what I said about Matthew McConaughey goes the same for Adrien, except the Dazed and Confused part), some great character actors like Taylor Negron (David), Tony Longo (Messmer), Jay O. Sanders (Ranch Wilder), Neal McDonough (Whitt Bass) and a seasoned veteran in one of his final performances, Ben Johnson (Hank Murphy, the owner of the California Angels), and the rest of the cast does a great job, plus a great storyline that is uplifting to pretty much anyone, I don't care what recesses of depression you're in. I loved this film as a kid, and it brings back memories when I watch it today. I need this on DVD. I recommend it to any parent who's looking for something their kids have not seen, and everybody else, for that matter.",1 +9761,"The person's comment that said that Pat Robertson is evil and his program is evil has nothing to compare what evil and righteous is. His definition of evil is the opposite of evil. The Bible itself says that in the last days people will call good evil and evil good! He doesn't even know that he fulfilled Bible prophecy! If you don't know God and refuse to know him now, that's okay. He still loves you but when you do finally bow your knee to Him, and you will, it will be too late for you. God sends no one to hell, not even you! You will go there of your own decision and your spewing defines it! May God have mercy on you and give you a Damascus Road experience. The 700 Club and Pat Robertson's ministry is one of the reasons I'm still here. On the edge of alcoholism, adultery, and probably death, God reached through the TV screen and used Pat Robertson to do it, and thank God He did! You have a right to say what you said but you don't have a right to curse with your words. God have mercy on you.",1 +3702,"I first read Pearl S Buck's splendid novel in my ninth grade history class, and I enjoyed every thrilling page of it. It was almost inevitable that Hollywood would get hold of it, and considering that it was made in 1937, the results are excellent.<br /><br />Certain things have to be accepted: in 1937 there was no question of casting Asian actors in a major Hollywood film. In a way this renders the end product rather more interesting than if they had been able to use a more authentic-looking cast.<br /><br />With that obstacle to overcome, executive producer Irving Thalberg and director Sidney Franklin (among others) took the trouble to hand-pick a splendid and stellar cast. Paul Muni plays Wang Lung. Muni was at the peak of his powers as an actor during this period, and could very nearly play anything he put his mind to. Once you get past the makeup (it's good, but no one is going to really mistake him for a Chinese man), his performance has all the verisimilitude of his best work.<br /><br />Then there is Luise Rainer. Coming off an Oscar win the previous year for her performance in THE GREAT ZIEGFELD, the Viennese actress's star was on the rise and she was given the plum role of O-lan despite her lack of experience in Hollywood. Her performance won her a second consecutive Oscar, the first time in history that happened.<br /><br />Much criticism has been leveled at Rainer's performance, and her Oscar win here. She has been called wooden and one-note. There is a small grain of truth in that. HOWEVER, that being said, all you need to do is go back to the book. For Rainer, though not Chinese, played O-lan pretty much as Buck wrote her; it is in fact a splendid performance, and one of the best transfers from book to screen I have ever witnessed.<br /><br />As for the rest of the cast, well this was MGM. They had the biggest roster of stars and character actors in Hollywood at the time, and a big budget to pay for the best, and in the end they got the best.<br /><br />The film softens Wang Lung's marriage to O-lan somewhat. In the novel, with wealth come the lusts of the flesh and he takes on a concubine, a move which devastates his wife but her feelings as a mere woman do not concern him. In the film, a contrite Wang Lung returns to his wife on her deathbed the two pearls he had taken from her years before, realizing too late that she was his true love.<br /><br />Corny, yes. But that's Hollywood. Considering the obstacles they were up against, the film might well have opened to screams of laughter. But despite the noticeable dearth of real Asians in the cast, this film has worn surprisingly well with the passage of seventy-three years. In fact the most amazing thing about this film is how good it is, when it might so easily have been a disaster.",1 +16210,"Horrible film with bits of the Ramones strewn about. Your worse than average 1970's/80's comedy format of the cool kids taking over the school with some whimsical plan. This movie is terrible. The plot consists of a girl who enjoys the Ramones and a school bent on fighting against their oppressive administration. Forget this movie and watch something like Wild Zero starring Guitar Wolf if you want an entertaining B movie. Terrible acting, terrible writing, terrible plot with the stamp of approval of the Ramones who probably needed some money quick so they said yes to this movie. That is the only logical thing I can think of because this movie blows.",0 +17997,"<br /><br />One would expect a movie with a famous comedian in the lead role, to be a funny movie. This is not the case here. I laughed out loud once throughout the whole movie, and that wasn't even during the final comedy-scene (which one would also expect to be the funniest). This is one you can watch when it comes to TV, don't spend any other money renting it.",0 +17178,"I was babysitting a family of three small children for a night and their mother gave me this to show for them having just grabbed it at Wal-Mart earlier in the week. All three children actually got physically ill while watching it. I'm pretty sure it was the pizza they ate, or something they all had picked up from school, but really it could have been this film. Absolutely disgusting. How any one can produce this caliber of trash is beyond me. Fortunately, I turned off the film when I noticed the children were not responding and acting strangely. For any parents out there, I strongly advise you to refrain from letting young children view this movie.",0 +17,"Popular radio storyteller Gabriel No one(Robin Williams,scraggy and speaking in hushed,hypnotic tones) becomes acquainted and friends with a fourteen-year-old boy from Wisconsin named Pete Logand(Rory Culkin),who has written a book detailing sexual abuse from his parents. To boot,Pete has AIDS and this compels Gabriel further still,since his partner Jess(Bobby Cannavale,good)happens to be a survivor of HIV himself. <br /><br />He also acquaints himself with Pete's guardian,a woman named Donna(Toni Collette,brilliant!)and when Gabriel decides he wants to meet and talk to the two of them in person and goes to Wisconsin,he discovers some secrets he was(naturally)not prepared to find.<br /><br />Based on real events that happened to Armistead Maupin(who co-wrote the screenplay with Terry Anderson)and directed by Patrick Stetner,this film moves a lot faster(90 min.,maybe a few minutes longer)than one might think a movie of this genre would run. That's good in that it keeps the action and storyline lean and clear. It's bad in that it leaves various holes in the plot and doesn't sew-up any of the plot openings or back-story. I'd rather not go into any great detail except to say that,if you are not familiar with Mr.Maupin's works or his personal story,you feel a little bit out of the loop here. Still,the performances by Williams( I would've loved to heard more of his narration,personally),Collette,Cannavale,Culkin and much of the supporting cast(the Waitress at the restaurant Collete's Donna frequents does a great job with what small part she has!)are top-notch and the mood established here--namely,the chilly,lonely dark exteriors of Wisconsin and New York--give a terrific framing for this story. It may have ends that don't tie together particularly well,but it's still a compelling enough story to stick with.",1 +5351,"Damon Runyon's world of Times Square, in New York, prior to its Disneyfication, is the basis for this musical. Joseph L. Mankiewicz, a man who knew about movies, directed this nostalgic tribute to the ""crossroads of the world"" that show us that underside of New York of the past. Frank Loesser's music sounds great. We watch a magnificent cast of characters that were typical of the area. People at the edges of society tended to gravitate toward that area because of the lights, the action, the possibilities in that part of town. This underbelly of the city made a living out of the street life that was so intense.<br /><br />Some of the songs from the original production were not included in the film. We don't know whether this makes sense, but this is not unusual for a Hollywood musical to change and alter what worked on the stage. That original cast included the wonderful Vivian Blaine and Stubby Kaye, and we wonder about the decision of not letting Robert Alda, Sam Levene, Isabel Bigley repeat their original roles. These were distinguished actors that could have made an amazing contribution.<br /><br />The film, visually, is amazing. The look follows closely the fashions of the times. As far as the casting of Marlon Brando, otherwise not known for his singing abilities, Frank Sinatra and Jean Simmons, seem to work in the film. Sky Masterson is, after all, a man's man, who would look otherwise sissy if he presented a different 'look'. Frank Sinatra is good as Nathan Detroit. Jean Simmons, as Sarah Brown, does a nice job portraying the woman from the Salvation Army who suddenly finds fulfillment with the same kind of man she is trying to save.<br /><br />Vivian Blaine is a delight. She never ceases to amaze as Miss Adelaide, a woman with a heart of gold who's Nathan Detroit's love interest. Ms. Blaine makes a fantastic impression as the show girl who is wiser than she lets out to be. Stubby Kaye makes a wonderful job out of reprising his Nicely Nicely Johnson.<br /><br />The wonderful production owes a lot to the talented Abe Burrows, who made the adaptation to the screen. The costumes by Irene Sharaff set the right tone.",1 +9149,"If you're researching UFO facts, then this video is very important. The 'meat' of the video is the comments made by Buzz Aldrin. He is without a doubt from the best of America. Trained to be objective, honest and factual in his reports. Many Astronauts from America of all eras have reported some kind of contact, or UFO observance and there are videos from some of those missions. At the very least something has happened that requires further objective ongoing investigating. I think this testimony from Buzz Aldrin shows that it is possible that other worlds may be interested in our progress. Like all supposed documentary video, this one may be slanted, but it does contain further information and opinions from an accomplished American hero. Those don't come along every day. So the fact that some people aren't interested in details should not detour your from viewing this video. If nothing else, it is interesting and I recommend you watch with an open mind.",1 +1599,"I don't watch soaps. My grandmother still watches that one with the hour glass. I made fun of them it when I was ten (it was so easy).<br /><br />But this movie takes parody and spells it a new way. I found the story pretty damn funny. The fashions of the 80's - shoulder pads, sequins, and polyester - just top it off. The huge hair, the high heels, and the histrionics - what a combination.<br /><br />And all the actors just go to town, chewing up their parts and spitting them out in a big well scripted pile. Sally, Kevin, Elisabeth - wonderful! Whoopi - great! Robert Downey - refreshing to see him back when he had such potential, before the tabloids. And Garry: why did we have to wait so long to see him on film? Leesa Gibbons - hadn't been missing her, but nice to include her as a real life entertainment reporter (and where do you apply for THAT job, anyway?).<br /><br />Admittedly, I could have done without Sally climbing the drainpipe. Lucy Ricardo did it, how many times?, as has every comedienne from Carol Burnett to I don't know who and I'm so done with it now, I could spit peanuts if I had them. Apparently it's what you do when you're being funny in a tall building in New York. I'm just thankful they didn't pull out the flagpole bit.<br /><br />But it was cute, it was funny, it had plot twists, it had an after credits ending before that was common, it had clothes worthy of a second glance, it had a great cast and it's got personal memories for me. Really, what more do you need?",1 +20898,"This movie had good intentions and a good story to work with. The director and screenwriter of this movie failed miserably and created a dull, boring filmstrip that made me feel like I was back in Mr. Hartford's 8th grade Social Studies class -- way back in 67.<br /><br />What a waste, will somebody please take this story and make a real movie out of it - the story deserves it.<br /><br />Every time a scene had potential, all we were left with were a few clichés, combined with black and white footage that they probably got from The History Channel to show the action. Shameful.<br /><br />Ossie Davis was the only bright light in this dull fest. The other acting was incredibly dull - it fit in with the movie well and whomever played the Captain set a new low standard for line delivery.<br /><br />However, if you are willing to accept all the numerous flaws in this movie and aren't concerned with being awed or entertained, but want to learn about the USS Mason, it is worth a watch.",0 +24385,"No redeeming features, this film is rubbish. Its jokes don't begin to be funny. The humour for children is pathetic, and the attempts to appeal to adults just add a tacky smuttishness to the whole miserable package. Sitting through it with my children just made me uncomfortable about what might be coming next. I couldn't enjoy the film at all. Although my child for whom the DVD was bought enjoyed the fact that she owned a new DVD, neither she nor her sisters expressed much interest in seeing it again, unlike with Monsters inc, Finding Nemo, Jungle Book, Lion King, etc. which all get frequent requests for replays.",0 +11933,"Henri Verneuil's film may be not so famous as Parallax View, 3 Days of the Condor or JFK but it is certainly not worse and sometimes even better than these classic representatives of the genre. Action takes place in fictional western state where fictional president has been killed. After several years of investigation, special government commission decides that president was killed by a lone gunman. But one man - prosecutor Volney, played by Yves Montand - thinks there's something more to be investigated and so the film starts. This movie doesn't deal with some exact theories, but it embraces the whole structure of relationship between government and society in today's world. Such film could be made only in the 1970-ies but it will never lose it's actuality. Furthermore, it's even a bit frightful how precise are it's oracles. 10 out of 10.",1 +3498,"1928 is in many ways a ""lost year"" in motion pictures. Just as some of the finest films of the silent era were being made in every genre, sound was coming in and - while reaping great profits at the box office - was setting the art of film-making back about five years as the film industry struggled with the new technology.<br /><br />""Show People"" is one of the great silent era comedies. The film shows that William Haines had comic skills beyond his usual formula of the obnoxious overconfident guy who turns everyone against him, learns his lesson, and then redeems himself by winning the football game, the polo game, etc. This movie is also exhibit A for illustrating that Marion Davies was no Susan Alexander Kane. She had excellent comic instincts and timing. This film starts out as the Beverly Hillbillies-like adventure of Peggy Pepper (Marion Davies) and her father, General Marmaduke Oldfish Pepper, fresh from the old South. General Pepper has decided that he will let some lucky movie studio executive hire his daughter as an actress. While at the studio commissary, the Peppers run into Billy Boone (William Haines), a slapstick comedian. He gets Peggy an acting job. She's unhappy when she finds out it is slapstick, but she perseveres. Eventually she is discovered by a large studio and she and Billy part ways as she begins to take on dramatic roles. Soon the new-found fame goes to her head, and she is about to lose her public and gain a royal title when she decides to marry her new leading man, whom she doesn't really love, unless fate somehow intervenes.<br /><br />One of the things MGM frequently does in its late silent-era films and in its early sound-era films is feature shots of how film-making was done at MGM circa 1930. This film is one of those, as we get Charlie Chaplin trying to get Peggy's autograph, an abundance of cameos of MGM players during that era including director King Vidor himself, and even a cameo of Marion Davies as Peggy seeing Marion Davies as Marion Davies arriving at work on the lot. Peggy grimaces and mentions that she doesn't care for her. Truly a delight from start to finish, this is a silent that is definitely worth your while. This is one of the films that I also recommend you use to introduce people to the art of silent cinema as it is very accessible.",1 +3100,"This is an incredible film. I can't remember the last time I saw a Swedish movie this layered. It's funny, it's tragic, it's compelling, and most of all it's a slice of Swedish small town life. It crushes the clichés, and dwells deeper. It makes you feel connected, not only to the main characters, but to all the characters.<br /><br />Big city girl tracing back to her roots, her small hometown, to celebrate her father's 70th birthday, crossing paths with people she hasn't met in several years. Although the story itself isn't unique, it offers a fresh approach. The center of the story is the relationship between three sisters (on different stages in life), who aren't very close. Or at least don't realize how close they are.<br /><br />One key reason that makes it so easy to connect to the people in this film is the immaculate cast. First, I'm more than pleased about the fact that there are absolutely no so-called 'A-list' Swedish actors in this film. Usually there is a handful of actors that has the ability to find their way into almost every major production in Sweden. This time the production company managed to keep it real by casting actors who actually seem to love their profession. Sofia Helin is probably the first Swedish actress since Eva Röse to prove that you don't need words to convey an emotion.<br /><br />The writing is also very appealing. The dialogue is more than believable, and compared with other Swedish films from the past year or two, it's ahead by miles. Maria Blom controls everything from the beginning, and if you didn't know, you would never guess that this is her first time writing AND directing a feature length film. I can't wait for her next one.<br /><br />Once you start watching this, you really want to see it through.",1 +14370,"This movie makes no sense at all, there are plot holes big enough to drive enormous NYPD vehicles through. The characters do not act in any plausible way whatsoever. I will put my comments in the chat board, but save your time and money, this is stupid. I can't stand when Hollywood spends millions of dollars on flash bang equipment and uses fancy editing and cool music, and does not bother to have a plot that hangs together at even the most basic level. But it is nice to see Denzel W. prevail over the Man, who comes in 3 flavors, Jodi Foster, Mayor Bloomberg and Capt. Von Trapp. There is even a sweet little kid with a video game who is nice.",0 +5214,"A compelling, honest, daring, and unforgettable psychological horror film that touches on the painful experiences of pain caused by rape - ""Descent"" is a film that went under-the-radar due to its lack of distribution because, frankly, the film is so brutal in its depictions, that if it had been released theatrically, it may have met itself to some strong biased hate.<br /><br />The film deserves to be discovered for, not only its dark themes, and not only for its amazing direction and authentic style - but most of all for its performances. Chad Faust is absolutely stunning, bringing enough sickness and enough vulnerability to make one, not relate to, but understand this fractured man with a twisted perspective on his sexuality with not only the women he rapes, but also the fragile insecurities deep within his own self. It's a supporting performance that is so complex, brave, and emotional on Faust's part. And hard to forget.<br /><br />However, the standout is Rosario Dawson, whose performance here is an absolute revelation. A tour-de-force of realistic dramatic tics, and one of the most subtle, yet loud-as-can-be performances in quite some time. While Dawson is seen in some good supporting performances in some great-to-bad films, she proves here she has what it takes to deliver some emotionally sweeping and moving performances, believably and thematically.<br /><br />One of the best films of its year (and 2007 was a strong one) - had this underrated and intelligent film hit theatrical release, I would be screaming praises for it, as well as Dawson and Faust. Too bad it was way too blunt for a widespread appeal. Films like this deserve better!",1 +15076,"I feel like I've just watched a snuff film....a beautifully acted, taut, engrossing and horrible thing! A two hour litany of perversion in the most basic and all inclusive sense of the word, sexual violence and torture, rape, decapitation, incest, corruption, live burial, and abuse, abuse, abuse. No redemption whatsoever. And I WAS entertained. I couldn't stop watching. What does this say about me, about the people who make and act in this sort of thing, and a world that has become so desensitized that eventually real snuff films will be the norm. And I'm neither puritanical nor humorless, I don't try to hide from the existence of darkness, and I definitely have not led a sheltered life, but I am ashamed of myself. AND I'm sorry to see my British cousins dragging the subject-matter sewers the way my own tribe does. It doesn't have to be cozy, but does it have to wallow in vicarious sadism?",0 +19163,"I thought the movie (especially the plot) needs a lot of work. The elements of the movie remains westernized and untrue to the attempt of trying to produce an eastern feel in the movie. I'll give three out of many of the flaws of the movie:<br /><br />First, when Shen told Wendy that he would help her study the history of China, I was really happy that the audience would receive some information about Chinese history; but it turns out that the movie did not exactly show Wendy actually studying Chinese history; yet instead, the movie only shows Wendy practicing the method of remembering what she had studied, which frustrated and put me in dismay.<br /><br />Second, which really bothered me, is how the characters kept mentioning about moon cakes -- moon cakes this and moon cakes that and how good it tastes. Yet they didn't really mention the real significance of it. The only they they talked about that had any relevance to the moon cake was the Autumn Festival, which they did not explain or go in depth. They could have mentioned the myth that correlates with the moon cake -- the Moon Lady. The myth starts of with how there once exists ten suns and each would rotate rising, but one day all ten suns rose up, drying up the land with the rising intense heat; so the Divine Archer, Hou Yi, shot nine of the ten suns, leaving only one sun (there are different versions where the Hou Yi shot the eight out of nine suns). Because of his heroic contribution, he was given the pill of immortality so he could live on forever in case the ten suns do rise up again, but his wife, Chang-O stole it. After stealing it, she fled to the moon, where she met a hare. She then came upon an idea and told the hare to pound the pill into many piece so she could spread the pill all over earth, giving everyone immortality. (There are a few variations of this story but throughout my childhood, I, most of the time, heard about this version). I thought details such as this would make the plot more culturally Chinese oriented.<br /><br />The last thing I would point out is the last battle scene of the movie. The teachers that were possessed by the monks were fighting the Terra-cotta Warriors (the life-like statues of the soldiers) went against the idea of how important Chinese history is to the Chinese. The Terra-cotta Warrors serves as a connection of China's past and it was very westernized (where evil must be killed in anyway possible) that the monks in the movies were willing to destroy that connection. It would be understandable if Wendy, considering she is Chinese-American and doesn't have full Chinese knowledge, had no problem destroying these priceless artifacts.<br /><br />The whole movie was westernized because it seemed that all the monks and Shen want to do is fight... I mean, it's rated TVPG due to violence, which goes against the Confucius thinking of cooperation and harmony. It would seem more accurate that the monks try to avoid violence and try to work things out peacefully before having to resort to violence.<br /><br />All in all, all of or either of the producer, writer, or director did not do their research thoroughly and did a messy and effortless job instead. I would suggest that they either stop airing this movie or that they re-shoot the movie so it contains more accurate information; however, I would give it credit (2 stars) for removing one stereotype of Asians and Asian-Americans of being smart and quiet.",0 +24405,"This movie was physically painful to sit through, maybe because (like many people my age, and younger) I grew up with Dr. Seuss and loved his books - funny, clever, whimsical and subversive at the same time. ""The Cat in the Hat"" sucks all of the interest and spark out of the story, and Mike Myer's performance as the Cat is mostly bewildering. Why the Borscht Belt accent, the unfunny patter, the inappropriate jokes, the charmless costume? I had to go back and re-read the books to see the real problem: the books are SIMPLE. This movie is OVERBLOWN and way, way too long.<br /><br />You don't expect every kids' movie to be Toy Story or The Iron Giant, but this one set a new low. How could Mike Myers need the money?",0 +22510,"In the Fiji islands, the greedy and unscrupulous owner of the Valalola Resort Primal Park invites investors and guests for an opening party of his compound composed of hotel and zoo aiming to find partners for his discoveries. When a bunch of college smalltime thieves puts a virus in the security system to participate in a scavenger hunt, the greatest attractions of the zoo sabretoothes from the prehistoric age developed from DNA found in fossils escape, killing the hosts and guards for pleasure.<br /><br />The incredibly lame and cheap ""Attack of the Sabretooth"" is one of the worst movies I have recently seen. The characters are awful and not funny or pleasant and the story is a terrible Jurassik Park rip-off with a bad collection of clichés. Basically all the lines and situations are poor and stupid, but the winner is when the guard explains that the sabretoothes are bulimic and like to kill for pleasure. My vote is three.<br /><br />Title (Brazil): ""O Ataque do Dente de Sabre"" (""The Attack of the Sabretooth"")",0 +13027,"I am a youth pastor's wife and we took some youth to see this film. We then spent an hour trying to explain it to them. They didn't get it and I didn't enjoy it. It is based on a concept that has run through all three of the major religions of the world (the Bible Code, the Torah Code and the Code in the Koran) and is so questionable as to be laughable. This is not a step forward for Christians in the arts, it is a step forward for those who believe we check our brains at the door.",0 +6149,"This ""tragicomedy"" written by famous Serbian theatre/film writer Dusan Kovacevic is probably one of the best movies ever made in the comedy category. And yet, its appearance of a theatre play transformed into a feature film takes nothing of its value. A masterpiece one should not miss to see (preferably with subtitles, and not dubbed).<br /><br />In an aged bus en route to capital Belgrade, a looming war decides the passengers' behaviour. Two Gypsy musicians sing of their miserable life but also foresee a tragedy to come; their singing both divides and connects stages in this extraordinary road movie (real life Kostic brothers are amateur actors, but together with Stanojlo Milinkovic as farmer who's plowed the road give a real-life performance).<br /><br />The spectrum of characters gives a brilliant image of a society facing a war, an insight into nation's collective person: everyone is aware that war is just about to begin but they try to live their own lives the best they can, hoping that ignorance might avert the tragedy. Using a simple movie language, director Slobodan Sijan paints a picture of society torn by previous war (World War I), but also highlights personal portraits with success: provincialism of a singer, inexperience of the newlyweds, seriousness of the Great War veteran who is on way to visit his recently conscripted son, and gloomy predictions from a man who seems to be a German spy.<br /><br />Brilliant in its narration, with memorable soundtrack (especialy the Gispsy songs) and adjusted atmosphere, well photographed and edited, this feature (Sijan's feature debut) was only an introduction into a series of the directors bitter-sweet comedies that will define Serbian cinematography of the 1980s: ""Maratonci trce pocasni krug"", ""Kako sam sistematski unisten od idiota"", and my other director's favourite ""Davitelj protiv davitelja"").",1 +8413,"This movie was recommended to me by a friend. I never saw an ad or a trailer, so I didn't know Clooney was in it and was not bothered by the fact that his role was so small. I thought the whole cast was suitable, and found the film pretty enjoyable, all in all. The opening scene, with the small crew of bandits standing at the side of the road, looking whipped and haggard, caught my attention immediately. It had a way of telling you, ""don't go away; this won't be boring"", and it really wasn't. It turned out to be an interesting, light-hearted comedy with enough twists and turns to keep you in your seat to the very end, but when the ending did arrive, I felt a little bit cheated....just a little bit. The events kept building up so that you expect them to continue building, but at a point that I can't define, it sort of levels out, making the ending a slight disappointment. I reckon I expected a bigger bang of a climax, but it turned out sort of low-key. If you watch the movie with that in mind and you can live without high dosages of George Clooney, you should find this flick very entertaining and well worth watching. Now I'd like to see the original (Big Deal on Madonna Street), but it's probably a rare find in the United States.",1 +13606,"First of all.....<br /><br />What the hell? Why in the world are they trying to sell a low budget piece of crap on late night TV with the promise of disturbing, offensive sick garbage that any normal real human being with a soul couldn't watch. <br /><br />What the crap is funny about a dog being injured, a grandma getting her head knocked off...a guy getting his hand blown to pieces and two girls going to the bathroom? what in the hell has this world come to that people find comedy in some thing so completely sick. Anyone who thinks this kind of material is funny, should not even be allowed to walk the earth. <br /><br />But from what I hear its not even offensive...so...they promise comedy through demented piles of sick garbage...and they cant even pull that off.",0 +12240,"This is the best piece of film ever created Its a master piece that brought a tear to my eye. Ill never forget my experience watching it. I don't understand why people don't think as I do The dinosaur turns in a performance reminiscent of De Niro in Raging Bull, Pacino in Scarface, and Crowe in Gladiator combined. This should be released on DVD in Superbit format so I can fully enjoy it like it was meant to be enjoyed when they produced and filmed it. Whoppi Goldberg truly turns in the performance of a lifetime as a tough, gritty cop who is against her will teamed with a hot shot dinosaur as her partner then the hi-jinx ensues to say the least. By the way I'm saying the complete opposite of what is true this movie is utter garbage.",1 +4783,"In his first go as a Hollywood director, Henry Brommell whips an enthralling yarn that is all of penetrating relatable marital issues with melancholic authenticity, and lacing such with an equally absorbing subplot of a father-son hit-man business. The film is directed astutely and consists of a wonderfully put together cast as well as a swift, family-conscious screenplay (also by Brommell) that brings life to an otherwise fatigued genre. As a bonus, 'Panic' delivers subtle, acerbic humoran unexpected, undeniably charming, and very welcome surprisethrough its bumbling, unsure-of-himself, low-key star, whose ever-cool state is enticing, especially given his line of work.<br /><br />The forever-great William H. Macy again captures our hearts as Alex, a unhappy, torn, middle-aged husband and father who finds solace in the most dubious of persons: a young, attractive, equally-messed-up 23-year-old named Sarah (Neve Campbell), whom he meets in the waiting-room at a psychologist's office, where he awaits the therapy of Dr. Josh Parks (John Ritter) to discuss his growing eagerness to quit the family business that his father (Donald Sutherland) built. Alex, whose lust to lead a new life is obstructed by the fear of disappointing his dictating father, strikes an unwise fancy for Sarah, which ultimately leads him to understand the essence and irrefutable responsibility of being a husband to his wife and, more importantly to him, a good father to his six-year-old son, Sammy (played enthusiastically by the endearing David Dorfman).<br /><br />Henry Brommell's brilliant 'Panic' is something of a rarity in Hollywood seldom seen (with the exception of 2002's 'Road to Perdition') since its conception in 2000it weaves two conflicting genres (organized-crime, family drama) into a fascinating, warm hunk of movie-viewing that is evenly strong in either directionand it's one that will maintain its exceptional, infrequent caliber and gleaming sincerity for ages to come.",1 +24443,"THE ZOMBIE CHRONICLES <br /><br />Aspect ratio: 1.33:1 (Nu-View 3-D)<br /><br />Sound format: Mono<br /><br />Whilst searching for a (literal) ghost town in the middle of nowhere, a young reporter (Emmy Smith) picks up a grizzled hitchhiker (Joseph Haggerty) who tells her two stories involving flesh-eating zombies reputed to haunt the area.<br /><br />An ABSOLUTE waste of time, hobbled from the outset by Haggerty's painfully amateurish performance in a key role. Worse still, the two stories which make up the bulk of the running time are utterly routine, made worse by indifferent performances and lackluster direction by Brad Sykes, previously responsible for the likes of CAMP BLOOD (1999). This isn't a 'fun' movie in the sense that Ed Wood's movies are 'fun' (he, at least, believed in what he was doing and was sincere in his efforts, despite a lack of talent); Sykes' home-made movies are, in fact, aggravating, boring and almost completely devoid of any redeeming virtue, and most viewers will feel justifiably angry and cheated by such unimaginative, badly-conceived junk. The 3-D format is utterly wasted here.",0 +15399,"here was no effort put into Valentine to prevent it from being just another teenage slasher film, a sub-genre of horror films of which we have seen entirely too many over the last decade or so. I've heard a lot of people complaining that the film rips off several previous horror movies, including everything from Halloween to Prom Night to Carrie, and as much as I hate to be redundant, the rip off is so blatant that it is impossible not to say anything. The punch bowl over poor Jeremy's head early in the film is so obviously taken from Carrie that they may as well have just said it right in the movie (`Hey everyone, this is the director, and the following is my Carrie-rip-off scene. Enjoy!'). But that's just a suggestion.<br /><br />(spoilers) The film is structured piece by piece exactly the same way that every other goofy teen thriller is structured. We get to know some girl briefly at the beginning, she gets killed, people wonder in the old oh-but-that-stuff-only-happens-to-other-people tone, and then THEY start to get killed. The problem here is that the director and the writers clearly and honestly want to keep the film mysterious and suspenseful, but they have no idea how to do it. Take Jason, for example. Here is this hopelessly arrogant guy who is so full of himself and bad with women that he divides the check on a date according to what each person had, and as one of the first characters seen in the film after the brief history lesson about how bad poor Jeremy was treated, he is assumed to carry some significance. Besides that, and more importantly, he has the same initials as the little boy that all the girls terrorized in sixth grade, and the same initials that are signed at the bottom of all of those vicious Valentine's Day cards. <br /><br />It is not uncommon for the audience to be deliberately and sometimes successfully misled by the behavior of one or more characters that appear to be prime suspects, and Jason is a perfect example of the effort, but not such a good example of a successful effort. Sure, I thought for a while that he might very well be the killer, but that's not the point. We know from early on that he is terrible with women, which links him to the little boy at the beginning of the film, but then in the middle of the film, he appears at a party, smiles flirtatiously at two of the main girls, and then gives them a hateful look and walks away, disappearing from the party and from the movie with no explanation. We already know he is a cardboard character, but his role in the film was so poorly thought out that they just took him out altogether when they were done with him.<br /><br />On the positive side, the killer's true identity was, in fact, made difficult to predict in at least one subtle way which was also, unfortunately, yet another rip-off. Early in the film, when Shelley stabs the killer in the leg with his own scalpel, he makes no sound, suggesting that the killer might be a female staying silent to prevent revealing herself as a female, rather than a male as everyone suspects. But then for the rest of the film, we just have this stolid, relentless, unstoppable killer with the emotionless mask and that gigantic butcher knife. Director Jamie Blanks (who, with all due respect, looks like he had some trouble with the girls himself in the sixth grade) mentions being influenced by Halloween. This is, of course, completely unnecessary, because it's so obvious from how badly he plagiarizes the film. The only difference between the killer in Valentine and Michael Meyer's is that Michael's mask was so much more effective and he didn't have a problem with nosebleeds. This stuff is shameless. <br /><br />At the end, there is a brief attempt to mislead us one more time as to who the killer is (complete with slow and drawn out `and-the-killer-is' mask removal), but then we see Adam's nose start to bleed as he holds Kate, his often reluctant girlfriend, and we know that he's been the killer all along. Nothing in the film hinted that he might be the killer until the final act, and these unexplained nosebleeds were not exactly the cleverest way to identify the true killer at the end of the film. Valentine is not scary (I watched it in an empty house by myself after midnight, and I have been afraid of the dark for as long as I can remember, and even I wasn't scared), and the characters might be possible to care about if it weren't so obvious that they were just going to die. I remember being impressed by the theatrical previews (although the film was in and out of the theater's faster than Battlefield Earth), but the end result is the same old thing.",0 +4170,"I am extremely picky about the films I see. I'd heard about Moon Child completely by accident. I've been a fan of L'Arc En Ciel for some time and a fan of Gackt and Mizer only recently.<br /><br />I finally found out the film was being re-released and picked it up without a second thought.<br /><br />Being as critical as I am about films, I will admit, the action scenes can be somewhat hokey at times...but they're meant too be, as another user suggested, it's the quintessential calm before the storm, quoting Gary Oldman from Leon...without getting into the spoilers, the film hit me extremely hard, because you realize that the boundaries of friendship are limitless and as they often say, true friendship is loyalty and like marriage, it's until death do you part.<br /><br />Hyde and Gackt give performances that showcase why they are able to commit such depth to their song lyrics, their passion for music happens onto the big screen and in the process it creates an exemplary film that will reach into one's soul and evoke response emotionally.<br /><br />Upon seeing the film for the first time, I realized it will probably remain in heavy rotation as far as my collection goes. I want to encourage anyone reading this post to pick up the film if you want to get away from the current Hollywood trend in film...this takes an entirely new direction using classic Yakuza film elements and how can you go wrong with a cameo from Ryo Ishibashi of Takashi Miike's ""Audition"" and ""Suicide Club"" fame?<br /><br />Man..I just can't say enough about this film, but I'll stop here.<br /><br />10/10",1 +12429,"We bought the DVD set of ""Es war einmal das Leben"" (German) / ""Once Upon a Time... Life"" (English) for our bilingual kids because everyone loved the ""Es war einmal der Mensch"" (German) / ""Once Upon a Time... Man"" (English) series (us parents had seen it as kids) and it has exceeded even high expectations! The series is very well made, does not show its age, and our kids at various ages really like to watch it. At the same time, they learn things us parents didn't know until way, way later. The series covers everything to do with the human body from organs, all senses, blood, infection, antibodies, and much more in animated 20-25 min episodes. Topics some people may find ""sensible"", such as digestion and reproduction are covered in a tasteful, discreet and child-friendly manner (the reproduction episode starts coverage mainly where the baby starts growing), while still (as typical) informative and fun.<br /><br />Children are usually fascinated with how their bodies work and through the episodes gain an understanding of this in the context of their environment. The format of the episodes switches between the outside world (a family with 2 children) and the inside of the body. For example, in the episode covering infections, the boy cuts himself accidentally and the wound gets infected and the episode covers how the body reacts to this. Similarly, the episodes on the senses, e.g. hearing, seeing, link what happens inside the body to the context of the outside world and the episode on respiration and circulation of oxygen in the blood covers the complete lifecycle including (briefly) where the oxygen comes from (plants).<br /><br />This is one of the best ever children's programs - I would say it's a must see for every family with kids!",1 +15809,"... and how they bore you right out of your mind! The Crater Lake Monster is one of the classic BAD films from the 70's made with no actors of any note, an embarrassing script, woeful direction, and a tireless desire to fuse ""horror"" with light comedy. This movie introduces a paleontologist who finds drawings of an aquatic dinosaur underneath Crater Lake...a meteor falls from the sky, and an aquatic dinosaur of the claymation variety begins to terrorize and eat the inhabitants surrounding Crater Lake. The whole matter is taken care of by Steve our local sheriff. Much of the film - when not showing pools of blood left behind from what we imagine must have been the beast dining - is spent following the bumbling antic of two guys named Arnie and Mitch who run a boat rental place. They try so bad to be funny, that we get lines like, looking at a business sign, Mitch saying to Arnie ""You spelled bait wrong, it's spelled B-A-T-E."" The laughs were rather scarce here. We then see them get drunk together and imagine a tree trunk to be the dinosaur. Laurel and Hardy watch out! The dinosaur looks fake, but the movie is fun in a bad way. And at the very least, the lake is beautiful.",0 +12484,"What I loved about the on-screen adaptation of The Stone Angel is that it stayed so true to the novel! Great film! As an avid reader, I find the worst thing about film adaptations is that the book somehow gets lost in translation. You can tell the Stone Angel team was careful not to let this happen with this film.<br /><br />Ellen Burstyn was an excellent casting choice for the role of Hagar and she is definitely a movie superstar. However, I think the Canadian actress (Christine Horne) chosen to play Hagar in her younger years also did an incredible job that warrants great praise. I haven't seen any of Horne's previous work but I will definitely seek it out after seeing her Stone Angel performance.<br /><br />I heard the Canadian theatrical release of The Stone Angel is going to happen in Spring or Summer 2008. I can't wait to see it on the big screen again!",1 +14778,"I had read a few positive reviews of this film, and was truly surprised at how dreadful the whole thing was. Positioned as some cross between an AIDS-related story and some kind of ""Ghost""/""Blithe Spirit"" tale, this film can't always make it's mind up what it wants to be. <br /><br />Simon and Mark are a gay couple who have an ""open"" relationship - Simon is able to have anonymous (though safe) sex on the side when he wants. Mark is HIV+ and he and Simon don't seem to have a sex life anymore. When Mark dies, Simon - who has made a habit of shutting off his emotions after being rejected years ago by his father - tries to erase his memory and just get on with being a bachelor. Not that his behavior before Mark's death was much different. But Mark returns in ghostly form and foils his various trysts, while getting Simon to open up and admit his true feelings.<br /><br />Unfortunately, Simon is such a selfish SOB, it's impossible to feel any empathy toward him for most of the film. By the time he is supposed to be more sympathetic, it's too late to care. Mark, on the other hand, follows in Demi Moore's footsteps from ""Ghost,"" by crying profusely throughout the movie. <br /><br />There is a bizarre switch in tone after Mark returns. Suddenly we get some lame attempts at humor, a la the TV show ""Bewitched."" But that doesn't last long. Once Simon's emotional health is at stake, the whole thing becomes increasingly mawkish, with amateurish attempts to jerk at your heartstrings. The finale, with a gold-plated muscle-boy angel guiding a tearful Mark to heaven while a chastened, grief-stricken Simon waves goodbye is just stupefying, chiefly because it isn't intentionally funny.",0 +17259,"I am a VERY big fan of Jenna Jameson, but this movie is horrible. At the time Jenna Jameson was married to Brad Armstrong and he was the director of this film and Jenna was the hottest porn star ever. So, of course, Brad tried to make as much money as he could off her by making this big budget porn film. Now I know why they don't make big budget porn movies anymore. In a fantasy world, porn stars could act, but this is the real world and they can't act. That's why there porn stars, if a women as beautiful as Jenna could act, then she would have tried to go into mainstream movies instead of porn. Just because your beautiful doesn't make you a movie star. A fine example of this is Traci Lords, when she was a teen thru her 20's she was one of the most beautiful, sexy women on earth. She made her move into low budget mainstream films and couldn't act. Where is she now? I gave it a 2 instead of a 1 rating just because Jenna is so hot, but there are better movies she has made then ""Dream Quest"". Come on Jenna, we don't want to hear you talk, as much as we want to see you have sex. Also, you Jenna, would have a lot more fans and more money in your bank account if you would have done anal on film.",0 +23997,"This review also contains a spoiler of the first movie -- so if you haven't seen either movie and want to but don't want the spoilers, please don't read this review!<br /><br />While this movie is supposed to be about Christian and Kathryn meeting for the first time, the movie is a poor copy of the first Cruel Intentions. The actors that they had portray Ryan Phillippe's Christian and Sarah Michelle Gellar's Kathryn are very poor substitutes indeed. Neither can pull off the smarmy, snooty rich-kid attitude that the original actors did. It's absolutely appalling that some of the dialog was verbatim -- not so much between Christian and Kathryn, but if you listen closely enough you'll recognize it. There are also inconsistencies in the plot - if this were truly the first meeting of Christian and Kathryn, then why is it that Christian fell in love with a girl at the end of the movie? He supposedly was supposed to be in love for the first time in the original movie (with Reese Witherspoon's character).<br /><br />Also, the tie-in with the photography/""You could be a model"" comment at the end was totally lame and didn't add anything at all. Overall, this movie was a waste of time. I can't believe they made a Cruel Intentions 3.",0 +7884,"Though this series only ran a season, it has stayed with me for 20 years. It was by far and above my all time favorite cartoon ever. I would give nearly anything to have it on DVD or whatever format I can get. If you find any means of seeing this series I suggest you take full advantage. This series was the first one (in my opinion) that had a truly coherent storyline that spanned across multiple episodes. It also made me truly care about the characters and what happened to them. Heck the character Goose actually scared me sometimes. He was just that odd at the time. Also the leader of the group reminds me a lot of a combination of Clint Eastwood/Tommy Lee Jones. If anyone has any way of contacting the creator/holder of the rights to the series and can get them put out on DVD please by all means do so!!!",1 +6517,"The title of this film is taken from a party game called ""Seven Minutes in Heaven."" The game was popular among my husband's friends when he was in junior high school in Brooklyn, NY, and he describes it as something like ""Spin-the-Bottle,"" ""Lifesaver Relay,"" and other preteen kissing games. According to the rules, a boy's name and a girl's would be drawn, and the chosen ones ordered to get into a dark closet together and to stay there for seven minutes. In the meantime, there would be speculation among party guests as to whether or not the two had the nerve to hold hands, embrace, and/or kiss each other in the privacy of the closet. At the end of seven minutes, the game leader would say, ""Time's up"" or knock on the closet door, and the couple would emerge from the closet. After being quizzed by the other guests, the couple would have to admit what they had done during their ""Seven Minutes in Heaven."" Then other couples would be chosen to enter the closet until all the guests had participated. The couple who admitted to doing the most would be the winners of the game.<br /><br />Such games have served as social ""ice-breakers"" for children and teens, but they can be embarrassing and intimidating to shy individuals. The film has been given this title because it deals with the teens' first experiences with crushes and romantic love.",1 +3578,"I have no idea what people are complaining about. I saw this movie yesterday and I really liked it. Stone once again delivered a great character. She was just as good as she was in the first Basic Instinct. She still has those smart but tricky answers. Although Sharon may be 48 years old... she looks amazing! I don't care if she's as fake as a Barbie. She looks good and that's that. Basic Instinct 2 gives you everything you want from the first. Sex, violence, and a great ending that will leave you thinking and talking about it for hours! Half the people commenting on this movie haven't even saw it. So don't listen to them.",1 +20842,"Well, maybe the PC version of this game was impressive. Maybe. I just finished playing the PS2 version and it's pretty much a complete mess.<br /><br />There are a couple elements that are okay or promising. I'll mention those first because it will be over quickly. First, the idea of a historical GTA-like game is a great one. The game Gun was a historical GTA-like game and unlike Mafia, Gun was excellent. I'd love to see a game set during Mafia's era done right. Next, the storyline is well written. The story makes sense, it has dramatic arcs, it uses an unusual device (with much of the game being a backstory) and it's interesting. Finally, some of the graphics--especially those used during cutscenes--are impressive. Mafia's designers seemed to focus on getting the graphics right in the places where GTA skimped on that effort, especially the characters. Unfortunately in many other areas, the graphics kinda stink, and I'd much rather have excellent gameplay than impressive-looking characters.<br /><br />The gameplay is what sinks this title so low. First off, the controls and camera absolutely suck. That has to be the first focus of any game developers. You can't release a game where the controls and/or camera suck. Number one, there's no reason that the player's character, Tom, can't have his full range of motion controlled by the left analog stick. Unless it's absolutely necessary, and it hardly ever is, I hate the set-up where the left stick moves the character in a ""strafing"" way and the character can only turn using the right analog stick. Here, it's not only unnecessary, it makes most of the simplest actions a challenge. For example, Tom has to climb on a couple missions. But the game is designed so poorly that you have to frustratingly keep manipulating both the right analog stick and the camera, and then press L1 every time you need to climb, or Tom will descend instead.<br /><br />Next, I've never seen a worse fighting system. The first problem is that you can't auto-aim or lock on to any targets. At one early point, the game seems to tell you that you can use L2 or R2 to lock on to targets, but that never worked. So to focus on any enemy, you have to struggle with the stupid right analog stick and try to keep adjusting both the character's orientation and the camera, which tends to drift to the wrong angle or make Tom disappear all the time. By that time, you're probably getting pummeled or shot to death.<br /><br />Next, if you're touching or almost touching an enemy--and that's certainly going to be the case for hand to hand combat or when using melee weapons, the fighting system--which primarily consists of tapping or holding R1, is completely useless. Enemies can pummel you almost in a bear hug, but you just can't move unless you back off. So close fighting tends to consist of you yanking on the left analog stick, yelling at the character to move away, which it won't do 50% of the time, then tapping R1 as much as you can before the enemy gets too close again and makes R1 useless. And if the enemy changes their angle to you in the meantime, you're also going to struggle with the right analog stick to get your character oriented in the right way and to get the camera in position so you can see anything. By that time, you're probably getting pummeled or shot again, and your only option will be to try to move the character away again. My fights often consisted of making Tom run circles around an area like a comedy film, hoping that I could gain enough time to struggle with the analog stick and get a couple shots in before being at the AI's mercy again. So much for realistic fighting.<br /><br />And the same problems and more exist when trying to fight with guns. If you're touching someone, half the time the controller just won't allow you to fire off a shot, yet they can still riddle you full of holes. Additionally, there's no auto-aim, and the aiming system is ridiculously sensitive, even with the sensitivity set to zero under Options. Gunfights tend to consist of you hopelessly trying to aim or move away while the enemy puts shot after shot into you. Luckily or not, damage seems to be recorded almost randomly. It can take one to ten shots or more to incapacitate any character, and there's no rhyme or reason to it. You can put five shots into an enemy's head and near point blank range and they'll still return fire and hurt you. Yet, the game designers seemed to care enough about realism than they built a recoil into your aiming system, so after shots with powerful enough guns, your aim will float off target, and you'll have to fight with it again.<br /><br />As for the celebrated graphics, except for the characters and textures that you're close to, they're actually pretty disappointing. The distance always seems mostly empty, and there are often expanses of flat colors and textures nearby when you're driving. The city wasn't very well designed. It's not varied enough, and there aren't many interesting things to see or do. The cars seem slow and they're difficult to control. They also all drive about the same. Some have mentioned the music, but that was also pretty nondescript. A much better job could have been done on that end. Also, as many others have mentioned, the load times are ridiculous and constant. They tend to be over a minute long, and they occur between and in the middle of everything--even races.<br /><br />Overall, the Mafia port to PS2, at least, seems to have been very rushed. The game feels and plays like an incomplete hack job.",0 +1092,"One question that must be asked immediately is: Would this film have been made if the women in it were not the aunt and cousin of Jacqueline Lee Bouvier Kennedy Onassis?<br /><br />The answer is: Probably not.<br /><br />But, thankfully, they are (or were) the cousin and aunt of Jackie.<br /><br />This documentary by the Maysles brothers on the existence (one could hardly call it a life) of Edith B. Beale, Jr., and her daughter Edith Bouvier Beale (Edie), has the same appeal of a train wreck -- you don't want to look but you have to.<br /><br />Big Edith and Little Edie live in a once magnificent mansion in East Hampton, New York, that is slowly decaying around them. The once beautiful gardens are now a jungle.<br /><br />Magnificent oil painting lean against the wall (with cat feces on the floor behind them) and beautiful portraits of them as young women vie for space on the walls next to covers of old magazines.<br /><br />Living alone together for many years has broken down many barriers between the two women but erected others.<br /><br />Clothing is seems to be optional. Edie's favorite costume is a pair of shorts with panty hose pulled up over them and bits and pieces of cloth wrapped and pinned around her torso and head.<br /><br />As Edith says ""Edie is still beautiful at 56."" And indeed she is. There are times when she is almost luminescent and both women show the beauty that once was there.<br /><br />There is a constant undercurrent of sexual tension.<br /><br />Their eating habits are (to be polite) strange. Ice cream spread on crackers. A dinner party for Edith's birthday of Wonder Bread sandwiches served on fine china with plastic utensils.<br /><br />Time is irrelevant in their world; as Edie says ""I don't have any clocks.""<br /><br />Their relationships with men are oh-so-strange.<br /><br />Edie feels like Edith thwarted any of her attempts at happiness. She says ""If you can't get a man to propose to you, you might as well be dead."" To which Edith replies ""I'll take a dog any day.""<br /><br />It is obvious that Edith doesn't see her role in Edie's lack of male companionship. Early in the film she states ""France fell but Edie didn't.<br /><br />Sometimes it is difficult to hear exactly what is being said. Both women talk at the same time and constantly contradict each other.<br /><br />There is a strange relationship with animals throughout the film; Edie feeds the raccoons in the attic with Wonder Bread and cat food. The cats (and there are many of them) are everywhere.<br /><br />At one point Edie declares ""The hallmark of aristocracy is responsibility."" But they seem to be unable to take responsibility for themselves.<br /><br />This is a difficult film to watch but well worth the effort.",1 +2034,"Despite gorgeous and breathtaking animation, this is probably one of most uninspiring Disney films I've seen, and I don't slam Disney films very often. Spirit is a wild stallion who repeatedly gets captured, either by the cavalry or by Indians, both of which try to ""break"" him. Spirit ends up forming a bond with the Indian, and that, in a nutshell, is the story. With exception to the beautiful animation of the horses, neither I or my five year old were very inspired or excited by this film. It's ironic that it's titled ""Spirit"", as spirit is what this film could have used a bit more of. An extra point was given for the soundtrack, which was enjoyable, with songs by Bryan Adams and Hans Zimmer. And although this film is rated G, you will still probably have to end up explaining what ""breaking a horse"" means to your five year old. I did.<br /><br />",1 +3068,"No-nonsense Inspector Hollaway (a solid turn by John Bennett) investigates the disappearance of a famous thespian and uncovers the wicked past history of a creepy old house. First and most mundane tale, ""Method for Murder"" - Successful author Charles Hillyer (nicely played by Denholm Elliott) is haunted by images of the murderous fiend he's writing about in his latest book. Although this particular outing is too obvious and predictable to be anything special, it does nonetheless build to a real dilly of a genuine surprise ending. Second and most poignant anecdote, ""Waxworks"" - Lonely Philip Grayson (the always outstanding Peter Cushing) and his equally lonesome friend Neville Rogers (the splendid Joss Ackland) both become infatuated with the beguiling wax statue of a beautiful, but lethal murderess. Third and most chilling vignette, ""Sweets to the Sweet"" - Quiet, reserved and secretive widower John Reid (a typically terrific Christopher Lee in a rare semi-sympathetic role) hires nanny Ann Norton (the fine Nyree Dawn Porter) to take care of his seemingly cute and harmless daughter Jane (a remarkably spooky and unnerving performance by the adorable Chloe Franks). This stand-out scary episode is given a substantial disturbing boost by the exceptional acting from gifted child actress Franks, who projects a truly unsettling sense of serene evil lurking just underneath a deceptively sweet and innocent angelic veneer. Fourth and most amusing yarn, ""The Cloak"" - Pompous horror movie star Paul Henderson (delightfully essayed to the haughty hilt by Jon Pertwee) purchases a mysterious cloak that causes him to transform into a vampire whenever he wears it. This item makes for good silly fun and further benefits from the awesomely pulchritudinous presence of the luscious Ingrid Pitt as enticing vampiress Carla. Director Peter Duffell, working from a deliciously macabre and witty script by noted horror scribe Robert Bloch, maintains a snappy pace throughout and does an ace job of creating a suitably eerie atmosphere. Kudos are also in order for Ray Parslow's crisp cinematography and the shuddery score by Michael Dress. Highly recommended to fans of omnibus fright fare.",1 +9693,"After reading some quite negative views for this movie, I was not sure whether I should fork out some money to rent it. However, it was a pleasant surprise. I haven't seen the original movie, but if its better than this, I'd be in heaven.<br /><br />Tom Cruise gives a strong performance as the seemingly unstable David, convincing me that he is more than a smile on legs (for only the third time in his career- the other examples were Magnolia and Born on the Fourth of July). Penelope Cruz is slightly lightweight but fills the demands for her role, as does Diaz. The only disappointment is the slightly bland Kurt Russell. In the movie, however, it is not the acting that really impresses- its the filmmaking.<br /><br />Cameron Crowe excels in the director's role, providing himself with a welcome change of pace from his usual schtick. The increasing insanity of the movie is perfectly executed by Crowe (the brief sequence where Cruise walks through an empty Time Square is incredibly effective). The soundtrack (a distinguishing feature of a Crowe movie) is also sublime.<br /><br />You will be shocked and challenged as a viewer. The plot does seem a little contrived but the issues explored behind it are endlessly discussable. The movie isn't perfect, but its a welcome change of pace for Cruise and Crowe and for those raised on a diet of Hollywood gloss, should be a revelation.",1 +4305,"Surprisingly not terrible and well animated for one of Disney's straight to video throw away sequels. Like the previous sequel (The Lion King 2) I was glad that Disney brought back most of the original voice actors which makes a big difference and they kept a good level of traditional animation. The plot wanders around for a while but we are distracted by an unending string of jokes ranging from hilarious to dull. To break up the detached plot and jokes they gave us some silly musical sequences, which much like the jokes, range from entertaining to a quick trip to the fridge. For the most part the MST3K-like moments are bland and full of untapped potential and really don't add a whole lot to the movie other than to act as a vehicle for an hour-long flashback. The new characters are at least likable, and the old characters are out doing their thing so I can't fault them there. Overall this movie in not bad and it makes for a nice frivolous filler between the more serious Lion King titles.",1 +17491,"Here's a review for people like me. This movie sucks from beginning to end. I threw popcorn at the screen and resorted to entertaining myself a la MSF2000. The plot hinges on chance happenings and relies on stupidity from people who are supposed to be smart. The lead falls for a con man and it doesn't occur to her that she might get conned????? And she's rich???? And she's a famous psychologist????? COME ON, people. She enters the bar at just the most convenient moment when everyone is assembled to talk about conning her??? That was so staged that it felt like slap in the face to even half-witted movie viewers. Rain man would have been insulted. I also admit that I despise Mamet dialogue with the kind of passion that some people have for meat-eaters, war-starters, and fur-wearers. My hatred is so complete that it defies logic. But I'll give it a shot. That it's not supposed to sound real is fine. I don't care. It's that everyone talks the SAME. Mamet can't create characters; all he can do is foist his voice on us relentlessly through different actors. No wonder his actors are so wooden. They're confused about everyone being the same character. (However, his later films do improve.)",0 +16308,"I would have enjoyed this movie slightly more had not been for Jason (Herb) Evers constant harping on experiment. Many early reviewers of The Seven Samurai accused Toshiro Mifune of overacting. Yet, as more and more critics viewed that film they saw it as being purposefully done. Jason Evers is obviously not Toshiro Mifune, and his overacting is exactly that.<br /><br />Most of the actors in this B classic were rather good actors, minus Evers and the showgirls. If you watch this movie, you would have noticed Evers shouting almost every line, that is until he is smoking and blowing the smoke coolly out his nose. <br /><br />The special effects were par for the course in a B movie such as this one. In hindsight, there isn't much that stands out in my mind as fantastically good or bad for this movie.",0 +20599,"Absolutely laughable film. I live in London and the plot is so ill-researched it's ridiculous. No one could be terrorised on the London Underground. In the short time it is not in service each night there are teams of maintenance workers down there checking the tracks and performing repairs, etc. That there are homeless people living down there is equally unlikely. Or that it's even possible to get locked in and not have access to a mobile phone in this day and age...<br /><br />The worst that's likely to happen if someone did find themselves there after the last train is that they might get graffiti sprayed on them. Although this has been coming under control due to the massive number of security cameras on the network, another thorn in the side of the story. (Remember in London as a whole we have more security cameras than any other city in the world.)<br /><br />If it had been set in a city I am not familiar with perhaps I could have enjoyed it through ignorance, but it's not a high quality film so I just couldn't bring myself to suspend my disbelief and try and enjoy it for the banal little tale that it is.<br /><br />I would have given it 0/10 if such a rating existed! Possibly the most disappointing film I ever thought I would like.",0 +15484,"Oh dear. Some of the best talent in British TV made this serial, and so I can only assume that they were working under incredible time pressure, and had to settle for first takes of many scenes.<br /><br />There ARE some frightening scenes in this Highland mystery (mostly when the ""monster"" attacks and we see it from his point of view), but I'm afraid that I found most of the story unintentionally funny ! Such as the moment when the hero discovers a dismembered corpse on a golf course: Oh look, there's a hand ... oh, and there's another hand over there ... hmm this is a bit puzzling ...<br /><br />For many years fans of British cult TV shows campaigned to have this serial released on VHS or DVD, but the BBC always said no. Now I think I understand why !",0 +6526,"Believe it or not, Inspector Gadget's Last Case is what got me hooked on the whole Gadget thing.<br /><br />My name is Miriam and I am twelve years old, so obviously I wasn't around when Inspector Gadget was at the top of his career. Sure, I'd heard of him, but I didn't really know him.<br /><br />While reading, note that I NEVER SAW THE ORIGINAL SERIES (I would if it came on!). This is just about the only Gadget thing I've ever watched (even though I am now obsessed) and I will be focusing on what I liked about it since everyone else is so negative. For all you pessimists, I've got some cons down there, too. =P First off, for a childish sense of humor, you could deem this movie pretty funny. I thought it was, so sue me. I also thought the animation and character designs were good, and I'm also happy there was more Gadget in it, since he's my favorite character. (I do NOT like Penny.) Then there was Claw (his voice was awful, though) and the Madcat; I thought they were done fairly good too. Gadget's idiocy seemed pretty well in place, if not a bit exaggerated (i.e. sucking his hat-hand thing's thumb. Would make a good screen shot, though. =P) Oh, and I liked the song that ran in the credits. Yes, I am strange.<br /><br />And, like all movies, there are some negatives, too.<br /><br />Talking cars? What's up with that? You can tell this was aimed at younger boys. That wouldn't bother me quite so much if there wasn't the fact that the cars basically saved the day. I would have much preferred if Penny and Brain had taken their place. And, apparently, Gadget loved his car more than would be called natural. A bit weird, to say the least.<br /><br />Oh, and the Chief was downright mean to Gadget. I mean, sheesh, yeah, he wasn't always the most cheerful of people, but he didn't HATE Gadget, from what I've read. Like the Inspector, his personality was exaggerated.<br /><br />Well, that's pretty much all I have to say about this movie. I thought the animation made up for the car-centered plot and that it was overall pretty decent; more so than the live-action Gadget films (butchered, butchered, BUTCHERED!) at least. Maybe I'm just biased because this is what got me into Gadget in the first place, or maybe my mind is twisted, or maybe I'm just odd, but I really liked this movie, even if I'm the oldest it's recommended for.",1 +20964,"The only reason I rented this was because of the article in Fangoria Magazine. The article made this film look interesting. Well, it isn't. This was a very boring, amateurishly written and directed movie. All the actors in this movie are awful, except Faye Dunaway, who is always a joy to watch. But too much time was focused on Gina Phillips and her ridiculous encounters with ravens and Duilio Marzio. Marzio has such a thick Argentinean accent, you can only understand every couple of words he says. Also on hand is Nicholas Pauls, who plays the ultra-bland love interest to Gina Phillips. The bottom line: this movie is not scary. There is only one good scene and that is the last five to ten minutes of the movie. I would have given this one star, but I gave it three just because I like Faye Dunaway so much. But even she wasn't that great in this.",0 +19022,"Easily the worst movie I have ever seen in my life. Direction : none. Story: pathetic. Screenplay : that will be a good idea. There is a lot of gratuitous graphics, all of pathetic quality. Preserve your sanity, dont ever see this movie !",0 +2870,"I love this movie very much i watched it over and over. I don't see why anyone would think this movie wasn't good. Maybe you have seen better or whatever it is i personally love it. It is one of my favorite movies and I am not Hindi at all but i do love it. It might be a little like ""Pretty Woman"" but i haven't seen that and I don't think it's any better than this. I don't know why you are all trashing about it but maybe you have a good reason but I think i have said it enough but i absolutely love this movie, and to those who say it's not good at all well then I wonder why you watched it and what movies you consider good. As for everyone else that i watched it with they enjoyed it too so it surprises me that this many people don't like it. As for Rani Mukherjee ( i think thats how you spell her last name) she is very beautiful and my favorite actress ever!",1 +7861,"I remember when I first saw this short, I was really laughing so hard, that like with a lot of other films that I have seen, no sound came out! Curly is really great at ""singing"" opera in this one, I am surprised that he did not consider a career as a professional singer, because he was really good! <br /><br />If you noticed, this was filmed near the end of Curly's career as a Stooge, you could really tell he had changed, because he had lost weight and was thinner, his voice was deepening, his face was getting lined with wrinkles, though he still could pull it off, he looked like he was fifty at the age of forty. This was because he was suffering many minor strokes before his big one that ended his career. Be he still managed to pull it off in his last ones! <br /><br />If you don't mind the fact that Curly was really getting very ill at this point, this is actually one of their funniest shorts. I know that I didn't mind the fact that Curly was really changing, because I still thought that he was great! <br /><br />10/10",1 +7047,"The problem with the 1985 version of this movie is simple; Indiana Jones was so closely modeled after Alan Quartermain (or at least is an Alan Quartermain TYPE of character), that the '85 director made the mistake of plundering the IJ movies for dialog and story far too deeply. What you got as a finished product was a jumbled mess of the name Alan Quartermain, in an uneven hodge podge of a cheaply imitated IJ saga (with a touch of Austin Powers-esquire cheese here and there). <br /><br />It was labeled by many critics to have been a ""great parody,"" or ""unintentional comedy."" Unintentional is the word. This movie was never intended to be humorous; witty, yes, but not humorous. Unfortunately, it's witless rather than witty.<br /><br />With this new M4TV mini-series, you get much more story, character development of your lead, solid portrayals, and a fine, even, entertaining blend. This story is a bit long; much longer than its predecessors, but deservedly so as this version carries a real storyline and not just action and Eye Candy. While it features both action and Eye Candy, it also corrects the mistake made in the 1985 version by forgetting IJ all together and going back to the source materials for AQ, making for a fine, well - thought - out plot, and some nice complementing sub-plots. <br /><br />Now this attempt is not the all out action-extravaganza that is Indiana Jones. Nor is it a poor attempt to be so. This vehicle is plot and character driven and is a beautiful rendition of the AQ/KSM saga. Filmed on location in South Africa, the audience is granted beautiful (if desolate) vistas, SA aboriginal cultures, and some nice wildlife footage to blend smoothly with the performances and storyline here.<br /><br />Steve Boyum totally surprised me with this one, as I have never been one to subscribe to his vision. In fact, I have disliked most of his work as a director, until this attempt. I hope this is more a new vein of talent and less the fluke that it seems to be. <br /><br />This version rates a 9.8/10 on the ""TV"" scale from...<br /><br />the Fiend :.",1 +22703,"A family traveling for their daughter's softball league decide to take the 'scenic route' and end up in the middle of nowhere. The father is an avid photographer, and when he hears of an old abandoned side show in the town, he decides to take another detour to take some photographs.<br /><br />Of course, the side show is filled with inbred freaks, who promptly kidnap the women and leave the young son and father to fend for themselves.<br /><br />The only cool thing about this film is how the family actually fights back against their inbred captors. Other than that, there's nothing worthwhile about the film.",0 +3113,I saw this film by chance on the small box. It has a fantastic and chilling scene about poisonous gas. A lot about fanatical patriotism. A bit of eroticism. I can't believe it's still waiting for 5 votes!!,1 +6346,"One of the first of the best musicals, Anchors Aweigh features several memorable musical sequences, such as Kelly dancing with Jerry the mouse, Kelly dancing with 7-year-old Sharon McManus, Sinatra singing with Jose Iturbi playing piano, Kathryn Grayson singing with Iturbi conducting, and much more. The Technicolor is perfect, with some innovative camera work such as seeing a piano played from beneath, through transparent keys, and Grayson singing, seen through the finder of another camera. The plot is thin, but you get involved from Kelly's & Sinatra's enthusiasm. Sailor's on leave, they have to take home a runaway boy (Dean Stockwell) and Sinatra falls for his aunt. To set him up with the aunt (Grayson), Kelly suggests that Sinatra can get her an audition with Jose Iturbi. But Sinatra's young and naive in this one, and in his own sung words falls in love too fast. While they're trying to contact Iturbi, who's never available, he starts to fall for another girl (Barbara Britton); but Kelly's now falling love with Grayson. Anchors Aweigh is most often remembered for the combination live-action / cartoon sequence with Tom and Jerry, but there's a lot more here that's worth a look. I'm giving it nine stars because, while it's not quite as good as the best musicals - Singin' In The Rain, The Music Man, Oklahoma - it is one of the first of their class of Technicolor big productions (perhaps Meet Me In St. Louis was the first), and better than most others.",1 +2764,"First, nobody can understand why this movie is rated so poorly. Not only is this the first real horrific movie since a very long time for me who am pretty hard-boiled with a decades long experience of horror starting with driving through dark rides (ghost trains) as a child. Second, the main actress Cheri Christian has a face that lets you hope she will be the leading actress in major pictures of the future. Third, this woman is that tremendously beautiful that I suggest the directors retire all those Cameron Diazes, Eva Mendezes, and how ever the names of these ephemeral bulb-lights are. Mrs. Christian is not a light, but a sun.<br /><br />However, ""Dark remains"" is also of considerable metaphysical importance. They idea that photographs shows creatures of the intermediary reign between reality and ""imagination"" that are not visible with one' own eyes is not new. But I have never seen in a movie before that those creatures are visible on the photographs only for certain people and only to certain times. This means that the photo is not just an iconic picture of reality (by which reality turns into a sign), but becomes an alternative form of reality which can change as the ""real"" reality can. Being a sign, the changing of the picture means that it influences the photographed objects, i.e. the sign behaves like an object. Now, in our usual world of perception, it is common that objects change signs. F.ex., if someone grows a bird, his photograph will show him with beard, not without, as it did before. But the opposite, the changing of objects by signs would imply that the photo with beard is first and only then the beard grows on the man. This is, very simply expressed, the case that happen with the photos taken by the main character in the prison, in this movie. This is new, and we must be thankful for everything new in horror movies which usually just repeat and reorder effects and features that are already well-known, mostly since the silent time.",1 +17394,"Great movie - especially the music - Etta James - ""At Last"". This speaks volumes when you have finally found that special someone.",0 +7301,"This movie really surprised me. I had my doubts about it at first but the movie got better and better for each minute. <br /><br />It is maybe not for the action seeking audience but for those that like an explicit portrait of a very strange criminal, man, lover and husband. If you're not a fan of bad language or sexual content this really is not for you. <br /><br />The storyline is somewhat hard to follow sometimes, but in the end I think it made everything better. The ending was unexpected since you were almost fouled to think it would end otherwise. <br /><br />As for the acting I think it was good. It will not be up for an Oscar award for long but it at least caught my eye. Gil Bellows portrait of a prison man is not always perfect but it is very entertaining. Shaun Parkes portrait of Bellows prison mate Clinique is great and extremely powerful. On the downside I think I will put Esai Morales portrait of Markie.<br /><br />Take my advice and watch this movie, either you will love it or dislike it!",1 +10359,"Gypo Nolan (Victor McLaglen) is as poor as anyone on Earth. Living in 1920s Ireland, Gypo and his fellow Irishmen are part of an underground rebellion against the oppressive Brits. One particular rebel, wanted for murder by the English, arrives back into town secretly. He thinks he can trust his friend Gypo, but the £20 reward proves too tempting. Gypo gets his friend killed and sinks into a pit of despair and drunkenness. Meanwhile, the other Irish rebels are searching for the informer. Right away, Gypo, with money burning a hole in his pocket, is their main suspect, but they, who are his friends, don't want to believe it. The story of The Informer is simple in its plot, but complex in its moral and emotional issues. It's easily one of John Ford's most emotionally involving films. What Gypo did was wrong, but we can certainly understand his motives. We also understand his sorry character, and there's a lot of sympathy that arises for him. The script is very suspenseful, as well. It's the kind of suspense where we are pretty sure we know how everything will end up, so we have to grit our teeth and bear along with it. The acting is remarkable. Victor McLaglen, who acted in many of Ford's films, probably gave his best performance here (and won an Oscar for it). Every other performer in the film deserves his or her kudos. In addition to an amazing script and acting, The Informer is one of John Ford's most expressionistic films. I love the darker side of Ford. In its mood, as well as in its themes, The Informer reminds me of two of my other favorite Ford films, The Long Voyage Home (1940) and The Fugitive (1948); it's also a bit similar to The Grapes of Wrath (1940) in these respects. 10/10.",1 +12304,"Great softcore sex, revealing and sexy, and plenty of it. Ignore the ignoramus who doesn't realize that raunchy IS sexy if done the right way. If you ""erotic,"" go watch that Red Shoes Diary junk. If you want hot and exciting softcore done properly, this is the movie to watch. If you like the more explicit Skinemax films, you'll like this one. Great softcore sex, revealing and sexy, and plenty of it. Ignore the ignoramus who doesn't realize that raunchy IS sexy if done the right way. If you ""erotic,"" go watch that Red Shoes Diary junk. If you want hot and exciting softcore done properly, this is the movie to watch. If you like the more explicit Skinemax films, you'll like this one.",1 +13867,"In sixth grade, every teacher I had decided it would be a great idea to make this movie the curriculum for an entire semester. Every class had something to do with this terrible show. We watched it in English and wrote in journals as if we were one of the characters. In math we talked about charts and other sea crap. In science we talked about whales (which was actually somewhat interesting, so this wasn't a 100% waste of time). All day everyday was torture. Not only that, but they would subject us to this horror twice a day by making us watch it in study hall as well. I could see if this was a new series or something, but it was, like, '93. I'm still trying to block this out.",0 +24888,"I suppose that any novel that's as much of a downer as Moby Dick would not find much favor with Depression era audiences who had enough of their own troubles. But any resemblance to the classic Herman Melville novel is a pure coincidence. <br /><br />In fact half of the film is a prequel to the main story as we know it, not that too much of it was kept for the film. We first meet Ahab Creely (he's got a last name and a brother) as one happy go lucky soul with two legs and intentions to marry Joan Bennett who is Father Mapple's daughter. That brother Derek, played by Lloyd Hughes, also wants to marry Bennett.<br /><br />John Barrymore is Ahab in an over the top performance. Barrymore had not quite mastered the sound cinema and he gave out with all the silent era histrionics plus a stage voice that would have shaken the rafters of any movie theater this film was playing in.<br /><br />We see Ahab lose his leg to the great whale Moby Dick and I have to say the amputation scene was pretty gruesome. Of course this was all before the Code. Still I'm sure 1930 audiences shuddered.<br /><br />After that the story of Ahab's hunt for the whale that he thinks made him unsightly in Joan Bennett's eyes. That is not exactly Melville's motivation, in fact there are no women characters in Moby Dick as he wrote it.<br /><br />One of the things Melville did was invest the crew of Ahab's ship the Pequod with personalities. Other than Queequeg the cannibal harpooner the names are there, but not the personalities. Starbuck and Stubbs might as well be Smith and Jones.<br /><br />I'd see this version of Moby Dick strictly for curiosity and nothing else.",0 +17227,"What a terrible movie. The acting was bad, the pacing was bad, the cinematography was bad, the directing was bad, the ""special"" effects were bad. You expect a certain degree of badness in a slasher, but even the killings were bad.<br /><br />First of all, the past event that set up the motive for the slaughter went on for 15 or 20 minutes. I thought it would never end. They could have removed 80% of it and explained what happened well enough.<br /><br />Then, the victims were invited to the ""reunion"" in an abandoned school which still had all the utilities turned on. One of the victims thought this was a little odd, but they dismissed it and decided to break in anyway.<br /><br />Finally, the killings were so fake as to be virtually unwatchable.<br /><br />There is no reason to watch this movie, unless you want to see some breasts, and not very good breasts at that. This movie makes Showgirls virtually indistinguishable from Citizen Kane.",0 +9606,"""Xizao"", is the tale about the clash of modern life and ancient traditions, and its effects on a family in China. Da Ming (Quanxiu Pu), is a businessman who returns home when a letter sent by his brother Er Ming (Wu Jiang) makes him believe that his father Liu (Xu Zhu), has died. He founds that his father is still alive, as well as his old neighborhood and his father old business, the public bathroom.<br /><br />The movie centers around Da Ming's family, and how he has to learn the importance of his father's job, something he always had considered an old tradition that had to die soon. Also, the movie explores his relationship with Er Ming, who is mentally challenged, and the problems of the small community and how the bathroom is a place that purifies not only their bodies, but also their souls.<br /><br />The two main themes of the movie, the family and the problems of progress, are incredibly well handled, and the movie never loses the point it is trying to make, both themes are very good developed and we get a glimpse of Chinese society and customs.<br /><br />The director, Yang Zhang, tells his tale in a simple way, letting the characters characters do the job. It is a very simple approach, but it fits the movie perfectly, and I highly doubt that another style would fit the movie this good. Zhang has enormous potential, as he can tell a story without the aid of visual flare or camera tricks.<br /><br />The acting is outstanding in its naturalistic approach, everyone acts in a very natural way and it almost looks as if they were real persons being filmed. The three lead characters give remarkable performances, and Wu Jiang as Er Ming surely steals the show.<br /><br />Even when the movie could had sticked to a patronizing ""old days were much better"" message, instead it takes an attitude of equilibrium, like saying that progress is good, and we must move on, but we must not forget where we came from, and keep an equilibrium between modern life and the traditions of old.<br /><br />An awesome, and touching film. 8/10",1 +15249,"I don't recall walking out of a movie theater except this once. Not only that, but I was with 7 friends, and we all wanted to go. An uninteresting plot, characters made of clay, violence with no point. I didn't care when the good guys died; I didn't care when the bad guys got it. The fantasy and magic was laid on thick as liver pudding and there was no coherency. In short, fine entertainment if you happen to be spending an eternity in Hell.",0 +20278,"The Film must have been shot in a day,there are scenes where you can see the camera reflections and its red pointer,even the scenery's green light that blends with the actors!!!The plot and the lines are really awful without even the slightest inspiration(At least as a thriller genre movie).Everything that got to do with Poe in the movie,has a shallow and childish approach.The film is full of clise and no thrilling.If you want to watch a funny b-movie for a relaxing evening with friends then go for it you will enjoy it (As I Did) but there's no way to take this film seriously!",0 +5219,"A documentary without a loss for words... ever...<br /><br />Let us assume that the narration is more than a spoof, let us assume it is a commentary on Japanese society. And as this film is as fast paced an absurdist documentary as they come, the constant wordplay, as fast is it goes, and as poorly translated as it is-- in its current festival screener version as seen tonight at the Copenhagen Cinematek-- It is still quite enjoyable. <br /><br />But for the patient, and ONLY the truly patient and open-minded, I'm talking to you Jim Jarmusch fans with ADD relapses, I believe this is a film for you. It's an intelligent film if you allow it to win you over.<br /><br />Quite beautiful, and quite kitsch, and quite Japanese sub-culture. And quite experimental. Static 2D in a 3D world. All in all, Fun for those that want to see a Japanese film that spoofs Japanese food culture. A thumbs up if you're in the mood for something completely different.",1 +21944,"After reading the other reviews for this film I am of the opinion that the high markers are probably paid studio lackeys as the film I saw was absolutely dire, with wooden acting, lacklustre scripting and plodding predictable directing, one of the few plus points has to be the stunning scenery as this film features some stunning backdrops with great sweeping vistas and dramatic skies and wide open prairies, sadly when the most memorable thing in a film is the part featured behind the actors this has to be a warning sign as to the quality of the movie, all in all a thoroughly uninspiring addition to the western genre which even at the very reasonable price it can be obtained on DVD is best to avoid.",0 +19431,"I saw this movie when i was much younger and i thought it was funny. I saw it again last week, and you can guess the result. Some funny parts in it, very few and too long. The beginning is the only thing that is funny if you ask me.<br /><br />If you want a total b-movie this is a good pick, but don't expect too much from aliens dwarf size",0 +3058,"The late, great Robert Bloch (author of PSYCHO, for those of you who weren't paying attention) scripted this tale of terror and it was absolutely one of the scariest movies I ever saw as a kid. (I had to walk MILES just to see a movie, and it was usually dark when I emerged from the theater; seeing a horror movie was always unnerving, but particularly so when it was as well-executed as this one.) When I had the opportunity to see this one several years ago on videotape (which should always be a last resort), I was surprised at how well it held up. Take the terror test: watch it at night, alone, and THEN tell me it's not scary...",1 +14112,"Alright, friends, a serious movie buff is expected to watch all kinds of movie, the bad as well as the good, and this movie put me to the test. I won't mince words. This movie was bad. The story was bad. The acting was bad. The always wonderful Sissy Spacek did nothing to make this movie better. Indeed I asked myself why did I even bother to see this rotten trashy movie? Why did I waste my time and money on something that I suspected would be bad? The answer is, of course, that I am a movie buff and therefore cannot avoid what otherwise should be avoided. I will not waste your time explaining what exactly was wrong with this amateurish movie, except to say that the quality of the acting was, to put it politely, subpaar. A serious movie buff may want to take on the responsibility of watching this movie. Otherwise. stay home, don't waste your time, read a book, take take of chores or have yourself a good sandwich.",0 +13941,"This is a direct sequel to 'The Mummy's Hand' (1940), because the lead character, Stephen Banning (played by Dick Foran) is now thirty years older and is relating the story (with the help of archival footage) to his son's fiancé. There are only two unusual aspects to the film: the early death of Banning, and the presence of Turhan Bey.<br /><br />Lon Chaney as the mummy Kharis gets top billing, though given the nature of his role, he has little more to do than limp along or thrash his arms about. There's nothing scary about his presence, except for his attempt to carry off the fiancé, Isobel (Elyse Knox). Dick Foran gets second billing, but he's killed off within the first fifteen minutes! We'd have to wait until 'Psycho' (1960) when a lead character (Janet Leigh) dies way before the end of the movie! Banning's buddy from the first film, Babe Jenson (now Henson), shows up a little later looking much, much, older and not doing any of the comic shtick he did in the original. It's hard to believe it's the same actor! Unfortunately, this great acting job is wasted because he gets killed by Kharis after only two brief scenes. It's then left up to Banning's son John (played by bit player John Hubbard) to led the chase to the cemetery--NO! The sheriff leads a torch wielding mob to Banning's house to burn it down and kill the mummy. Sound Universally familiar? <br /><br />Turhan Bey is introduced to audiences as the new High Priest, Mehmet Bey, to care for and feed tana leaves to Kharis. With his 'exotic' voice and appearance, it's too bad he gets so easily killed. A better movie would have had 'Babe' take Von Helsing type charge of things in tracking down the mummy, with a final decisive battle with him and Mehmet Bay. But instead we have a pedestrian rehash of different set pieces from previous Universal horror films, put together by the hack Griffin Jay who wrote many of Universal's other clunkers, although he also did 'Don Winslow of the Navy' (1942) as well as 'Don Winslow of the Coast Guard' (1943) which also featured Elyse Knox.<br /><br />Elyse Knox played Anne Howe in six Joe Palooka movies (1946-1949), and of course, Turhan Bey, with 43 movie and TV credits, is great in the title role of 'The Amazing Dr. X' (1948).<br /><br />The cinematography is much darker and more atmospheric (with lots of noirish shadows in the sheriff's office) than the first 'Kharis' mummy film, but there's little else of interest or excitement.<br /><br />I'll give it a 3.",0 +17837,"I rented this back in the 80's and honestly can't remember anything specific about the movie - only that it is THE worst movie I have ever seen. This isn't one of those ""it was so bad, it was funny"". This isn't one of those ""it was so gory, it leaves you with a bad feeling"" movies. It wasn't even one of those ""what the heck was that?"" movies. I can't recall the performance of the actors, but it was poorly shot, the story was disjointed, and it had no definable style. When it was over, I was angry that I had wasted the time.<br /><br />I've seen plenty of movies I didn't understand because of unfamiliar cultures, styles and/or story-telling, but it was clear that those movies had some of those properties. The incubus has none.<br /><br />I actually contemplated NOT making a comment on this ""piece"" for fear that someone may watch it out of curiosity, but I am compelled to warn anyone who appreciates film to skip this movie.",0 +7439,"National Lampoon's Class Reunion is a classic comedy film from the early 80's which combines unique characters, lots of laughs, and some great music from Chuck Berry. When Walter Bailor is absolutely humiliated by his classmates at their high school graduation he seizes the opportunity to get his revenge at his class reunion. One by one he stalks his classmates who include an innocent blind girl, a horny fat guy, the high school beauty, the king of all preps and even the ugly old lunch lady who served up slops to all the kids during highschool. This film has a sort of scary element in it and it has a few brief scenes of sexuality so I wouldn't recommend it for young children but it's a great movie for teens. If you are looking for a movie with a beautiful score, complex characters or killer special effects you might not love Class Reunion. If you want to sit down for 90 minutes and have some great laughs and a lot of fun (and who doesn't) then this movie should be on your movies to see list. ++",1 +11251,"This movie had lots of great actors and actresses in it and it addressed some very noble issues. It's full of emotion and the direction is done well. The storyline progresses very quickly, but I guess that's better than having to watch a 3 hour movie. This is an easy movie to watch again and again and enjoy.",1 +14459,"I have to say I was really looking forward on watching this film and finding some new life in it that would separate it from most dull and overly crafted mexican films. I have no idea why but I trusted Sexo, Pudor y Lagrimas to be the one to inject freshness and confidence to our non-existent industry. Maybe it was because the soundtrack(which I listened to before I saw the film) sounded different from others, maybe it was because it dared to include newer faces(apart from Demian Bichir who is always a favorite of mexican film directors) and supposedly dealed within it's script with modern social behaviour, maybe because it's photography I saw in the trailers was bright and realistic instead of theatrical. The film turned out to be a major crowd pleaser, and a major letdown. What Serrano actually deals here with is the very old fashioned ""battle of the sexes"" as in ""all men are the same"" and ""why is it that all women...;"" blah,blah,blah. Nothing new in it, not even that, it uses so much common ground and clichè that it eventually mocks itself without leaving any valuable reflexion on the female/male condition. Full of usual tramps on the audience like safe gags about the clichès I talked about before(those always work, always) and screaming performances(it is a well acted film in it's context)..and by screaming I mean, literally. The at first more compelling characters played by Monica Dionne and Demian Bichir turn out to be according to Serrano the more pathetic ones. I completely disagree with Serrano, they shouldn't have been treated that way only to serve as marionettes for his lesson to come through...he made sure we got HIS message and completely destroyed their roles that were the only solid ground in which this story could have stood. Anyway, it is after all, a very entertaining film at times and you will probably have a good time seeing it (if you accept to be manipulated by it).",0 +1808,"""I didn't want this to get complicated, Leese. I have to assume she's gonna read that."" Fear takes flight at 30,000 feet in this taut, action thriller. An overnight flight to Miami quickly becomes a battle for survival when Lisa ( Rachel McAdams) realizes her seatmate ( Cillian Murphy) is planning to use her as part of a chilling assassination plot. As the minutes tick by, she's in a race against time to warn the potential victims before its to late.<br /><br />One of the many reasons I love this movie, is because of the chemistry between the two stars, McAdams and Murphy, who are also two of my top favorite actors. For example, the early scenes at the airport play more like a romantic comedy: two people keep running into each other.... I got to hand it to the two as well, for making a film like this work. Especially, Murphy's character.. Jackson who really seems to be sort of complicated in that way that he acts charming and innocent, yet he's trying to do his job and make Lisa feel trapped physically and mentally. I mean, in certain parts he really seems to be concerned for Lisa.<br /><br />A great thrill ride all the way through. A lot of films I would hate to see a prequel or a sequel about, but actually I wouldn't mind a prequel to this one, which would take place with Jackson surveilling Lisa. Favorite scene is probably that headbutt scene, because it was so unexpected. There was also that nice buildup to the famous 'pen' scene. When is she going to make her move? There was also that nice change in McAdam's Lisa, where she changed herself from being a victim into fighting back. I also loved the scene where she sits down in the food court and pretends to ask some ladies a survey about the food court. How great was Murphy with his whole weezing.....",1 +20945,"Possible spoilers.<br /><br />Although there was some good acting - particularly Chloe Sevigny, and Radha Mitchell in the comedy half - this simply was not an engaging film. The segues between the comedy part and the tragedy part were awkward or sometimes not obvious. This viewer was initially confused by the fact that the supporting cast differs in the two halves; I thought with the way things were laid out in the opening scene that the people surrounding Melinda would be the same people, just reacting differently (more of a ""He Said, She Said"" premise). However, what we have is two totally different stories and two totally different women, both of whom happen to be played by Radha Mitchell.<br /><br />The two playwrights in the opening scene - the comedian and the tragedian - supposedly take the same premise and go from there, but the two stories are only tenuously related. They do little to support the topic of discussion, which is that almost anything can be looked at as either comedy or tragedy. Nice cast, but a disappointing film.",0 +11134,"Director Raoul Walsh was like the Michael Bay of the '40's and years before that. And I mean that in a positive way, since I'm definitely ain't no Bay-hater. His movies are just simple high quality entertainment, just like the Raoul Walsh movies were in his days.<br /><br />""Gentleman Jim"" is fine quality entertainment. Besides a first class director, it also features a first grade cast, with Raoul Walsh's regular leading man Errol Flynn in the main part.<br /><br />What surprised me was how well the boxing matches were brought to the screen. They used some very dynamic camera-work, which also really made the boxing matches uplifting and exciting to watch, with the end championship fight against John L. Sullivan as the ultimate highlight. <br /><br />Biopics of the '40's and earlier on were obviously still very much different from biographies being made this present day. Modern biographies often glorify its main subject and show his/her life from basically birth till death and everything, mostly emotional aspects, in between. 'Old' biopics were just made the same as movies that weren't based on actual real life persons, which also means that the film-makers would often use a use amount of creative liberty with the main character's personality and events that happened in his/her life. This movie is also not just a biography about a boxing legend but also forms a nice portrayal from the period when illegal bare knuckle fighting entered the modern era of boxing.<br /><br />Errol Flynn does a great job portraying the real life famous boxer James J. Corbett aka Gentleman Jim. Not too many people known it but Flynn did some real good acting jobs in the '40's, of which this movie is one. Fysicaly he also looks in top-shape. He also looks quite different by the way without his trademark small mustache in this movie. The movie also features some fine supporting actors and some fine acting throughout.<br /><br />A great and entertaining movie that also still truly holds up real well today.<br /><br />8/10",1 +18785,"The basic premise of ""Miami Golem"" most definitely deserves a spot in the top, say, fifty of most demented cinematic plots ever scripted down! I know top 50 doesn't sound too impressive, but I've seen a lot of really weird films with lunatic plots. I was prepared from something convoluted, because the film was directed and co-written by Alberto De Martino, who was one of Italy's most ambitious and creative but sadly underrated film makers. De Martino steals multiple ideas from successful blockbusters, like most Italian directors did around that time, but he always adds a lot of stuff to make it even more complex, confusing and overwhelming. Not all of De Martino's films are worthwhile, but some of them are extremely underrated, like ""A Special Magnum for Tony Saitta"", ""Holocaust 2000"" and ""Formula for a Murder"". The concept of ""Miami Golem"" contains elements from numerous great Sci-Fi and adventure flicks (like ""Alien"", ""Starman"" , ""Close encounters of the Third Kind"", ""ET"", ) but I wouldn't exactly call it a rip-off. The only thing that is really shamelessly stolen from another film is the opening synthesizer theme song that sounds almost identical to Harold Faltermeyer's Axel F. from ""Beverly Hills Cop"". The rest of the film is an amusing hodgepodge of fantasy, Sci-Fi, action, horror and superhero-movie gimmicks. It certainly doesn't always make sense (most of the time it doesn't, actually) but ""Miami Golem"" is undeniably an imaginative and multifaceted film that kept my mate and I fascinated from start to finish.<br /><br />The plot is extremely difficult to briefly summarize but I'll try anyway. Sceptical journalist Craig Milford is reporting the story of a German scientist who allegedly discovered extraterrestrial DNA inside a crashed meteorite and managed to clone it. The DNA cell belongs to an evil alien force that already exterminated another interstellar race in the past and it will unquestionably destroy the whole of mankind as soon as it grows large enough in size. If this isn't problematic enough already, the rich Mr. Anderson ordered to steal the slowly growing evil fetus because he thinks that he can manipulate it and use it to obtain world domination. With the help of some good aliens in an earthly disguise, Craig Milford has the difficult task of safeguarding the planet from the evil fetus. Okay, I know all this sounds grotesque and silly, but I assure that ""Miami Golem"" is in fact a light-headed and easy digestible flick. The first half of the film may come across as overly hectic and confusing, because Alberto De Martino attempts to keep the plot secret through the use of preposterous red herrings. There are subliminal ghostly appearances, supportive characters behaving exaggeratedly mysterious for no real reason and at a certain point there are even speculations about the lost continent of Atlantis. This is all misleading padding material, however, and as soon as the set-up is more or less clear ""Miami Golem"" turns into an ordinary early 80's popcorn action movie with bloody massacres, flamboyant chase sequences (in the Florida Everglades!), explosions, gratuitous sleaze and nasty little fetus-monsters in jars.<br /><br />Now, I really don't want to raise the impression that ""Miami Golem"" is a lost and undeservedly obscure gem of Italian exploitation cinema. Make no mistake, this is a pretty bad movie! The events only become endurable if you accept the stupidity and incoherence of the plot and if you don't succeed in that, well than this is just a non-stop spitfire of negative aspects. The acting performances are painfully awful. Particularly B-movie veteran John Ireland, as the archetypal James Bond villainous character, doesn't seem the least interested in the script. You can tell from his grimaces and by the way he delivers his lines that he also thinks the whole production is retarded and simply signed up for the paycheck. Laura Trotter is probably the least sexy female lust-object ever, and the person who drew the marvelously chaotic VHS cover must have felt exactly the same way, because the ravishing girl on the cover does not appear anywhere in the movie. What an embarrassment this must be for Mrs. Trotter. Still, her completely gratuitous nudity sequences compensate for this, as she's quite hot from the neck down. And, finally, there's the unforgettable scene where David Warbeck takes down a helicopter from a moving school bus with a regular pistol! I don't think even John Rambo can do this, while he's a beefcake Vietnam veteran and Warbeck's character is a simple TV-reporter.",0 +24749,"I don't know much about film-making, but good movies have to tell some sort of a story...your characters have to start and complete their journey. In Last Exit to Brooklyn they may, but its not in any satisfying way, and I'm not meaning a happy ending, just ANY ending.<br /><br />Last Exit to Brooklyn, set in 1952 Brooklyn during a very brutal labor strike, sets a number of story threads in motion. Most involve some of the most unlikeable characters to ever walk across a movie screen. But Last Exit to Brooklyn fails to bring these stories to any conclusion...it leaves some of them dangling with no ending, or blasts off into some bizarre stratosphere for an ""artistic"" ending.<br /><br />Two cases in point, and they contain spoilers.<br /><br />A sad transvestite character (an important character in the film), is struck by a car and killed. And that's it for him in the movie....he's gone for good, erased from everyone's memory..no reactions from his friends, enemies, lovers....nothing.<br /><br />In another thread the stupid, clueless, and secretly gay strike leader, having been rejected by labor, his gay lover, and found out by the neighborhood thugs, gets stomped by the thugs. The closing scene to the beating shows the streets of Brooklyn, and the streetlights are very, very similar to those of Nazi death camps...and the scene drags on and on and on...and the camera pans down to the body of the labor leader, and he's been crucified.....ppppuuuulllleeeeeez. And of course that's it for him too....brain erasure.....gone.<br /><br />Bottom line....no matter what the reviewers originally said in 1989 about this film....this movie is a depressing piece of sludge. Avoid it. And if you don't be forewarned, it really deserves an NC-17 rating for massive amounts of physical, emotional and sexual brutality...don't even let the teenagers watch.",0 +23182,"This is a simple tale but it feels very manipulative. It lacks pathos for it does not leave a room for imagination or a personal thought or time for reflection.<br /><br />The animation is well done but I feel like it is too presentational. I would have preferred more images from behind, more space in the background and maybe then this would not feel so kitsch to me.<br /><br />But for a Hollywood style film it works OK but it is very derivative of Aardman films and this is bothering to me. Perhaps a longer film will test if this maker can do without the voice-over.<br /><br />I think the voice over is too glib.",0 +17893,"Back in the days before the Toxic Avenger, the low-camp kings at Troma Films tried to take the high (OK, somewhat-less-low) road of producing straight slasher pics. I'd like to think that viewing the results here is what convinced them to give up all pretension and go for self-conscious parody.<br /><br />Splatter University is another film for the masochists in the audience. As it meanders about through two separate casts and innumerable pointless subplots, it actually becomes painful to watch. Let's see if I can summarize.<br /><br />After learning that a dangerous psychopath has escaped from a local hospital, the action moves to a Catholic university (I don't recall the name, but in honor of the title, let's call it St. Splatter). The students are listless and sullen, and argue pettily with each other, slackers ahead of their time. Meanwhile, the new professor, Julie Parker, proves utterly incompetent at her job. The kids deal with relationships, infidelity, unwanted pregnancies, lecherous priests, and how to avoid doing any work in class; Julie deals with a creepy boyfriend, the inflexible administration at St. Splatter, counseling unwed mothers, and the blank, expressionless looks of her students. None of it means a darn thing or gets resolved in any meaningful way. Oh, and every once in a while, a POV shot comes along and stabs one of the girls to death, but don't hold your breath waiting for it. There's a Red Herring Killer, and then a sadly anticlimactic confrontation with the Real Killer, then it's back to the asylum and roll credits.<br /><br />The slow pace and numerous inane subplots seem almost calculated to produce a mounting sense of frustration in the viewer, which is helped along by choppy editing, coffee-can sound quality, and dialog that just doesn't make any sense. And the most agonizing thing about this movie is the killer's fixation on women - the men in this movie are just so deserving. I'd've paid good money to see someone off the jerk with the pregnant girlfriend, or the lunkhead Lothario who was fooling around with his girlfriend's roommate, or any of the creepy priests. There ain't no justice.",0 +8919,"George Cukor directs a brooding and cynical classic. The distinctive Ronald Coleman is at his best in this piece of Noir about an actor who loses himself in his roles. The acclaimed Anthony John(Colman)has driven his wife Brita(Signe Hasso)away with his highly fueled temper and erratic behavior. But the two manage to continue working together to please their audiences. Things begin to change as John is becoming bored with his career; he reluctantly agrees to play Othello. He gets deep into character as a jealous and murderous man. He begins walking a thin line between illusion and reality and ends up confusing his role with his own life and eventually kills his mistress(Shelley Winters),but has no memory of the dastardly deed.<br /><br />Colman seems faultless in this role. Winters is very impressive as the young woman determined to get away from her squalid life. Also in the cast: Edmond O'Brien, Ray Collins, Joe Sawyer and Whit Bissell.",1 +4282,"""Amazing Grace"" has a languid feel to it as it tells a contemporary story of various lives in an apartment building. The language spoken is Hebrew, but the drama could take place in any modern city. It observes family values, romantic relationships, and age group characteristics with equal aplomb. It does not judge the characters, only present them in a straight forward manner, as they strive to work out their individual problems in this modern world. The quality of acting is very good, and the observations made on the characters are astute and sharp. I appreciate this flowing film very much.",1 +4375,"This is a warm, funny film, in much the same vein as the works of Almodovar. Sure it has a 10 year old boy sucking milk from breasts, but the style is so playful that I can't understand at all those readers who found it sick or perverted (but would I be willing to let my 10-year old son play the part? Not so sure!). <br /><br />Spanish cinema is often quite sexual, but in a very open and healthy way that leaves the viewer without any sense of voyeurism or kink. I think that we if we northern European types had the same attitude, we'd be much better off as a result.<br /><br />This liberal attitude is also seen in the hilarious 'Fartman Maurice' character. As his lover says to him: 'Most people are embarrassed about farting. You turn it into an art form.'",1 +15884,"This movie has a very hard-to-swallow premise, even by this genre's standards. We are asked to accept not only that a record played backwards can bring a dead man back to life, but that the record also contains hidden messages aimed SPECIFICALLY at one kid, when the singer had no connection to the boy when he was alive, and of course no way of knowing at whose hands the record would end up. Anyway, the film is fun for a while, but eventually the silliness and the pointlessness reign supreme. If they were really trying to create a new Freddy-like horror icon, they were way off: the villain here has no personality, no motivation, and no variety. (*1/2)",0 +7900,"Overall, I agree wholly with Ebert's review. In a sense, I feel that I should not even be commenting since it is so much a vet's movie and I am not a vet (I was a resister). The flaw is that Martha is badly underdeveloped and does not act consistently. My guess is that Stephen Metcalfe is a vet himself and spent too little planning time on her character.",1 +21123,No likeable characters (the lead is a combination of the WORST of Woody Allen/Paul Provensa/Reiser) and the contrived scenes (did anyone REALLY think thiat kid on the rollerblades was NOT going to knock the guy down?) were just sickeningly bad.<br /><br />,0 +10443,"Thanks to Kevin Smith, a bunch of geeks are running around saying that Return of the Jedi isn't any good because it's actually fun to watch. And oh no! Muppets are involved! That makes it bad! Everyone liked Return of the Jedi until someone in a Kevin Smith movie made a negative comment about it. Now all of a sudden people people look at you like you have some kind of disease if you mention how much you like it. This movie is so much better than anything Kevin Smith ever even considered creating that it boggles my mind that the man would even think of denouncing it. This movie is good fun! It's just as awesome as I remember it being when I was six! Enjoy this movie for what it is and stop stealing Kevin Smith's opinions! His aren't correct!<br /><br />And that Ewok song at the end ruled! I bet you people don't even enjoy ""Ewoks: Battle for Endor""!!!! I'm going to set you all on fire!",1 +10389,"This film, in my opinion, is, despite it's flaws (which I maintain are *few*), an utter masterpiece and a great and glorious piece of art.<br /><br />What Mr. Bakshi has done here is to create an utterly beautiful film and has shown his immense talent and versatility as a director of animated films. He does not receive 1/100th of the credit he deserves for literally saving the art of animation for an adult audience. If it were not for Mr. Bakshi, I don't believe animation would have survived the Disney onslaught. What is more, with The Lord of the Rings, he has not only created a beautiful animated film, but he has created an entirely new art form - unfortunately one that never quite made it off the ground.<br /><br />Most people will complain about the use of rotoscoping in the film (the use of live action images which are used as background images and often animated over using various techniques from what appears to be small amounts of tinting to full blown animation). But I feel that the people who complain about it simply cannot accept an art form which is out of the norm. No, this is not Disney animation. No it's not live action. No, it's not ""cheating"" - what it is is a new, fascinating, and absolutely wonderful art form. Something so fresh, and so new that it feels completely at home in such a fantastic tale as ""The Lord of the Rings"". Bakshi's pioneering use of this technique brings the subtleties of Middle Earth to life is a very dark and mysterious way, in particular, the darker of Tolkien's creatures, particularly the Nazgul, are realized in a way that traditional animation or live action have not been able to accomplish.<br /><br />Peter S. Beagle's screenplay (based very little, as I understand it, on an early draft by Chris Conkling) is a very loyal adaptation of Tolkien's works. Where possible he uses dialogue directly out of the novel and it feels at home in the world which Bakshi has created. There are many cuts that were made to fit the first book and 3/4 into a single 2 hour 15 minute film, but there are very few changes to the storyline. There are a few holes which it would have been nice to have filled: The reforging of Narsil, the gifts of Galadriel, the Huorns at the battle of the Hornburg, but, again, with the time limitations he had (already the longest animated feature in history), these are certainly understandable (though it makes one wonder how they could have been explained in a sequel).<br /><br />Also there is the delightful (one of my favorites) score by Leonard Rosenman (who also scored Barry Lyndon and Star Trek IV (the score for which is clearly based on his LotR work)). It is bombastic and audacious and, dare I say, perfect. It stands on it's own as an orchestral triumph, but when coupled with the images of the film, it enters a whole new world of symphonic perfection. So far from the typical Hollywoodland fare that it turns many people off.<br /><br />The voice actors are wonderful. Of particular note is John Hurt as Aragorn who just oozes the essence of Strider.<br /><br />The character design is also wonderfully unique, though not often to everyone's taste. But remember that it is the duty of the director of an adaptation to show you what he/she imagines, not what you might have imagined, and so Aragorn is realized with a distinctive Native American feel and Boromir appears in Viking inspired garb. This is perhaps not what you imagined, but I can only applaud Mr. Bakshi for showing us what he ""saw"". It also might be noted that he spent a significant amount of time with Priscilla Tolkien in developing the character outfits for the film.<br /><br />One farther word - the Flight to the Ford sequence, in my opinion, is one of the most subtlety beautiful sequences ever to be caught on celluloid. Bakshi is not afraid to slow down the pace for a moment, and his mastery is clearly shown by the incredible tension is able to build. Bakshi's artistic ability and Tolkien's incredible work fuse in this sequence to a glorious peak which has yet to be equaled.<br /><br />The recent DVD release (2001) by Warner Brothers, is sorely lacking. While we can offer our eternal thanks that the film is finally available in widescreen format, the package is woefully short of extras. How glorious it would have been to have had a director's commentary, been able to see the 20 minutes of extra footage that were removed for the theatrical release. Another delightful addition could have been the assembled the live action footage which was later animated over. Also present in the DVD release is the utterly horrible voiceover at the end of the film which is a departure from the simple voiceover which occurred in the very final frames of the film. This version is plastered and poorly rendered right over the musical climax of the score.<br /><br />Of course, the greatest tragedy of all is that the sequel was never made. We will never be able to see Bakshi's interpretation of Gondor, of Shelob, of Faramir, of the Cracks of Doom, of Eowyn's battle with the Witch King or Gandalf's confrontation with him. We will never be graced with Bakshi's image of Denethor or the Palatir or the Paths of the Dead. It is a shame beyond all shames that we will, in the end, have to accept Peter Jackson's glitz and glitter Hollywood, action film version of these later events in Tolkien's masterpiece, but, I suppose even that is better than having no cinematic version at all.<br /><br />David",1 +24302,"The peculiar charisma of Martin Kosleck brings a certain believability to his character of the frustrated artist. He imbues his dialog with an odd sense of realism, making the sculptor Marcel a convincing individual. The character manages to come across as a real person and not so much a typical B movie villain.<br /><br />The story line is nothing to write home about, and many scenes are dull. What makes it work is the strange chemistry between Kosleck and Rondo Hatton as the Creeper. Kosleck's talkative, philosophical character is contrasted with Hatton's low key, monosyllabic approach. The character of the Creeper isn't developed much beyond a basic monster level, but Hatton suggests undeveloped possibilities and makes you wonder about his back story.<br /><br />This movie was on Shock Theater a lot when I was a kid, so I have a certain nostalgic fondness for it. It's worth seeing once, anyway, for those who enjoy Forties horror movies.",0 +2595,"An excellent period murder melodrama, with Fontaine effectively playing against her earlier naive wallflower type, in a role that reportedly Olivia DeHavilland turned down. That's fine, because Fontaine is wonderful. Scripted by Charles Bennett, who had written for Hitchcock in the thirties and also later penned the excellent script for the classic British horror film Night of the Demon. The opening scene, where Ivy visits a sinister fortune teller played by the wonderful Una O'Connor (the screecher of James Whale fame), is a tour de force, and the film maintains interest throughout the numerous sinister machinations. I hope to see this film on DVD someday, but despair of that ever happening, because it seems to be an undeservedly obscure film. Fortunately I got to see it on AMC some seven or eight years ago, but have not seen since. Catch it if you can!",1 +23302,"I love Julian Sands and will at least attempt to watch anything he's in, but this movie nearly did me in. I'm hard pressed to remember when I found any other movie to move....so......slow.........ly.....zzzzzzzzzzzz<br /><br />Pop it in the VCR when you've run out of sleeping pills.",0 +17559,It feels like swedish movies are trying to become more american and I just don´t get it. In this movie the performance of some of the actors is horrible and the script is nothing special. Don´t waste your time!,0 +14351,"This movie was a major disappointment on direction, intellectual niveau, plot and in the way it dealt with its subject, painting. It is a slow moving film set like an episode of Wonder Years, with appalling lack of depth though. It also fails to deliver its message in a convincing manner.<br /><br />The approach to the subject of painting is very elite, limited to vague and subjective terms as ""beauty"". According to the makers of this movie, 'beauty' can be only experienced in Bob-Ross-style kitschy landscape paintings. Good art according to this film can be achieved by applying basic (like, primary school level) color theory and lots of sentiment. In parts the movie is offending, e.g. at a point it is stated (rather, celebrated by dancing on tables) that mentally handicapped people are not capable of having emotions or expressing them through painting, their works by definition being worthless 'bullshit' (quote).<br /><br />I do not understand how the movie could get such high rating, then again, so far not many people rated it, and they chose for only very high or very low grades.",0 +3876,"I guess this movie will only work on people who were all turned off by the giant hype of Lord of the Rings. Well, so I was. And so I really love this movie. Especially I like all those flawless superheroes from LotR being so perfectly and disrespectfully parodied. Most brilliantly is the counterpart of Gandalf (the brave and wise and completely humorless know-it-all wizard): Almghandi, the cowardice and brain dead transvestite. Sauron's counterpart (""Sauraus"" from East Germany, of course) is wearing a simply bucket with eye holes as a helmet. Aragorns alter ego is yet another accident prone idiot who tries to fix his broken sword (""Ulrike"" the legend) with scotch tape. And ""Strunzdumm"" (the counterpart of Wormtong) indeed has some strong resemblance with Brad Dourif! And don't forget Grmpfli and Heidi... huh-huh",1 +3931,"I'm a rather pedestrian person, with somewhat lowbrow tastes. However, I occasionally try to raise the bar on my cultural awareness. This movie was one of my attempts. I was in awe throughout the entire movie. I liked it so much that I got my own tape so I could see it again. This is a very thoughtful and emotionally striking movie. I saw it as a huge question to the viewer: What is the depth of sacrifice to duty one can accept, can be asked to accept, should accept? As a military member, this is of course an important question to me. This question weighs heavily on the viewer of this movie.<br /><br />Recommended.",1 +12230,"I believe I received this film when I was a young buck. I remembered watching it as a child, but i could never find the film. I remembered good ol Rageddy Ann, Andy, Babette, the Greedy, King Koo Koo. I searched high and low for this movie and still no luck. But one day when I was moving out of my childhood home I had found it. We were reunited. I am 17 years old now. I still watch it. All the time actually. It's one of the funniest and touching movies I have ever seen and enjoyed at the same time. And personally I think they should make a sequel. Mmm, yes a sequel indeed. Now i am even considering getting the captains bird tattooed somewhere on my body!",1 +19857,"One wonders why this picture was made at all : the plot as such is totally unbelievable if not ridiculous, the characters (experienced loner cop versus younger one, quite fascinated) quite predictable, the ending totally murky and impossible to understand (maybe after several viewings but you'd have to have a masochistic tendency for that ; the idea being you have to read the book to understand fully what it's all about)and the acting is bad. Was the basic idea to show that French film makers are able to do as well as Americans in the genre that include ""Seven"" and ""Silence of the lambs"" ? If so, it is a total failure. It was quite a success though (and has a sort of cult-status as the first French serial killer film)and, it seems, considered as a good product to export. Strange.",0 +3639,"Anne Brontes epic novel THE TENANT OF WILDFELL HALL should be studied and read throughout schools and libraries and peoples living rooms. Its a fantastic story and tells the ""real"" truth on alcoholism and ruined marriages and a mothers fight to keep her son away from her brutal husband. Its so alike todays stories that we see and hear and I believe people can learn a lot from reading this book. Based on possible true experiences that the author had back in the 1840s.<br /><br />Do watch this film, its a great version of the book and very moving indeed. I'm sure Anne herself would have been happy with the way it was produced.<br /><br />Excellent acting and great locations.",1 +315,"`The United States of Kiss My Ass'<br /><br />House of Games is the directional debut from playwright David Mamet and it is an effective and at times surprising psychological thriller. It stars Lindsay Crouse as best-selling psychiatrist, Margaret Ford, who decides to confront the gambler who has driven one of her patients to contemplate suicide. In doing so she leaves the safety and comfort of her somewhat ordinary life behind and travels `downtown' to visit the lowlife place, House of Games.<br /><br />The gambler Mike (played excellently by Joe Mantegna) turns out to be somewhat sharp and shifty. He offers Crouse's character a deal, if she is willing to sit with him at a game, a big money game in the backroom, he'll cancel the patients debts. The card game ensues and soon the psychiatrist and the gambler are seen to be in a familiar line of work (gaining the trust of others) and a fascinating relationship begins. What makes House of Games interesting and an essential view for any film fan is the constant guessing of who is in control, is it the psychiatrist or the con-man or is it the well-known man of great bluffs David Mamet.<br /><br />In House of Games the direction is dull and most of the times flat and uninspiring, however in every David Mamet film it is the story which is central to the whole proceedings, not the direction. In House of Games this shines through in part thanks to the superb performances from the two leads (showy and distracting) but mainly as is the case with much of Mamet's work, it is the dialogue, which grips you and slowly draws you into the film. No one in the House of Games says what they mean and conversations become battlegrounds and war of words. Everyone bluffs and double bluffs, which is reminiscent of a poker games natural order. This is a running theme throughout the film and is used to great effect at the right moments to create vast amounts of tension. House of Games can also be viewed as a `class-war' division movie. With Lindsay Crouse we have the middle-class, well-to-do educated psychiatrist and Joe Mantegna is the complete opposite, the working class of America earning a living by `honest' crime.<br /><br />The film seduces the viewer much like Crouse is seduced by Mantegna and the end result is ultimately a very satisfying piece of American cinema. And the final of the film is definitely something for all to see and watch out for, it's stunning.<br /><br />An extremely enjoyable film experience that is worth repeated viewings. 9/10",1 +24234,"The cover on the DVD and disc is freaking awesome, you would think they made a movie about sweet tooth from twisted metal black which is still a really great idea, but this movie's actors are worst then Ben's performance in pearl harbor, porno's have better quality and better actors. i was gonna buy the DVD but luckily i rented it first, the plot and script are also horrible, nothing seems to go to together so the movie really never makes sense. The poor attempts to frighten you using flashback scenes are worse then ones used in 80's sitcom shows and in the end it'll leave you wanting to bang your head against the wall of your house.",0 +5678,"2 WORDS: Academy Award. Nuff said. This film had everything in it. Comedy to make me laugh, Drama to make me cry and one of the greatest dance scenes to rival Breakin 2: Electric Boogaloo. The acting was tip top of any independant film. Jeremy Earl was in top form long since seen since his stint on the Joan Cusack Show. His lines were executed with dynamite precision and snappy wit last seen in a very young Jimmy Walker. I thought I saw the next emergance of a young Denzel Washington when the line ""My bus!! It's.... Gone"" That was the true turning point of the movie. My Grandmother loved it sooo much that i bought her the DVD and recommended it to her friends. It will bring tears to your eyes and warmth to your heart as you see the white Tony Donato and African American Nathan Davis bond. Through thick( being held up at knife point) and thin( Nathan giving Tony tips on women) the new dynamic duo has arrived and are out to conquer Hollywood.",1 +4461,"For anyone with a moderate sensibility, a moderate feeling of the human and humane condition, for anyone capable of getting above the Hollywood ilk, for anyone who is satisfied seeing cinema which does not have a series of Seagals/Willis/Van Dammes blasting the brains out of anybody or seeing who gets into bed with whom, for anyone whose intellectual level reaches a capacity to grasp, sympathise with, comprehend, laugh WITH, cry WITH natural tender heart-warming hilarious compassionate HUMAN BEINGS, `Le Huitième Jour' is waiting for you. Jaco van Dormael has not achieved simply a masterpiece, that would have been too simplistic; he has achieved one of those rare monumental works of art in the cinematographic world which defies any kind of encapsuling. Is it a drama? Is it a comedy? No: it is the story of Georges, a wonderful funny pitiful laughable loving frightened beautiful personality, a sufferer of the Downes Syndrome. It is a story which has you laughing through your tears, but this is not one of those classic tear-jerkers; this film moves through a world that has you at once mixing your feelings of compassion or pity or even shame with those of admiration, warmth and even love. A successful banking salesman, Harry, bumps into Georges: they were both going in opposite directions with absolutely opposing ideas, problems and priorities; skillfully van Dormael melts these two unlikely men into a warm friendship, but which is so much more than the good buddy friendship of those having a beer down the road. This is a relationship which develops into a profound needing by both for the other. The cuasi-surrealist scenes fit in perfectly: Georges recalls (or invents) past scenes of his life while either day-dreaming or sleeping; even the almost phantasmagorical final scene is totally correct. The only scene which might be considered a little out of place is when they steal a bus and drive it out of the show-rooms. However, this does not detract from the whole. This film is a monument. Even if your French is not up to much, please bear seeing it with sub-titles. `Le Huitième Jour' is worth the trouble. As for anything else, well, just read the following commentaries I go along with all of them. This film is a joy, it is majestic, it is unique. If you have seen `Rain Man' which I consider an excellent film, you must see this one: it is far superior because it has not the superficial veneer of famous Hollywood-produced world-renowned actors; it has Pascal Duquenne and Daniel Auteuil TEN oscars for these two, and three more for Jaco van Dormael. Who cares ? Yes: 11 out of 10 if the IMDb rating doesn't break down under the strain.<br /><br />Magnifique! Chapeau!",1 +6020,"Yes it was a little low budget, but this movie shows love! The only bad things about it was that you can tell the budget on this film would not compare to ""Waterworld"" and though the plot was good, the film never really tapped into it's full potential! Strong performances from everyone and the suspense makes it worthwhile to watch on a rainy night.",1 +24577,"IT IS A PIECE OF CRAP! not funny at all. during the whole movie nothing ever happens. i almost fell asleep, which in my case happens only if a movie is rally bad. (that is why it didn't get 1 (awful) out of 10 but 2).don't be fooled, like i was, by first review. a waste of money and your time! spend it on other stuff. at this point i'm finished with my review but i have to fill in at least ten lines of text so i will go on.... (ctrl+c, ctrl+v) :))) IT IS A PIECE OF CRAP! not funny at all. during the whole movie nothing ever happens. i almost fell asleep, which in my case happens only if a movie is rally bad. (that is why it didn't get 1 (awful) out of 10 but 2).don't be fooled, like i was, by first review. a waste of money and your time! spend it on other stuff. IT IS A PIECE OF CRAP! not funny at all. during the whole movie nothing ever happens. i almost fell asleep, which in my case happens only if a movie is rally bad. (that is why it didn't get 1 (awful) out of 10 but 2).don't be fooled, like i was, by first review. a waste of money and your time! spend it on other stuff.",0 +208,"The beauty of this film is evidenced in the great portrayal of the power of a mother's love, the exceptional performances, the steady execution and the quite innovative script. The film tells the story of an Indian woman, Nandini, who lives in Canada with her husband Shekhar and little kid Raja. All of a sudden her husband informs her that his family in India (of whom she had not even known) is in troubles and the couple rush to India. When they get into the village, Nanadini is shocked and terrified to witness a very wild rural culture; Shekhar's family, ruled by his cruel, highly cynical and merciless father Narasimha, lives a poor and highly violent lifestyle which is full of murder and terror and where women are subservient and helpless. Nandini starts nagging Shekhar to return home, but he is soon killed by his father's enemies. When she wants to leave, Narasimha refuses to let her take Raja back to India. Here starts the intense struggle which can be called ""Nandini vs. Narasimha"".<br /><br />India is not presented in a particularly positive light in this film, but it only shows a very tiny minority of its rural areas, so it may be even correct. The portrayal is in my view fair and not one-sided because the positive side is also presented to an extent. Such a horrifying sight could be shown in a film about any country in the world. The locations are amazing, the music is wonderful, and Krishna Vamshi's direction is aided by very effective cinematography and good editing. One thing that must be noted is the very ear-pleasing background score by Ismail Darbar, it is beautiful. The characters are very well defined though we do get to see both their bright and dark sides in different portions of the film. Portrayed realistically throughout, the film flows well and is an interesting and fairly entertaining watch. Its dialogues are superb and intelligently written, and although the shocking proceedings can be very disturbing at some points, a great deal of positive moments manage to relieve the tension.<br /><br />The film's biggest strength is the performances. Karisma Kapoor is breathtaking and very believable as Nandini. Her ability to strike a balance between vulnerability and unrestrained emotion is simply incredible. She displays so much intensity, impulsiveness, anguish and determination as the mother who wants to get her son back that this little kid seems to be her own son. Her outbreaks while facing off Nana Patekar which are like volcanic eruptions show us how the simplest of women can become a tigress when it comes to her child. After Fiza, this is her most powerful performance. One of the greatest actors Indian cinema has seen, Nana Patekar is indescribable as Narasimha. He manages to be hateful as Narasimha yet admirable as the actor who plays him. Patekar displays cruelty, wittiness and even humanity with total conviction. He is outstanding. Another great performance comes unsurprisingly from India's most underrated actress, Deepti Naval, who sensitises her character to perfection. Sanjay Kapoor is just adequate and Shahrukh Khan provides great comic relief. Anyway, do watch Shakti - it could have been better, but it is definitely a must-watch.",1 +21105,"This movie was a disappointment. I was looking forward to seeing a good movie. I am the type of person who starts a movie and doesn't turn it off until the end, but I was forcing myself not to turn it off. <br /><br />Theonly reason why I didn't turn it off was because I am a huge Christian Slater fan and I wanted to see him act in it. I was really speechless after I finished watching the movie. <br /><br />This movie was one of the worst movies that I have seen in my life. Thank you Christian Slater for putting some humor into it. If you hadn't been in this movie I would of been bored out of my mind.<br /><br />I also agree that Anthony Hopkins needs to stick to acting. By the time the movie was over I didn't even get the plot. I was both confused and annoyed.",0 +2229,"The most amazing, spiritually uplifting movie about the restoration of the gospel. Far better than any other film, or movie made about the restoration thus far. If you haven't seen it, hop on a plane to Salt Lake and see it now. You won't regret it! You truly get a sense of what the first saints had to struggle through, putting complete and total faith in there prophet Joseph Smith. You finally get some sort of comprehension of the things the prophet had to fight through and the persecutions he and his people faced. If you have any questions about the Church of Jesus Christ of Latter-days Saints and our humble beginnings just watch this movie, it will make complete and total sense afterward.",1 +936,"What happens to washed up rock-n-roll stars in the late 1990's? They launch a comeback / reunion tour. At least, that's what the members of Strange Fruit, a (fictional) 70's stadium rock group do.<br /><br />Tony (Stephen Rea) has the concession on condom vending machines when he runs into the son of the promoter of a famous music festival. It was at that festival in the 70's that Strange Fruit broke up. The 70's are ""retro"" and the time is right to wide that wave. He sets off in search of the other members of the band.<br /><br />Part of what broke up the band was the death and replacement of Keith, the lead singer and brilliant song writer. The band was known for its excessive lifestyle and now they are all back amongst the working class from which they came. Beano, the drummer, played by Timothy Spall (who was brilliant in Secrets and Lies) is a layabout, the bass player is a roofer, and their lead singer is still a rocker. While he owns a huge mansion he has been forced to sell it, as his fortune has not lasted. Brian, the lead guitarist, is dead, so a young guitarist is hired to replace him.<br /><br />Somewhat reluctantly the band agree to give the reunion a try. Abandoning their day jobs, they begin to rehearse, and their manager approaches their label about reissuing their albums. But he wants them to start touring again first. And so they hit the club circuit around Europe. The club scene is not kind to these overweight, dated, old rockers.<br /><br />It is on tour that the film really starts to develop. All of the old conflicts rearise, with the figures of Keith and Brian hovering throughout. They all hang together because they are all in search of a second chance for the greatness that eluded them earlier. And they rediscover some of the interpersonal chemistry that made playing together so enjoyable.<br /><br />Still Crazy starts as Spinal Tap II but gradually becomes a more dramatically focused film, following the relationships of the band members. While it is still a very funny movie, it is the evolving characters, struggling to deal with the deaths of Brian and Keith and with their own personal demons, that make the film work.",1 +13691,"Saw in on TV late last night. Yeah, I can hear what y'all say about this one. It IS likely to be categorized as one of those stereo- typical TV soap series. In all fairness, the story line does have a fine twist to it, and you might nod saying, ""Well, that's not what I expected."" But, as a film, well it is not easy to spot a redeeming element. Casting, acting, camera work, cars, costume, setting, script, no, there's nothing to congratulate. Rated R?? Oh, that scene. Did we need it? This is a film that you can watch it and then forget that you even watched. And what was the title again?",0 +5333,"This is what the musical genre was made of. Humor, talent, romance, and action all rolled into one.<br /><br />Frank Sinatra was wonderful. Nothing else needs to be said. Marlon Brando, although not a singer, did a great job winning the hearts of many with his portrayal of Sky Masterson. The fact that he couldn't sing added to his character. The ladies in the film were alright, but the men in the movie definitely stole the show.<br /><br />It is a true classic that can be appreciated at any age. It connects with all audiences and makes you smile and laugh.<br /><br />Definitely a movie to be watched and enjoyed!",1 +24020,"I actually saw this movie in the theater back in it's original release. It was painful to watch Peter Sellers embarrass himself so badly. The story was incredibly lame and difficult to follow, and the ending was ridiculous. It was just sad to see how the mighty had fallen. I won't say that I'm a huge Peter Sellers fan, but I did thoroughly enjoy the Pink Panther series and I felt that he gave a strong performance in Being There. But this film should never have been made. From what I've read, he pursued producing this film against the advice of the people around him. Fine, but that still doesn't excuse the studio actually releasing the film.",0 +13260,"Predictable, hackneyed & poorly written. Foolishly I reasoned such a prominent cast would not be involved unless it had merit. I guess competition amongst actors is so intense these days (and will only get worse) that one cannot pick and choose much any more. Early on we were given an inkling who was was instrumental in the assassination and we had it rammed down our throats ever since. The movie lacked intrigue, giving us little insight into the victim and only one possible motive for the murder. Some of the discourse was, frankly, embarrassing! It's hard to believe anyone would even consider, let alone commit to, the spending of tens of millions of dollars to make this tripe.",0 +3703,"This film was an interesting take by Hollywood on the novel by of the same name by Pearl S. Buck. While some today might think it is rife with racial stereotypes, for the time the very idea of Chinese protagonists was progressive in and of itself. I found that the white actors playing Chinese was not as bad as I expected, that it wasn't the Asian equivalent of blackface. Back then there were not really any Asian actors in America (not even George Takei was acting) and Rainer did a good job with her part. It wasn't the greatest performance I have ever seen but for old-school pre-method acting it was nice. The locust scene was very well shot and contained convincing special effects.<br /><br />I wonder that the timing of the release during the Great Depression sort of turns this film into an allegory. Especially the political upheaval bewildering the peasant farmers and how them seem to be left behind by all of it.<br /><br />The film had some parallels to the John Ford style, but I think the Eastern influence affected it as well. If this had been an western family, the locusts would have won at the end, punishing the farmer for his pride, lust, and gluttony. However here he learns his lesson, then wins.",1 +1510,"I first saw this in the movie theater when it came out, and the crowd was really into the movie which made the experience all the more fun. This is a great cast of characters, many big names in it, a few of which were not as recognized then as they are now. I think it's a great idea if you follow any of these actors, or have loved them in other movies, to add it to your watched list. Some of the scenes actually remind me of the type of well-done comedy as in The Birdcage or even The Clue, kind of odd spontaneous-appearing comedy, with some really professional delivery from these beloved actors. The movie did a great job at giving you some insight, perhaps even very realistic, into the culture of a daytime soap.",1 +18492,"As myself and my other half are big fans of trash horror we couldn't resist getting out a movie that contained both of the greats we were thrilled! However for a 2004 movie with a rip off cover of Freddy Vs Jason this is a disgrace! The worst film I have ever seen but worth a look for a laugh if you are able to sit through it!<br /><br />The acting is awful the effects...well I could do better on my camcorder in fact its so bad they only bothered to put make up on the zombies faces and left out neck, hands etc. No story line, weird flashbacks that make no sense and terrible script!<br /><br />""you broke my tooth!"" from one vampire ""you broke my cigar"" was the response from the human who looked like uncle Jessie from Dukes crossed with Santa!",0 +14335,"The script for ""Scary Movie 2"" just wasn't ready to go. This is a problem with the film that is blatantly evident, to the actors and the audience alike. Director Keenan Ivory Wayans, and many of the actors are funny people; and so the movie isn't completely humorless. To their credit, the film has several funny moments. But as a whole, ""Scary Movie 2"" is not even close to being as clever and amusing as the original.<br /><br />The first ""Scary Movie"" was a laugh a minute film. It turned the smallest subtleties of the slasher film genre into comedic gold. The humor in ""Scary Movie 2"" is as heavy handed as it is un-original. They even miss obvious opportunities for parody. Two of the movies stars are former cast members of ""Beverly Hills 90210,"" and this was a show that was begging to be parodied! In the final analysis, ""Scary Movie 2"" is like a fine bottle of wine that was opened far too soon. The script needed a lot more time to age. 2 stars out of 5.",0 +22082,"This movie was heavily marred by the presence of Steven Seagal. Or as I should say Steven So-dull! Like before Seagal is either too good or too stupid to re-dub his own lines, leaving someone to impersonate his voice for the shots where the sound needed to be looped. A few films before this was he has done this too, but I don't think to this extent! To be honest the film looks pretty good, the script could use some work but parts of this film looked like a real movie! Of course, all told, this film is pretty bad.<br /><br />It would have been much better without Seagal who has become a cartoon of himself. Don't bother. Anything over a buck for this one is too much! I honestly think this is the last time for me and a Seagal film. What's taken me so long to realize this?!",0 +12088,"I have seen Dirty Work several times and is probably my favourite Stan and Ollie short.<br /><br />In this one, Stan and Ollie are chimney sweeps and get the job to clean the chimney at the home of Professor Noodle (Lucien Littlefield). While Noodle is doing mad experiments in his lab, Stan and Ollie cause much chaos trying to clean the chimney and make a mess of the living room. The end is where Ollie falls into a tank of special formula that Noodle uses for his experiments and this turns him into a chimp! The best part is where Ollie falls down the chimney and loads of bricks land on his head, but he doesn't seem to suffer much pain from this.<br /><br />Dirty Work is Stan and Ollie at their funniest. Great fun.<br /><br />Rating: 5 stars out of 5.",1 +21669,I have seen this movie and the other one. Trinity is my name and i find that this one is worse then the first one. I have no idea why they even made another movie it was stupid and pointless sorry to say that i have all of them. I have sat through them number of times and it still drives me to turn it off 5 minutes into the movie. I like Terence Hill movies and i like Bud Spencer but this movie just drove me up the wall. If it had a different story line or at least more of a plot and more comedy it might have been funner and worth the 5 dollars i spent buying all the movies. But you make mistakes so i would say save your money and don't bye this movie or any of the ones that go with it trust me on this one.,0 +14364,"First, this film is not a ""thriller."" Neither is it ""gripping, taut."" It might have been so based on the script, but the direction's slow pace makes it difficult to get into.<br /><br />The plot itself is very interesting and ingenious. Unfortunately, we only get a sense of *how* ingenious after the picture is over. That leaves us with over two hours of long sequences with music playing over them punctuated by some action scenes that don't grab the viewer, and ""cunning vixen"" scenes that inject a little more overt intelligence.<br /><br />I wish this had been the fast-paced thriller the box promised. It would've been an outstanding film. Instead, Spike Lee made it plod along through the end.",0 +21497,"This quasi J-horror film followed a young woman as she returns to her childhood village on the island of Shikoku to sell the family house and meet up with old friends. She finds that one, the daughter of the village priestess, drowned several years earlier. She and Fumiko (another childhood friend) then learn that Sayori's mother is trying to bring her back to life with black magic. Already the bonds between the dead and living are getting weak and the friends and villagers are seeing ghosts. Nothing was exceptional or even very good about this movie. Unlike stellar J-horror films, the suspense doesn't really build, the result doesn't seem overly threatening and the ending borders on the absurd.<br /><br />This movie is like plain white rice cooked a little too long so that it is bordering on mushy. Sometimes you get this at poor Asian restaurants or cook your own white rice a little too long. You end up eating it, because you need it with the meal, because what is Chinese or Japanese food without rice, but it almost ruins the meal because of the gluey, gooey tastelessness of it all. 3/10 http://blog.myspace.com/locoformovies",0 +8344,"This was soul-provoking! I am an Iranian, and living in th 21st century, I didn't know that such big tribes have been living in such conditions at the time of my grandfather!<br /><br />You see that today, or even in 1925, on one side of the world a lady or a baby could have everything served for him or her clean and on-demand, but here 80 years ago, people ventured their life to go to somewhere with more grass. It's really interesting that these Persians bear those difficulties to find pasture for their sheep, but they lose many the sheep on their way.<br /><br />I praise the Americans who accompanied this tribe, they were as tough as Bakhtiari people.",1 +4246,"I thought it was a very funny movie. I love dog movies and comedy movies so combined they were twice as good. K-9, k-911, and k-9 PI are my favorite movies. Jim Belushi is hysterical and Jerry Lee is hilarious and adorable they make a great team. The only downside is that i really didn't understand how Dooley's wife died. She died before this movie but how? If they said it i must have missed it. Other than that I give it two thumbs/tails up! Those dogs (Jerry Lee and Zeus) must have had A lot of training. They were so funny and all the noises Jerry Lee would make when Dooley was talking to him was so funny. my favorite was when Jerry Lee sang and when he would bite peoples privates to get information very very funny lol",1 +22719,"It's official, folks -- Hou Hsiao-Hsien doesn't have a thought in his pretty little head. Are you wondering why he chose Shu Qi as his muse?<br /><br />Shu ( or is that Qi? ) doesn't appear in this one. Instead we get a snaggletoothed Yo Hitoto, apparently a pop star in Japan -- judging by her song at the end, she's a pop star just like the girl who serves you at Rockin' Curry is ""a actriss"" -- and a wasted Tadanobu Asano, typically an indicator of quality, who is required to do nothing here but stand around and look like a mumbling Asian hipster and is too old to manage even that. <br /><br />Hou's philosophy? Life is limbo, a big nothing, feel it and move on. I'd like to do that but Hou gives us nothing to feel in Cafe Lumiere beyond a bland photo essay of Life in Tokyo Circa 2003 and the flabbergasting observation that people are ships that pass in the night, no, make that trains that pass in the day, never connecting, each hurtling to its own destination, usually some variant of a dark tunnel or maybe a bridge if they're lucky. Yikes. Flowers of Shanghai is one of the most rarefied, technically accomplished and mesmerizing films of all time. How could the same director who created the opening shot of that film, which features about twelve actors conversing at machine-gun speed for about ten straight minutes -- an impossible directorial feat -- get trapped making this laconic sub-Jarmusch reality porn for two films in a row now? Millennium Mambo may be dead weight, but at least it has two great shots, shots that hint at Hou's true calling as the film equivalent of Odilon Redon: Those shots are the sex scene with the arrhythmically blinking lights and the opening shot of Shu Qi floating down a blue corridor. His M.O. while making Cafe Lumiere seems to have been to remove the two great shots from Millennium Mambo to make it more consistent. You be the judge if that sounds appealing. <br /><br />Hou does not need to refine -- you cannot refine the limbo idea further than Flowers of Shanghai. He needs to expand, to bloat outwards, to release the inner expressionist and genre-revitalizer that is being squandered so senselessly on clichéd minimalism. It's time for him to do a live-action remake of Akira or something. This kind of art film where the actors are supposed to be authentic because they are held facelessly in long-shot and speak in monosyllables is now every last bit as safe, ghettoized and stagnant as the Hollywood action blockbuster. ( What is the connection between ""reality"" and people who can't talk? It seems to me that people ""in real life"" never stop jabbering. ) Then again, considering that 2005 alone brought big-budget movies as diverse and rich in ideas as Aeon Flux, The Island, and King Kong, it's now safe to say that even Michael Bay has surpassed Hou, and that's really sad.<br /><br />The good news is that, though Hou is in his 50s, it frankly feels to me as if he hasn't even begun. There are a couple moments in this film that show the promise is still there, such as a moody bit early on in the bookstore when the room dims to a bloody sunset-red while Hitoto talks about babies with the faces of goblins. But whatever fear is holding him back, however comfortable it is to make the same film over and over and be hailed by the gullible and pretentious as the savior of cinema, Hou, your time as the darling of the Rotterdam, Venice, Toronto, Berlin and whatever else film festivals is almost up and people are catching onto your ruse double-quick. Two words for you: Atom Egoyan. Two more words, or maybe three: Tsai Ming-Liang. You are now cribbing from both of these tedious frauds who are about to go up their own dark tunnels forever. Risk your shirt on a sci-fi epic, sell out, be reviled -- but leave the social critiques to people that have no eye and no heart. Let your painterly talent express itself to the full. You're not going to ever get out of limbo otherwise.",0 +1611,"This film is stunningly beautiful. Goldsworthy's art really benefits with the medium of film because you can see the art at its most beautiful, moving and changing and blossoming. I strongly recommend this movie to everyone. I can think of nothing else to say about it. It's just the kind of movie you HAVE TO see, because it's so visually compelling and left me very refreshed when I left the theatre.",1 +10212,"Giallo fans, seek out this rare film. It is well written, and full of all sorts of the usual low lifes that populate these films. I don't want to give anything away, so I wont even say anything about the plot. The whole movie creates a very bizarre atmosphere, and you don't know what to expect or who to suspect. Recommended! The only place I've seen to get this film in english is from European Trash Cinema, for $15.",1 +7639,"Marjorie, a young woman who works in a museum and lives with two female roommates, Pat and Terry.One night she gets in her car and is attacked by masked man with a knife.His plan is to rape her, but she manages to escape.The man has her purse.The police can't help her, since the actual rape didn't happen.Then one day, when Marjorie's roommates are at work, her assailant comes there.His name is Joe.A long battle begins against this man.But then she manages to spray his eyes and mouth with insect repellent, stuff that will kill him if he won't get help soon.She ties him up and makes Joe the subject of the same kind of physical and mental assaults he used on her earlier.The Extremities (1986) is directed by Robert M. Young.It's based on the controversial off-Broadway play from 1982 by William Mastrosimone.Farrah Fawcett, who sadly lost her battle with cancer last year, is terrific as Marjorie.James Russo, who played the attacker also in the play, is convincing as Joe.Alfre Woodard and Diana Scarwid are great as Pat and Terry.James Avery is seen as Security Guard.She got a Golden Globe nomination.This is not a movie that is supposed to entertain you.It asks a question is revenge justified.This is not a perfect movie, but I recommend it.",1 +12117,"'Presque Rien' ('Come Undone') is an earlier work by the inordinately gifted writer/ director Sébastien Lifshitz (with the collaboration of writer Stéphane Bouquet - the team that gave us the later 'Wild Side'). As we come to understand Lifshitz's manner of storytelling each of his works becomes more treasureable. By allowing his tender and sensitive love stories to unfold in the same random fashion found in the minds of confused and insecure youths - time now, time passed, time reflective, time imagined, time alone - Lifshitz makes his tales more personal, involving the viewer with every aspect of the characters' responses. It takes a bit of work to key into his method, but going with his technique draws us deeply into the film.<br /><br />Mathieu (handsome and gifted Jérémie Elkaïm) is visiting the seaside for a holiday, a time to allow his mother (Dominique Reymond) to struggle with her undefined illness, cared for by the worldly and wise Annick (Marie Matheron) and accompanied by his sister Sarah (Laetitia Legrix): their distant father has remained at home for business reasons. Weaving in and out of the first moments of the film are images of Mathieu alone, looking depressed, riding trains, speaking to someone in a little recorder. We are left to wonder whether the unfolding action is all memory or contemporary action.<br /><br />While sunning at the beach Mathieu notices a handsome youth his age starring at him, and we can feel Mathieu's emotions quivering with confusion. The youth Cédric (Stéphane Rideau) follows Mathieu and his sister home, continuing the mystery of attraction. Soon Cédric approaches Mathieu and a gentle introduction leads to a kiss that begins a passionate love obsession. Mathieu is terrified of the direction he is taking, rebuffs Cédric's public approaches, but continues to seek him out for consignations. The two young men are fully in the throes of being in love and the enactment of the physical aspect of this relationship, so very necessary to understanding this story, is shared with the audience in some very erotic and sensual scenes. Yet as the summer wears on Mathieu, a committed student, realizes that Cédric is a drifter working in a condiment stand at a carnival. It becomes apparent that Cédric is the Dionysian partner while Mathieu is the Apollonian one: in a telling time in architectural ruin Mathieu is excited by the beauty of the history and space while Cédric is only interested in the place as a new hideaway for lovemaking.<br /><br />Mathieu is a complex person, coping with his familial ties strained by critical illness and a non-present father, a fear of his burgeoning sexuality, and his nascent passion for Cédric. Their moments of joy are disrupted by Cédric's admission of infidelity and Mathieu's inability to cope with that issue and eventually they part ways. Time passes, family changes are made, and Mathieu drifts into depression including a suicide attempt. The manner in which Mathieu copes with all of these challenges and finds solace, strangely enough, in one of Cédric's past lovers Pierre (Nils Ohlund) brings the film to an ambiguous yet wholly successful climax.<br /><br />After viewing the film the feeling of identification with these characters is so strong that the desire to start the film from the beginning now with the knowledge of the complete story is powerful. Lifshitz has given us a film of meditation with passion, conflicts with passion's powers found in love, and a quiet film of silences and reveries that are incomparably beautiful. The entire cast is superb and the direction is gentle and provocative. Lifshitz is most assuredly one of the bright lights of film-making. In French with English subtitles. Highly Recommended. Grady Harp",1 +22515,"Strange, almost all reviewers are highly positive about this movie. Is it because it's from 1975 and has Chamberlain and Curtis in it and therefore forgive the by times very bad acting and childish ways of storytelling? <br /><br />Maybe it's because some people get sentimental about this film because they have read the book? (I have not read the book, but I don't think that's a problem, film makers never presume that the viewers have read the book). <br /><br />Or is it because I am subconsciously irritated about the fact that English-speaking actors try to behave as their French counterparts?",0 +6137,"I like this movie a lot, but it's a fact, that you cannot understand it, unless you're from the ex Yugoslavia. Most of the actors are now dead and those were the best actors in ex Yugoslavia. I appreciate that this movie is now on Divx and I can have it in my collection. Macedonia. Serbia. Montenegro. Bosnia and Herzegowina. Croatia. Slovenia.<br /><br />All of this was ex Yugoslavia, a melting pot of the Balcan nations. It could be a dream land, if Slobodan Milosevic, Franjo Tudjman and other nationalists wouldn't poison the nation's mind with their sick ideas.",1 +20654,"Creep is the story of Kate (Potente), an intensely unlikeable bourgeois bitch that finds herself somehow sleeping through the noise of the last underground train, and waking up to find herself locked in the tube station. After somehow meeting workmate and would-be rapist Guy on a mystery train that runs after the lines have closed, things go awry and she finds herself pursued by what lurks beneath the city's streets. Her story is linked to that of George (Blackwood), an ex-con working in the sewer system; they meet in the final third of the film, brought together by their attempts to escape the monster that pursues them.<br /><br />The pair proceed through a set of increasingly unlikely locations; from the Tube station, they end up in the sewage works before somehow finding themselves in some sort of abandoned underground surgery. Most Tube stations don't have toilets, so how one has a surgery is beyond me. Naturally, the film cares to explain that the surgery doesn't have running water. Yet it has electricity? Just one of many inconsistencies that work against the atmosphere of everyday believability that the film tries to create.<br /><br />The monster itself is a problem. There's a complete lack of reasoning for its actions, it just kills people for no obvious reason. And then of course it keeps some alive for no real reason either, perhaps just so that they can eventually escape and give the film an extra 15 minutes or so running time. I understand that natural evil is supposed to be scary, but then the film attempts to explain itself via a photo of a doctor and his son, and a few shots of some jars containing babies, and yes, it is just as tired and pathetic as it sounds. It also fails to explain how the creature has been underground long enough to lose the ability to speak, communicating only in raptor screams, but not long enough for its pair of shorts to decay. Hmm.<br /><br />This doctor business leads to scene that is the film's desperate attempt to implant itself on your memory, and while it is gory and uncomfortable to watch, it just isn't enough. The final third of the film hinges on an emotional relationship that never existed, and the characters break down and recover for little or no obvious reason. George breaks down, unable to cope with something despite stating that he wants to escape so he can see his daughter again, and Kate becomes emotionally tough seconds after going to pieces over someone that ripped her off for a travelcard. Yeah.<br /><br />After starting out as a ""this could happen to anyone"" movie, it quickly falls apart as it introduces ideas that make it more and more unrealistic. A complete lack of emotional interest in the characters and an absence of suspense make this one to avoid.",0 +11766,"**Possible Spoiler*** Adam Sandler is usually typecast in Comedy,but in ""Reign"",gives a deeply moving performance.While there are people who showed Courage facing post September 11,2001,Sandler plays Fineman,a widower who is lonely and ""lost in his own world"".Johnson(Cheadle),a practicing dentist,encounters his old College buddy(Sandler)and wants to catch up on ""Old times"".We see,as in Rain Man(Dustin Hoffman),Fineman also gets emotional and withdrawn in stressful situations.Oldies music,appears to be a comfort and ""Psychological"" crutch for him to lean on.<br /><br />Johnson looks for,in Fineman,that certain pleasure and ease missing in his Family.He also feels unhappy and unsatisfied in his Job.In the same instance,He also wants to make sure his friend does not fall through the social ""cracks"".I came away from this movie,with a different outlook and more sympathetic Compassion for grieving families.",1 +18158,"In the days before gore and sex took over, real horror films were made. Castle of Blood is, in my estimation, one of the finest, although other reviewers have given it mixed ratings. In an odd sort of way it reminds of the more recent The Others, which was in the theaters a couple of years ago.<br /><br />Director Antonio Margheriti remade his own picture in 1970 titling it this time Web of the Spider (AKA Nella Stretta Morsa del Ragno). Why he did this I do not understand, although the remake starred Anthony Franciosa and Klaus Kinski and was very good in its own right. Perhaps he saw a good story and wished to tailor it more to American audiences. I do not really know. It is interesting that he did the original in black and white and the remake in color.<br /><br />Castle of Blood is excellent Italian Gothic. La Danza Macabra is said to be an unpublished work of Edgar Allen Poe, who ""appears"" in this film. Poe and Lord Blackwood, owner of a haunted castle, bet American writer Alan Foster (George Riviere) that he cannot spend All Souls Night in said castle and survive. Foster eagerly accepts the bet but soon regrets it, for he is witness to a series of murders committed by ghosts. It seems that the ghosts come back to life once every few years but are doomed to re-enact the crimes they committed in life. Lord Blackwood conveniently forgot to tell Foster that his blood is needed for them to resurrect themselves on the next All Souls Night! <br /><br />It does not take Foster and the beautiful Elisabeth Blackwood (portrayed by the incomparable Barbara Steele) long to fall in love, even though their romance is doomed, because Elisabeth is one of the ghosts. I will not give the ending away, but will just say that Castle of Blood is every bit a romantic tragedy as it is a horror story. <br /><br />Comments. This film is greatly atmospheric, even by the excellent standards of the Italians. My personal opinion is they do true horror better than anybody, and the somewhat dim black and white filming only enhances this. In fairness, Web of the Spider was fine in its own right, even with color and greater brightness. I loved the lingering shots, something most modern day directors do not have the patience for. Indeed, when Alan first enters the doomed castle, we are treated to several minutes of him doing nothing but roaming around from room to room, the dread ands unease building in his face and mannerisms. By the time the first ghost appears, the audience is thoroughly primed and ready. There is wonderful dialogue between Alan and the ghosts, something else not often done in standard ghost stories. There are also memorable scenes, very visual for this type of film. Elisabeth's ""murder"" and the dance scene (reminds somewhat of the similar dance of the ghouls in 1962's Carnival of Souls) were particularly good.<br /><br />Sadly, few general interest viewers will ever hear of, much less see, this film. That is a shame, for this one is a cut above the rest. I got my copy from Sinister Cinema and am not certain if it can be purchased anywhere else. For persons interested in this genre, it is a must see.",0 +8066,"Michael Bowen plays an innocentish young man who hitchhikes a thousand miles to visit his absentee millionaire father (the creepy Ray Wise) at a sprawling, windmill-powered ranch and ends up tangled in the dangerous web of his young, scheming and seductive stepmother from hell (the yummy Clare Wren), thus causing trouble for the already dysfunctional family. An edgy, stylish and exciting drama that received no promotion and was sent straight to VHS and cable TV--where I first saw it. It is beautifully written, smartly acted, and tightly directed from a script that keeps you biting your nails. I cannot believe the reviewers who disliked it ever actually saw it. It is an undiscovered classic.",1 +14151,"The best Laurel and Hardy shorts are filled to the brim with mishaps, accidents and destruction, mostly caused by Stan, but with Ollie receiving the bulk (!) of the punishment-- see the great 'The Music Box' (1933) or 'Towed in a Hole' (1932) as some some classic examples.<br /><br />Here, however, for some reason (is it because it was based on a sketch by Stan's father?) the boys play it 'straight' in a 'comedy' built around jokes and supposedly funny situations. It doesn't come off. It's merely another third-rate tedious 30s comedy, heightened only by the personalities of Stan and Ollie who never really display any of their trademarked gestures (Ollie's finger wiggling, Stan's blank stares, etc.) or comic abilities.<br /><br />The film begins with them running from the police. Since we never see or know why, it's hard to believe or accept their fear of being caught, and thus hiding in Colonel Buckshot's mansion. The premise for the 'humor', Ollie passing himself off as the Colonel and Stan passing himself off as both the butler and the maid are never very engaging. They are not playing 'Stan and Ollie' in this film. Their parts could have been played by any of the pedestrian studio actors and it would be just as poor.<br /><br />Stan could mime and make whatever he would do funny, but he doesn't get the chance to do any of that here. He's constrained by uttering too much dialog to 'move' the plot, but none of it rises much above the silly. We are treated to endless third rate comedy chestnuts such as the running gag of not correctly pronouncing Lord Plumtree's name, the ""Call me a cab! Okay you're a cab!"" joke, cops losing their clothes and being seen in long johns, and a non-sequiter ending of Stan and Ollie as the two parts in a painfully obvious horse costume as they make their escape on a bicycle for two, and James Finlayson is still doing his silent-era full body takes and Keystone Kop jumping jacks.<br /><br />Stan and Ollie do much better in a situation comedy in 'Sons of the Desert'(1933) where we get to see them do what we love about them -- be themselves. In fact, 1932-34 seem to be their best years.<br /><br />Since this film does not play to any of their strengths, why bother with it? I have to give it a 3.",0 +6024,"Go, Igor, go, you are the proof that Slovenian films may, should and must be different. There's soul in it, and this is rare. Don't let anybody put you down!",1 +22804,"Sitting down to watch the 14th season of the Bachelor (""On the Wings of Love""), I knew I would be in for an ""interesting"" time. I had watched some of the previous seasons of the Bachelor in passing; watching an episode or two and missing the next three or so. I find that the Bachelor is often appealing and intriguing, though its quality and morality are often lacking.<br /><br />""On the Wings of Love"" details the journey taken by Jake, a 31 year old commercial pilot from Dallas, Texas, to find true love, as true a love as one can find in a season-long reality-drama dating show. Jake meets 25 beautiful girls from all over the country. He begins to get to know them a bit, but it is mostly superficial; how well can you get to know someone in a few 5 minute conversations? Jake tries to make his true intentions known from the very beginning, at least to the audience. He noted that he doesn't just want love or a good time, but he wants a fiancé or wife. We can only assume that he has made this clear to the women in the competition as well. If that is the case, it might explain, to a degree, some of the women's actions. The women are super competitive. While they don't even know Jake at all yet, they are still in it to win it no matter what the cost.<br /><br />Not only were the women competitive, but they were also confident and catty. Threats, backstabbing, and warnings of ""Watch out!"" all show that these women weren't there for a good time either. Jake noted that he was not just looking for sex appeal, but looking for ""a connection."" However, the girls pulled out all the stops to try to impress Jake with said sex appeal. They arrived at the mansion in skimpy dresses either low-cut or short.<br /><br />While some girls seemed to maintain their sense of decorum, others missed that memo altogether. One girl, Channy, noted that Jake was a ""good guy"" to whom she could be a ""naughty girl."" She went on to say that Jake could land on her ""runway anytime."" She got flack from the other girls for her provocative statement which showed their take on these situations.<br /><br />So, a reality dating show couldn't be that bad, could it? Besides the obvious issue of sex-driven attraction, there are other issues that mar this seemingly harmless show. Is this the right way to find a future mate; vying for someone's attention by flaunting oneself to extreme proportions? Unfortunately, however, that is what America has reduced dating to these days: pleasure and sex without commitment and a little happiness on the side.<br /><br />Another problem is the premature emotional attachment by which many of the girls bound themselves to Jake. A few girls in particular seemed to be overly attached. One girl said ""If I don't get that first impression rose it will kill me!"" As mentioned before, they don't even know him yet and she was talking about a specific rose, not just one of the 15 roses to keep from being eliminated.<br /><br />Michelle, in particular, seemed to have some issues with attachment to Jake. The other girls noticed it too. After one particular Michelle outburst, Vienna asserted that Michelle had a ""mental breakdown and we've only been here an hour."" Michelle got the last rose of the evening on the first show narrowly missing elimination and was extremely emotional about it. The other girls thought it was simply ridiculous. Another girl also cried, but because she was eliminated.<br /><br />It began with Survivor, and from there it just took off reality TV. It shows our entertainment interests as a country; if we weren't watching the shows and giving them good ratings, the networks would not continue to run them. The only logical conclusion that can be drawn is that enough of America is hooked. One thing is clear: America (in general) loves reality TV and its ensuing trappings.<br /><br />This begs me to question: why is it that we even like reality TV? What is it about it that draws us to it? Is it because we see the similarities to our own lives, or is it because we want to be sure that we are more stable and less pathetic than others? Whatever it is that draws us to it, we should be careful of the media and entertainment that we allow to fill our minds. I'm not saying that all reality TV shows are bad; however, I am saying that we need to evaluate each one.<br /><br />Episodes used for critique: Season Premier and Episode 2.",0 +9926,"Another Norman Lear hit detailing the problems that African Americans had to go through in the turbulent 1960s and 1970s.<br /><br />With Esther Rolle and husband along with 3 children living in a Chicago high-rise project in a predominantly black neighborhood, the show depicted what black people were going through with a landlord (black agent Mr. Bookman) as well as prices and the day-to-day problems of just existing.<br /><br />The 3 children depicted how people seem to face their problems differently- from the comical JJ to the militant Ralph Carter, to their daughter who also aspired to attain success, this show was a perfect description of African-American life.",1 +8517,"Men of Honor stars Cuba Gooding Jr., as real life Navy Diver Carl Brashear who defied a man's Navy to become the first African American Navy Diver. Sometimes by his side and sometimes his adversary there was one man who Carl Brashear really admired. His name was Master Chief Billy Sunday (Robert DeNiro). Sunday in a lot of ways pushed, aggravated and helped Carl become the man he wanted to be. <br /><br />I loved Cuba in this film. His portrayal here is as liberating and as powerful as Denzel Washington was in The Hurricane. Through every scene we can see his passion, motivation and stubbornness to achieve his dream. We can see the struggle within in him as he embarks to make his father proud. I also loved how the director created and brought forth a lot of tension in some of the key diving scenes. Brashear's encounter with a submarine during a salvage mission is heart-stopping and brilliant. <br /><br />The only fault I could see would have to lie in the supporting cast. Cuba and DeNiro's characters are very intricate and exciting to watch. Which does make you a little sad when they have to butt heads with such two-dimensional supporting characters. The evil Lt. Cmdr. Hanks, Sunday's wife (Charlize Theron), the eccentric diving school colonel (Hal Holbrook) and Cuba's love interest are the characters I found to not have very much depth. What could have made these characters more substantial and more effective was a little more time to develop them. Why was that colonel always in his tower? How come Sunday's wife was so bitter and always drunk?<br /><br />Another curious question has to be this. What happened to Carl Brashear's wedding? I mean if this film is chronicling this man's life wouldn't his wedding be an important event? Maybe it's just me. Men of Honor, however, is a perfect example of the triumph and faith that the human spirit envelops. This film will inspire and make you feel for this man's struggle. Which I do believe was the reason this powerful story was told. My hat goes off to you Carl Brashear. I really admire your strength.<br /><br />",1 +10008,"On the surface, ""Written on the Wind"" is a lurid, glossy soap opera about the sexual dysfunctions of a Texas oil family. But underneath it all is a deep, social commentary on 1950's life. Director Douglas Sirk scores again with another Univeral sudser. Robert Stack falls in love with Lauren Bacall. The problem is that Stack's best pal, Rock Hudson, loves her too. When Stack finds out he's sterile and Bacall ends up pregnant, the fireworks fly. And, the all-too-good Dorothy Malone won an Oscar for her portrayl of Texas' biggest nympho who is shunned by Hudson. Good epic soap opera.",1 +12307,"I'll be honest with you...I liked this movie. It's a great zombie flick that is packed with action, original ideas, good acting, but is also packed with bad Zombie effects. Part IV, entitled ""After Death"" is also good. I would recommend this movie to horror fans everywhere.<br /><br />10 out of 10<br /><br />Fans of Horror Movies like this should Check out Puppet Master, Skinned Alive, Slumber Party Massacre, Sleep Away Camp, and other Full Moon Pictures flicks. For other recommendations, check out the other comments I have sent in by clicking on my name above this comment section.",1 +11071,"This movie is by far the cutest I have seen in a long time! Wonderful animation and adorable characters (even the bad guys were cute!) made this one a total winner in my book, and also in the books of those I saw it with. I still want to see it again, but haven't had time. Better than Toy Story, which was good too, but not THIS good .",1 +7285,"""Pecker"" is a young, unknown photographer from Baltimore who becomes a big star in the public, the media and the local art scene with his pictures showing the dirty reality of all-day life just as dirty underwear or human excrements. It's a typical topic of John Waters Baltimore-based independent comedies to show the weird sides of the American way of life between political correctness fashion and conservative backlashes by exploring the backgrounds of the middle class society of his hometown.<br /><br />Edward Furlong of ""Terminator 2"" fame plays Pecker, supported by Christina Ricchi, photographer Cindy Sherman, legendary Patricia Hearst and Water's long-time actress Mink Stole. Although the pacing of the plot becomes a big flaw sometimes and can't compete with the fast and furious joke attacks of Water's brilliant ""Serial Mom"", it's still has some good laughs in it and some unforgettable scenes like a former junkie-girl who became a vegetarian by sniffing peas from a vegetable dish... ""Pecker"" is a great comedy about the arrogance of the art scene, media hypes, middle-class sex angst and the strange ways of how to become a pop star without realizing it. Recommended!",1 +19155,"I am so insulted by this movie, it's not even funny... And I thought ""Mulan"" was unbelievable! However low my expectations of Disney have become, I never figured they'd do something so stereotypical yet so off. There is no respect here for any true Chinese culture, just the Hollywood tradition of random martial arts.<br /><br />I appreciate that they tried to make Wendy into a normal teenage girl... But, fortunately, most normal teenage girls--particularly Asian teenage girls--are much less obsessed with such shallow aspects of life. And from a cultural stand point, it's almost impossible. Yes, there are girls who are wrapped up in popularity and fashion, but they're pretty rare. And even the ones who are are still fairly decent scholars. Another stereotype, maybe, but a fairly true one. Because that's how Chinese parents work. That's how Chinese values work. If they wanted to go for authenticity, they would've made Wendy an ironic girl with glasses and a love-hate relationship with her family.<br /><br />This just adds to my frustration with American movies. Asian culture isn't about meditation and vague, nature-oriented phrases that sound wise. We don't walk around smiling enigmatically all the time, and we don't all know some form of martial arts. We're a PEOPLE, and I'd appreciate it if someone would write an Asian part that doesn't portray us as some sad caricature.",0 +15477,"Firstly, there are some good things about this film, but it's all cliche slasher stuff combined with a teen movie. In the advertising of this movie, that I've seen, a large emphasis was on the fact that Denise Richards is in it, but she's a poor actress, and not as good looking as people try to make her out to be (not that that has anything to do with the movie). And what's with that look she gives everyone? Perhaps it's part of the character, but like I said, the acting... Still, the writing is fine. You know who it is all throughout the movie, and you can almost predict what is about to happen, but not in an irritating way. I think the book it's based on is probably good, judging by the plot line, but next time I'll read the book to find out rather than watch this.",0 +3594,"A tour deforce! OK the kid that plays Oliver is a bit toooooo sweet! Starting with the great cinematography, color, costumes and most impressive performances this is a must see movie. I have seen several adaptations of this great novel, but this one stands above them all and its a musical to boot! It is a masterful Fagan, never leaving his character to do a song. You never really know if you like him or not, the same feeling I got in the book. In other versions you hate him from start to finish. Bill Sykes.... when you read the book hes a mean one, and so he is in this movie. Oliver Reed was masterful. His wife directed this masterpiece. I went and saw his last movie, Gladiator based on his many fine performances, not to see the headliners. The music fits the times and the mood. Who will buy this beautiful movie? You Should!",1 +17225,"...but i expected better from Caroline Munro. She's done some good films, and i was hoping this would be just as good. as a matter of fact, she and this other blonde girl character (the girl who got electrocuted i think) were the only two out of the 8-11 actors who could act. this film has the worst acting i've ever seen. almost as bad as 'Psycho' (1998). the really dumb part was when the woman was in the shower and marty rigged it to pour battery acid in there. she starts screaming, and her scream is probably the most annoying sound in the whole world. she attempts to get out, but ""accidentally"" falls back in. i will admit, the violence and story is good, along with harry manfredini's music, but the acting could've been a LOT better. there were two other characters, frank and joe. i don't know about you, but they bare a strange resemblance to dan akyroyd. also, when they find that woman's fried corpse in the bathtub, you would think they'd be screaming and barfing. No. Caroline Munro and the blonde woman are the only ones who react. Frank and Joe barely show any signs of fear or disgust. i don't know about you, but i know that if i saw a fried skeleton of one of my best friends, i'd puke. also, when joe starts saying stuff like ""what happened to marty was an accident, it wasn't our fault."" he says it like his nervous or scared but barely shows any facial expressions. then the blonde girl starts crying and says ""i'm scared frank!"". and she grabs joe. i guess the actress really didn't know which guy was which. the film's ending is the most confusing thing i ever saw. more confusing than the climax of ""jaws: the revenge"". all the eight friends end up dead, marty kills them all, but then, you see something that looks like him being chased by their rotted corpses, and then it just cuts to marty still in the hospital from the accident, and then when the film ends, marty dresses up as a nurse trying to sedate him, but then we see that marty has gotten into her clothes or somethin like that kills a doctor, and the film ends with marty peeling skin off his face. which leads me to this next question. WHAT WAS THE WRITER ON WHEN HE CAME UP WITH THAT?!?!?!?! did he actually expect people to understand just what the hell happened?? the ending left me so confused. were the characters still alive? is marty still holding a grudge? did the events we just see not happen yet or not at all? i don't know. overall, this movie was pretty dumb. the acting sucked, the music was okay, the story was pretty decent (except for the ending). basically, this is just one of your average 80s teen slasher flicks. see it only for harry manfredini and caroline munro. 2/10<br /><br />P.S. - Simon Scuddamore (Marty) committed suicide shortly after the film's release from intentional drug abuse. i guess he was the only person who knew this film was what it really was. A PILE OF SH**",0 +8939,Some bad reviews here for this and I understand why but treat it as a low budget serial killer film and you might get more from it than most.<br /><br />I thought that this worked in a way because afterwards I felt dirty and wanted to take a long shower so that is some degree of success isn't it?<br /><br />I would say there is just the right level of sleaze here to get under your skin although the acting is maybe a bit too uneven. David Hess is only in this brielfy so don not get your hopes up to much if you like Last House.<br /><br />Other than that - worth a look.,1 +24569,"I'm guessing the writers have never read a book of any kind, much less a Dickens novel, and certainly not David Copperfield, and that they based their screenplay on another poorly written screenplay, possibly an adaptation of Copperfield, though just as likely anything else, from which they randomly discarded about a third of the pages and then shuffled the rest, along with some random pages from a screenplay that someone's eighth grade nephew had written for an English class, and for which he had received a failing grade. <br /><br />If the casting was a bad joke - e.g., Richards as Kramer playing Micawber - which it was, then the direction and acting were the poorly- delivered punch lines. Getting beyond Kramer as Micawber, if possible, Ham was such a complete ogre, hunch-back and all, that I was half expecting at some point to see him being pursued by an angry pitch-fork and torch wielding mob of villagers. Uriah was almost as much of a clown figure as Micawber. Mr. Murdstone evoked about as much terror as that Muppet vampire from Sesame street. The actor playing older David was, I believe, actually a woman. In any case, looking perpetually as if he wished he could find a mirror to see how pretty he looked, and fancied that he looked quite pretty indeed, he could scarcely convince us that he was writing with a quill pen. And while we're on that subject, in one of the many gross inaccuracies perpetrated by the half-wit producers of this embarrassment, in the unnecessary shots of David writing his story he appears to be somewhere between 18 and 21 years old, when he should be in his forties. Perhaps the greatest transgression, although it's difficult to choose, was the invented showdown between David and Murdstone as he courted a third wife in Switzerland, preceded of course by the invented death of Murdstone's second wife. While they were at it it is a wonder they didn't send Heep to the guillotine, and have him deliver Sidney Carton's famous last words. It couldn't have made things much worse really. It might have been far far better.<br /><br />There are literally thousands of small and large sins against literature throughout this miscarriage of art, and anyone who watches it runs the risk of severe and permanent damage to all aspects of their sensibility.",0 +1661,"Love this film also. Saw it when it was first shown i8n Germany in a small independent cinema in Frankfurt. It was really crowded and it was a very ambitious atmosphere to. The erotic of the movie hit the spectators and the discussion with Moritz Boerner the producer and director was always underlined by that. In his genre it was a very ambitious movie even especially when you think that it was an independent movie.<br /><br />It doesn't exist much copies of that film, Mortitz Boerner came from the theatre and made two or three short movies more worked for TV as well before he became a sort of therapist.<br /><br />For the people who wish to see that movie again, you could find it on his homepage which isn't that easy to search for but its possible.",1 +7924,"I watched, entranced and mesmerized, by the vocal and physical acting. The roles each character played were done with excellence.The lyrics,the words, every gesture, the sunrise, told it all.The movie spoke to me. It enlightened me to a different perception of a person who believes in mankind. Who believes in peace and gentle behavior. I was also held in disbelieve, by the sacrifices and human dignity was portrayed. Power without grace, is demented and without feelings. To want power at the cost of mankind, is so unbelievable. This movie made me so afraid for the people who are no longer in this world. And, it is with sadness that I think of them. I like this movie for the conversations and face expressions to it all. May this movie be blessed.",1 +8928,"I stumbled on this late last night n TCM.<br /><br />Hadn't seen it since it came out originally, but had never forgotten it.<br /><br />I had completely forgotten how gorgeous and talented Signe Hasso was when she was still young, ditto for Shelly Winters before she balooned out.<br /><br />Ronald Coleman, though, was the quintessential state actor of his time - I had read Othello in high school English - and HATED it. After seeing ""A Double Life"" I read it again and finally understood what the play was about.<br /><br />The Gordon/Kanin writing team was at its peak when this script was done -<br /><br />A movie well worth remembering and rewatching,",1 +24312,"because you can put it on fast forward and watch the inane story, without having to listen to banal dialogue, and be finished in 10 minutes max. Come to think of it, even 10 minutes is too much to waste on Enid-Blyton-meets-struggling-wanna-be-artists. Vomit.",0 +21261,"Some of the worst, least natural acting performances I've ever seen. Which is perhaps not surprising given the clunky, lame dialog given to the one note characters. Add to that the cheap production values and you've got a movie that doesn't look like it even belongs on television. One doesn't expect much from a Lifetime movie, especially one this old, but this is nearly unwatchably bad.<br /><br />Plot-wise, it's a dreadful, clichéd romance of a type even Harlequin would consider beneath them. It's possible to guess how the remainder of the movie will go by simply watching the opening couple of scenes. Surprise, the only female character who gets any focus and the mysterious stranger end up falling in love.",0 +18607,"A painfully protracted, maudlin and predictable drama, my twenty-fifth Sidney Lumet film, Garbo Talks, gets filed precipitously on the low quality end of my quest.<br /><br />The film documents a harried young working man named Gilbert (Ron Silver), who is son to Estelle Rolle (Anne Bancroft), eccentric, feisty and above all, an obsessive fan of Greta Garbo. When Estelle becomes afflicted with a brain tumor, her son decides to go on an obsessive quest of his own: track down Greta Garbo, and bring her to his mother.<br /><br />Anne Bancroft is in full-on, chew-the-scenery Auntie-Mame mode here, that kind of feisty ol' gal that film loves, where she mouths off to people, and stands up for her ideals, and ends up in jail all the time. She stands outside of the film as an obvious artificial construct, and every scene with her is yuk-yuk lame; every note striking false. The rest of the characters are equally as one-dimensional, but tremendously less-interesting. Ron Silver is flat as can be, and his attempted love triangle is as telegraphed as anything else in the film: He is dating affluent Lisa Rolfe (Carrie Fisher), but becomes smitten with oddball co-worker Jane Mortimer (Catherine Hicks), and I called every scene three scenes before they happen.<br /><br />That's the other problem. One-dimensional characters can survive if they are posited in an intriguing and captivating story, but there's simply nothing here. The film's pace is glacial, resplendent with extraneous material that strengthens absolutely nothing, and when the film does begin to follow a linear plot, it's both plodding and uninteresting. There are plenty of guest stars, so to speak, including Harvey Fierstein as a gay New Yorker (imagine that) in yet another highly inessential scene.<br /><br />Late in the film, it attempts to make a halfway-decent statement on the nature of idolatry and its role in our lives, but by that time, none of the characters exist as real people, and the film had bored me into submission, so it functions as a case of far-too-little, far-too-late. The film is my twenty-fifth Lumet-directed film, making him easily my most-viewed director, but outside of a couple egregious misses (A Stranger Among Us, anyone?), he hasn't plumbed the painfully uninteresting depths of Garbo Talks.<br /><br />{Grade: 4.5/10 (C/C-) / #21 (of 24) of 1984 / #23 of 25 Lumet films}",0 +12767,"I love all types of films, especially horror. That being said, Survival does not live up to ANY of the hype surrounding it.<br /><br />I can't give it any points on originality. There is nothing wrong with exploring the same themes, or remaking what others have done. It has just become a cop out for indie films to take us on a slasher journey through the woods, a crazed killer, and as of lately, throw in some crazy family. On those lines I have to compare it with the likes of Texas Chainsaw, Wrong Turn (though the twist in that one is obvious), and others. Survival falls up way short against comparable films. The plot was just not original in ANY way. Some films can get by with a weak (and way over-done) plot with superb acting, special fx, or a slew of other factors. Survivial doesn't have any of that to bank on. If you will, note the following: The acting in the movie never took off. I don't knock or blame the actors for that, nor the director. The dialogue was at best mediocre, and the actors involved never showed (not saying didn't HAVE) the talent to pull it off. I mention 2 standouts. The leading man in this film certainly has the look, but I seriously thinks he needs to consider more training before he is ready to carry a film. The actor who portrayed Greg also had potential, but we never got to see any of it (watch the movie to see why, you won't believe it..).<br /><br />The grainy film look. Ah yes, that little tid-bit of film making magic designed to take us to the glory days of ""Grindhouse"" films. In today's film making, that has become a gimmick. It either works or it doesn't. In this case it just does not work. There are too many other flaws going on, so it winds up distracting from the film, not adding to it. That being said, I think they did a good job of adding that grain. That is some good, quality grain. I think with a different script, better direction, and possibly actors, they should try another ""Grindhouse"" attempt. They will probably pull it off.<br /><br />As far as the tech aspects, in my opinion, they never quite gelled for me either. Better care could have been taken with audio (sounds like it was fed directly into the camera, but there is nothing wrong with that) and for being shot on DV, it was too soft for my taste.<br /><br />That is all I have to say about that.....",0 +2442,"The first mystery is to guess what Welles' original film was like. That makes this a real adventure -- to see an incomplete skeleton and using cinematic forensics, imagine the beautiful woman it once supported.<br /><br />If you do, you will both see and experience perhaps one of the best film mysteries ever. As mysteries go, the narrative is rather ordinary: a simple diversion, one jealous husband as red herring.<br /><br />What's rather miraculous is Welles' placement of the story in an artificial eye seeing a dark, dark multifaceted world. The first real noir, but even darker. It's not an obviously twisted world, unless you think about the camera. What we can see firsthand is someone creating a vocabulary that would later become common.<br /><br />For all the celebration, Kane was a success because of the great drama and story. The camera's eye was shocking, but experimental. Welles would go from there to explore the mystery narrative and the self-reference of Shakespeare with this eye. Othello and MacBeth are both begun in this period, and I consider them part of a single vision with this. <br /><br />The noir feel here hinges on the notion that people are not in charge of their lives, even a little -- they are manipulated by random factors in the environment. So in telling this story, Welles has to make the environment into a character. Several characters as suspects in the mystery.<br /><br />Thus we have the famous lighting, blocking and angles we know (and have since seen countless times). And we have the deliberately closed sets: the park, yacht, picnic area, aquarium, dock, courtroom, Chinese theater and funhouse. I am certain that what was cut by the barbarians was lots and lots of 'external' narrative dealing not with character but with these strange environments.<br /><br />My own solution to the mystery is that the funhouse did it, among the other character-environments introduced as suspects. In other words, the manipulation of Black Irish (who we know from notes and one scene typing at the union hall was an aspiring novelist) was neither: a force of human conspiracy (the park or the civilized version, the courtroom) nor of nature (the picnic or the civilized version, the aquarium).<br /><br />Instead it was a matter of deliberate caprice by the gods for amusement. This is of course a self-reference to what Welles is doing: putting these people (including himself) through hell for our own caprice, a matter underscored by the Peking Opera set with Welles doped up. And of course leading to the funhouse where the environment directly tinkers with perception.<br /><br />More about the self-reference: surely there is conscious comment on his relationship with his soon to be exwife. But I believe there is strong subconscious comment on his own taunting the environment in which he worked, the studio environment. Surely Welles was as much screwed with, and in much the same way, as his character. And that screwing took the form of the murder of this film, leaving the rotting corpse mentioned at the beginning of this comment.<br /><br />That poor Rita comes from China ties up the whole thing, the Chinese theater, the expected rape from above, the loss of the woman. The investment in environment beyond all.",1 +1474,"this movie probably had a $750 budget, and still managed to surpass Titanic. i rented this the day i crashed my mom's car, and it was the only thing that cheered me up beyond belief! it has to be tied with 'The Assult of the Killer Bimbos'. Things to look for are: 1. The drive in blow job chinese girl scene 2. The bleach blonde in the sassoon shirt who never changes 3. The Flinstone-like screech out driving 4. The clashing ensemble worn by the redhead right before she gets killed (don't worry, i'm not ruining any surprises, for it's soooo predictable) 5. The guy who finds it necessary to howl. 6. The mental patient who plays a convincing job of being insane by poking out the eyes of a maniquen. 7. The hour long chase at the end involving the teacher and the priest. 8. the womman writing grafitti on the bathroom wall. 9. last, but not least, the wonderful special effects--especially the stab in the boob that made a... heaven help me... popping noise.<br /><br />enjoy!<br /><br />",1 +8525,"This movie is an awesome non-stop laugh riot incorporating all the usual ingredients of a Dawid Dhawan comedy - bumbling heroes , buffoonish supporting characters , made-up dolls for heroines , nasty villains , wisecracks , rocking soundtrack + choreography and a little dose of action . <br /><br />Amitabh Bachchan and Govinda both are in double roles of policemen and conmen . The heroine of Amitabh the cop is Ramya Krishnan and Raveena is opposite Govinda the cop . Heroines are mere rouge-smothered props as usual . The conmen have no heroines . Paresh Rawal carries his villainous act in DAUD forward (He played a similar Don in KHOOBSURAT too) . Asrani shines in a brief role . He does a retake on his famous ""Angrezon ke zamaane ke Jailer"" act in SHOLAY .<br /><br />Govinda is impeccable as usual - as a wisecracking , good-humoured policeman Pyaare Mohan and as a conman Chhote Miyaan . He imitates Bihari style of Hindi speaking with hilarious results . Amitabh Bachchan , believe it or not , pales in comparison with him . But still AB is fine . Madhuri Dixit does a cameo as herself in the song ""Makhna"" . She dances like wind . <br /><br />Viju Shah's music is awesome . Check out ""Kisi Disco Mein Jaayen"" , ""Makhna"" and the title track .<br /><br />Do not go looking for any LOGIC since it is a comedy and the screenplay is of convenience completely . Just Enjoy Yourself .",1 +20560,"The best thing about camp films in general is that you know what to expect. It's like watching a professional wrestling match or a day time soap opera or a Jerry Springer show: you immediately can follow the skimpy plot, identify the cardboard characters, and watch in satisfaction while all the cliches are being fulfilled. However, at times, the director does something real unexpected. It may be something extraordinarily stupid, or something weird, or something insightful. The director Makinen is up there with the best camp directors, and this is his best movie.<br /><br />In Yon saalistajat, everything seems to come together. There's nothing good about it, but still manages to be a coherent whole. Not once does the movie slow down - the action flows on and punches keep on coming.<br /><br />The weirdest thing is that there's no sense of time: some characters seem to take months doing something while other characters have only spent one hour at a bar. This is partially due to Finnish summer where the sun never sets, so you don't experience the day turning into a night at all.<br /><br />Finally: there is a plot, there, somewhere. You may have to watch the movie three times before you realize it, though.",0 +3366,"My mother and I were on our way home from a trip up to the North East (mainly Massachusetts) when we decided to take a little detour a attend a film festival in Boston. Now, I don't know much about film so I thought this might be a bit educational. The first movie we saw was this one, THE ROMEO DIVISION. Now, I don't know about you but I thought this was great! I'm from Texas and where I come from we don't see too many motion pictures so this was a pleasant surprise. My mother insisted that it was too violent, but said that I didn't know much about what she was saying but this was a great picture. I was shocked by the fight sequences they were great. Also, I am a big fan when the good guys win so I was thrilled when Romeo ladies killed all of the bad guys. This was true brilliance. I'm not sure when it's getting released on video but if you get the chance you should check it out. I think you'll be pleasantly surprised. A word to the wise though, it is rather violent and there many cuss words so you may not want to let your children watch. It's more for adults.",1 +993,Surviving Christmas is a surprisingly funny movie especially considering the bad publicity when it was first released. Ben Affleck is funny as an obnoxious millionaire who pays the family that occupies his childhood home to be his family for Christmas. He then drives the family crazy with overindulgence for Christmas cheer. I have not been a Ben Affleck fan in the past (though I did like Daredevil and Paycheck) but here he is well cast in this role. I also like Christina Applegate as the daughter in the family who can't stand Affleck's character at first. Sure you can see where this movie is going but you don't care. Ignore what the critics say and rent this movie out because it is funnier than a lot of Christmas movies.,1 +23747,"but there are not too many of them. Probably the worst ""major release"" film I have seen in my life. Definitely the worst for this year. There is no point in commenting on the plot, the cast or the acting. The problem is beyond all that. It lays in the absolute stupidity of the annoying kind (not the funny kind) of everything that takes place on the screen. I don't know why I gave it a 2/10 instead of 1/10. Probably, because of Steven Martini. He really did try. Bottom line - 95 minutes washed down the toilet along with a few brain cells. Avoid at any cost.",0 +10392,"this was the most costly film, when produced. Sir Alexander Korda and H.G. Wells were both distressed by its poor ratings---for good reason. it was and remains far ahead of its time. aside from the seemingly poor direction, probably editing, at the very beginning, the work moves along to a stunning conclusion.<br /><br />whether its Sir Ralph Richardson's 'Boss' role, or even better, his wife's, Sir Cedric's, as adversary to space-faring, Raymond Massey's 'John Cabal' center role---all deliver mind-boggling performances.<br /><br />the scene with mr. Korda's incomparable set, of the small girl-child, running out to an absolutely 'never-to-be-matched' scene, commenting 'Life just keeps getting lovelier and lovelier'? that swiftly brings tears to any parent/grandparent. this is not a film for the young--unless 'experienced' and rather those who have seen 'the horror' it opposes.<br /><br />sure, the 'phony-parachuting', looks hokey---while using a 'magnetic-cannon', now termed 'mass-driver' may be viewed as ridiculous, vs. rockets---give Sir Korda a break--Mr. Wells made that choice. and at +/- $8 million, this film went way beyond 'over-budget'---so he concentrated on what he could manage.<br /><br />the true power of this Greatest of cinema rests in 'John Cabal's' final statement of human destiny---his friend 'Passworthy' doubts the wisdom of space-faring, saying, 'We're such little animals.' John Cabal's proper response is,(paraphrased) 'Yes, little animals, and if that is all we are, we must live and die as such.' they are standing under a large astronomical telescope. he sweeps his hand over the night sky. 'Yet we may have all the Universe, or nothing.'---then the final chorus breaks in---'Which shall it be?'---this is not 'Star Wars', 'Blade Runner'---anything you may consider 'Great'---this is the Real Thing.<br /><br />i remind all of Steven Hawking's most recent address, upon his latest 'Medal of Honor'---'Humanity must leave Earth, or die.'---the very core of this work---i love 'standard entertainment'---yet this 'relic', for the wise viewer, offers far more. 'Which Shall It Be?' be in the proper 'mood'---whatever that takes---this will take your breath away---i 'guarontee'---overall, for humanity? the most significant of cinema. <br /><br />since posting, i note many have commented on the poor 'media-quality' of 'surviving' examples. in the 80's i developed a 'proprietary' 'colorization' process which required a 'clean' original. this led me to Michael Korda, who sadly noted all were gone---so we must relish what remains---'sad but true?'",1 +22883,"Most book adaptations are bad but this film left out key parts of the storyline and changed the description and some characters. They rewired the storyline and combined scenes and changed the order. They added ridiculous things into it that never happened in the book and would never happen.<br /><br />If i hadn't read the book beforehand it would have been an incredibly dull film, it didn't make you care about the characters, like them or dislike them. It turns the characters into jokes.<br /><br />Awful.<br /><br />Ridiculous.<br /><br />Waste of two hours of my life.",0 +24904,"I just finished ""Dark Chamber"" aka ""Under Surveillance"" and I'm stunned. Stunned, not by the film, but by some of the rave reviews I perused which influenced my watching it. The story was so ravaged by plot-holes and the majority of the acting so flat, categorizing it as a comedy seems appropriate. Seriously, I found myself shaking my head and laughing in bewilderment as I endured this movie.<br /><br />Justin leaves the confines of living at home with a pain killer-addicted mom to go live with his cop father despite Mom's warnings that Dad is no good. When a young woman is found murdered, Justin becomes suspicious of the tenants who reside in the adjacent apartments. With the help of a couple pals, he installs covert cameras to keep tabs on these folks. As the truth begins to unravel, Justin uncovers an unexpected secret.<br /><br />One positive point is that Felissa Rose is HOT! I would have generously slapped an extra star or two on here had she peeled down a bit, but no such luck. It would have been the film's potential saving grace. Eric Conley played Justin very adeptly, I thought, and I wouldn't be surprised whatsoever to see more of him in the future. <br /><br />The general premise of the film, although plagued by clichés, might possibly have worked had it not been for the ridiculously hollow ""performances"" of key cast members, most notably Alexandra Eitel (Kayla) and David H. Rigg (Justin's father). The horror! (pardon the pun).<br /><br />I have nothing against low-budget films. Indeed, I believe independent film is our only hope for decent film making in the days to come. I'll cut low-budget films quite a bit of slack when it comes to special effects, lighting, even musical score and the overall picture quality. I don't give allowances, however, for stick figure acting and a swiss cheese lover's script. There are a vast number of competently-made low budget films out there. Sadly, this isn't one of them. I can't help but suspect that at least a few of the reviewers who have praised ""Dark Chamber"" here are in some way affiliated with its production.",0 +5165,"I read Schneebaum's book (same title as this film) when it was first published and was deeply moved by his ability to see through the many ways of ""otherness"" (his own and the people of the Amazon with whom he lived and loved) to a way of living a decent life. His subsequent books were not as powerful, but showed his continuing quest. His description of his sexual relations with the men of the tribe was way ahead of its time in the early 60's, but his honesty and openness about it were welcome. This movie beautifully conveys both the quirkiness and generosity of the man, but also provides a glimpse into the inevitable destruction of innocence (which is not a morally positive term, in this case) that occurs when ""civilized"" men intrude on traditional societies. Even so, Schneebaum himself has moved into a kind of higher innocence that suggests the possibility of saving humanity from its own destructiveness.",1 +1713,"The first time I saw this, I didn't laugh too much. At the time, I was only about fifteen years old and thought that maybe some of the deeper humor was too mature for me to understand at the time. I had the same reaction when I viewed it a second time a few months ago, and this time, it was because Felix's aborted suicide attempt at the beginning of the movie kind of darkened the movie a bit. This scene made some of the things Oscar said and did to Felix later in the movie seem needlessly cruel, and their personality clashes weren't as amusing as they could have been. Had I not already known the story, I would have been worried that some of Oscar's antics to Felix might push him over the edge. As it was, it didn't make me laugh or smile like the television show with Jack Klugman and Tony Randall did. Still, all in all, a pretty good movie and it spawned one of the greatest sitcoms on television. 7 out of 10.",1 +14702,"Marie Dressler carries this Depression-era drama about a kindly bank owner, which recently aired on TCM during their April Fools comedy month. If you come with the expectation of big laughs courtesy the Dressler-Polly Moran team, you'll be disappointed, as this is really a very downbeat film. It's also very poorly made, surprisingly so considering it came from MGM. Leonard Smith's bare bones cinematography is strictly from the 'set up the camera and don't move it' school, frequently to the detriment of the cast, who find themselves delivering lines off screen (it's like a pan and scan print before such existed!) or having their heads cut off. The film doesn't even have a credited director, underlying the apparent fly by night nature of the production. Overall, it's an unsatisfying mess, with Dressler frequently over-emoting and only that bizarre, final reel dash to the bathroom to set it apart.",0 +19329,"The Wayward Cloud is a frustrating film to watch. Infuriatingly enigmatic, it treats each shot like a work of art. You get the impression that the composition of each shot has been designed and prepared with a degree of exquisite care that borders on obsession; Expressing how far cinema has progressed since the very first films were cranked out in the nineteenth century and mimicking their construction, the camera here hardly ever moves apart from during the camp and colourful musical numbers. Ambient noise is kept to a minimum and barely a word is spoken. This curious but effective device forces the audience to focus their attention on visual stimuli alone so that, even as the story progresses at a snail-like pace we feel ourselves becoming immersed. Unfortunately, for me at least, this immersion begins to unravel somewhere around the hour mark. I began to feel as if the film was challenging me to keep watching while becoming more difficult as the minutes dragged so that the mere act of watching became a battle of wills.<br /><br />Had the content of this film not been as sexual as it is it would no doubt been even more obscure to Western audiences. As it is, there's an abundance of female nudity and an act of sexual abuse on an unconscious (or possibly dead) woman that is so repugnant that, while it may speak volumes about the degradation to which pornography subjects both men and women (the users and the used) it is so over-zealous in the manner in which it chooses to make its point as to effectively render it ineffective. Of course the worst and most enthusiastic participants of the explosion in available pornographic content will seek this film out for all the wrong reasons and watch it with their sticky finger on the fast-forward button of the remote.<br /><br />For all its problems, the film is definitely a stayer, and the more you think about it the more sense certain aspects of it seem to make. Ironically, for a film in which so little happens, the viewer would probably be proportionately rewarded by watching a second or even third time. For me, however, once was enough ",0 +17959,"Waldemar Daninsky (Paul Naschy) travels to Tibet and is bitten by a yeti, which causes him to become a werewolf. He is accidentally killed after he attacks his cheating wife and her lover, and is later revived by a female scientist, Dr. Ilona Ermann, who uses him in mind control experiments. Daninsky later discovers an underground asylum populated by the bizarre subjects of the doctor's failed experiments.<br /><br />Upon hearing of Naschy's death from colleague Jon Kitley, I rummaged through my collection for a suitable film to watch. In my scramble, I found I own not one but three(!) copies of ""Fury of the Wolfman"". The film is of questionable video quality, the sound is dubbed in a mediocre fashion, the cinematography is sort of slapstick style at times. And the American versions have two love scenes removed. Quite frankly, without a remastered, uncut copy, I wasn't really getting the proper movie in all its glory.<br /><br />This film claims to be the fourth in a long series about the werewolf Count Waldemar Daninsky. I suspect this is true, but you wouldn't know this from the film itself. The plot is confusing at times, and there's really no indication that this is a sequel. If you read the plot summaries on Wikipedia and compare them to what is printed on the box, you'll see that I'm not alone in my confusion.<br /><br />Perhaps the film's shortcomings can be forgiven if we understand the production hell it went through. While floating around for years, it was only released in 1973, due to problems involved in finding a distributor. And Naschy said in his autobiography that the director, Zabalza, was an incompetent alcoholic, and that he hated working with him. Those really aren't light accusations, and I have no idea what Zabalza had to say on his own behalf.<br /><br />Chances are, sooner or later you'll come across a low-grade version of ""Fury of the Wolfman"". It appears in a variety of three-packs and box sets, so you might accidentally acquire it and not even know. What really needs to happen is an American uncut version, with a decent sound and video mix, and the love scenes thrown back in. As far as I know, this does not exist. Let us honor Paul Naschy's legacy and get his films to a wider audience in a level of quality he deserves.",0 +10507,Sudden Impact is a two pronged story. Harry is targeted by the mob who want to kill him and Harry is very glad to return the favour and show them how it's done. This little war puts Harry on suspension which he doesn't care about but he goes away on a little vacation. Now the second part of the story. Someone is killing some punks and Harry gets dragged into this situation where he meets Jennifer spencer a woman with a secret that the little tourist town wants to keep quiet. The police Chief is not a subtle man and he warns Harry to not get involved or cause any trouble. This is Harry Callahan Trouble follows him. The mob tracks him to this town and hell opens up as Harry goes to war. Meanwhile the vigilante strikes again and the gang having figured it out is ready for her. Jennifer Spencer is caught and Harry comes to her rescue during the film's climax. Sudden Impact is not the greatest Dirty Harry but at the time it gives us a Harry that is very much an anti hero ready to go to war just to pursue Justice. Again not the best not the worst but the one with the most remembered line. Go Ahead Make your day.,1 +3789,"This film is about a man who has been too caught up with the accepted convention of success, trying to be ever upwardly mobile, working hard so that he could be proud of owning his own home. He assumes this is all there is to life until he accidentally takes up dancing, all because he wanted to get a closer look of a beautiful girl that he sees by the dance studio everyday while riding the subway on his way home.<br /><br />His was infatuated with her at first, going to the dance class just to idolize her, but he eventually lets himself go and gets himself into the dancing. It eventually becomes apparent to him that there is more to life than working yourself to death. There is a set of oddball characters also learning in the studio, giving the film a lot of laughs and some sense of bonding between the dejected.<br /><br />There is also revelations of various characters, including the girl he initially admired, giving some depth to them by showing their blemished past and their struggle to overcome it.<br /><br />The dancing was also engaging, with the big competition at the end, but it is not the usual story where our underdog come out at the top by winning it. Instead, there are downfalls, revelations and redemption.<br /><br />All these makes it a moving and fun film to watch.",1 +5094,"The movie shocked me. Personally i had herd mostly bad buzz. Well finally after owning the DVD for months now i pooped it in on a sleepless night. though the movie did drag the extra footage was used with purpose the seriousness of his passion and his recovery from addition to the game would have been less realistic if they had left out any scenes. The best thing about the movie is it's consistency with the relationship. There were no ex's popping up or characters threatening the relationship. I mean typically we see the girl meets boy by some amazing twist of fate,they date,something we saw coming breaks them up up and then they get back together in the last five minutes of the movie. but this movie did not follow that mold. We actually experienced the relationship and it's flaws and though the characters did have there moments of anti-love they did not have dramatic pauses were they went off and did a montage every 15 and then reunite in love again. i did not feel the movie was as predictable as the rest of the romance movies. The story was unique and truthful to reality in the way that i felt these people in the film were the most believable that i have seen in a romance film from modern times.And it did not hurt that all the baseball games were real and they were at the actual world series so fate kicked in a little there also. It's no ""My fair lady"" but it is a spirited and honest film. I'll simply say i like it.",1 +18356,"I will never be a member of any club that would have me,<br /><br />especially this one.<br /><br />Starr Andreeff is a single mom/stripper who gets attacked by a<br /><br />female vampire and left for dead. She begins to get a hankering for<br /><br />blood, and meets up with John Savage, looking like he's<br /><br />wondering where he left Michael Cimino's phone number. Savage<br /><br />is also a vampire and wants to let Andreef join his little vampire<br /><br />family, which consists of a British vamp, the blonde vamp who<br /><br />attacked Starr, and a green haired midget (I am not making this<br /><br />up).<br /><br />The family does not want Starr, so they try to kill Savage and Starr<br /><br />and Starr's kid.<br /><br />Someone forgot to tell John Savage that this was a drama. He<br /><br />spends most of his screen time exhibiting more facial tics than<br /><br />Hugh Grant on a Jolt Cola bender, and he reads all of his lines like<br /><br />he is making a Farrelly Brothers film. Andreeff tries to make the<br /><br />most of a badly written role, but screenwriter/director Ruben goes<br /><br />for all the vampire cliches, like Starr eating her son's pet hamster<br /><br />and buying a lot of raw meat to fight the craving for blood. The kid<br /><br />also gets knocked around a lot, for those who think watching<br /><br />violence against children is really entertaining.<br /><br />The film is extra gory, but not in a wild, over the top way like ""Killer<br /><br />Tongue."" Here, the gore is gross and never justified, it just occurs.<br /><br />It is just in the budget. Most of the R rating goes to Andreeff's<br /><br />coworkers, who are put through embarassing strip routines in the<br /><br />background of conversation scenes. The budget does not include<br /><br />vampire fangs! All the vampires here must stab their prey to eat.<br /><br />Nifty idea, unless you have already seen George Romero's<br /><br />""Martin.""<br /><br />Even at 77 minutes, and once you throw in Ruben's attempts at<br /><br />arty direction (skewed frames, blurred scenes), this is one<br /><br />tiresome, dull, and dirty ride. Leave this club and take a shower,<br /><br />you will need it.<br /><br />This is rated (R) for strong physical violence, gun violence, sexual<br /><br />violence, strong gore, strong profanity, female nudity, sexual<br /><br />references, drug abuse, and adult situations.<br /><br />",0 +23529,"After watching ""The Bodyguard"" last night, I felt compelled to write a review of it.<br /><br />This could have been a pretty decent movie had it not been for the awful camera-work. It was beyond annoying. The angles were all wrong, it was impossible to see anything, especially during the fight sequences. The closeups were even horrible.<br /><br />The story has Sonny Chiba hiring himself out as a bodyguard to anyone willing to lead him to the top of a drug ring. He is approached by Judy Lee, who is never quite straight with Chiba. Lee's involvement in the drug ring is deeper than Chiba thought, as the Mob and another gang of thugs are after her.<br /><br />The story was decent, and despite horrible dubbing, this could have been a good movie. Given better direction and editing, I'm sure this would have been a classic Kung Foo movie. As it is, it's more like another cheesy 70's action movie.<br /><br />Note: The opening sequence has a quote familiar to ""Pulp Fiction"" fans, and then continues to a karate school in Times Square that is in no way related to the rest of the movie.<br /><br />Rating: 4 out of 10",0 +24425,"If I have to give this movie a score on a linear scale, then I have to give it a low score 3/10.<br /><br />But it was entertaining, and there are several good things to say about the movie.<br /><br />The psychiatrist candidate James Bishop is assigned to St. Andrews Hospital for his resident, and is exited and eager to ""change the world"".<br /><br />From the beginning of the movie you know that the hospital is hiding an evil truth, but James thinks he can make a difference and doesn't recognise this evil. <br /><br />The story builds fairly well, you know all the time that there is a truth in what the patients are telling about some resident evil, and wonder when and how James will discover this. Also when the break comes, James is in a way hunted by the evil, and you feel some suspense until ""the fight"" is over.<br /><br />Add an innocent beautiful girlfriend that arrives at the worst possible time and other standard horror elements, and you get the picture.<br /><br />The character buildup is actually fairly good, you are introduced to most of the people that gets killed, some of them you ""get to know"".<br /><br />The film sets an unpleasant scene, this is also done fairly well. There are mysteries that are unveiled - in an acceptable way.<br /><br />The main character, James is very believable - the story about an eager student starting to work is good in this setting.<br /><br />What kills this movie is: * Stupid special effects - a modern version of ""Plan 9 from outer space""-type bad (the evil monster looks like a red scarecrow) * Some bad acting (or probably very few takes when filming) - The main characters sometimes acts badly, and somtimes good. * The sound is at times very cheap.<br /><br />I kept thinking ""I could make a movie like this with my home video camera"" throughout the film.",0 +13626,"I'm into bad movies but this has NOTHING going for it. Despite what the morons above have said, it is NOT funny. I know comedy AND underground movies but this is so boring that the Director / Writer should be prohibited from EVER directing anything but local cable access EVER again! To love movies and comedy is to despise this film. I may never get over how unfunny and boring this work was. If you like this movie you ARE a pothead as sober there is NOTHING here. ZERO! If you need to compare underground movies, see ""Kentucky Fried Movie"" or early John Waters. The movie starts by defining satire and I defy anyone to show me the satire. The rule for comedy is THIS ... If it's FUNNY you can say or do ANYTHING but if it's NOT funny you are not satirical, you are not edgy, you are merely pathetic and this movie is simply not funny. ZERO!",0 +8863,"I stumbled upon this movie on cable and was totally hooked. The story of a group of surfers who ride the big waves, waves that are monstrously huge, waves that would make any rational person run away in terror is a one that manages to be spectacular and make you understand why people spend their lives chasing waves. There is nothing special about the film, other than it brings together some very interesting people who are are in love with what they do and lets them talk. Sure there are scenes of them surfing, but what makes this movie so special is the people. Here are a bunch of guys who are so enthusiastic about what they do that it crosses over to the people watching. Half way into this movie you'll want to go off and learn to surf as well. Few documentaries have ever managed to covey the passion that these people have and its the films ability to make us feel it that makes this a great film. See it.",1 +24777,"Mighty Morphin Power Rangers came out in 1993, supposedly based on the Japanese sentai television show that started back in the 1970s. Now as a fan of Japanese action films and series, you would think I would get a kick out of this show.<br /><br />You could not be more wrong. What worked in the Japanese version has become a complete abomination of television with mighty morphin power rangers.<br /><br />MMPR is based on five teenagers who get powers to becomes costumed superheroes with robotic dinosaurs who form an even bigger robot.<br /><br />Now this premise is more far fetched and more laughable than anything in either Transformers movie, yet, the ridiculousness of this show is often overlooked.<br /><br />It was followed by two really bad, and I do mean, really bad movie knock offs, and the actors starring in this series, completely disappeared from the scene.<br /><br />If you must choose, try watching Japan's Zyuranger series instead.<br /><br />Also, what's up with the awful long 1990s haircuts and all the earrings on the guys? It makes them all look feminine!",0 +11399,"This is one of the best Bollywood movies i have seen up until now. Family and friends feel the same way about it. This movie is really romantic and dramatic at the same time. In my opinion we need more films or movies like this to keep the south Asian culture alive. Shahid Kapoor and Amrita Rao acted extremely well in this, also their couple attracts a lot of people to the movies. This is a must see movie, it's a family and romantic movie. This movie is also from the makers of Hum Saath Saath Hain and Hum Apke Hain Kon. This movie is their best right now... the setting of the movie was beautiful which also is a huge attraction. This movie is must see... recommended to everyone!!",1 +22374,"I could not even bring myself to watch this movie to the end. I cannot comment on the story as I did not watch the whole film and the reason I couldn't watch it was because of the 'actors'. Firstly, for the most part they just looked stiff and I'm sure their scripts were in their hands just out of frame - but that's a minor issue. The main issue I have with the actors isn't really their fault... it's whoever cast this film! Come on, this movie came out in 2003... I thought that casting people in their late twenties to play teenagers went out of fashion with new wave?! I cannot watch a movie where one of the first lines, from a grown man older than myself, is ""I'm 17!"" How can anyone take that seriously????? Don't fall victim to this movie, go out for a walk for 90 minutes and you'll get far more than this movie could ever give.",0 +3455,I went to see Antone Fisher not knowing what to expect and was most pleasantly surprised. The acting job by Derek Luke was outstanding and the story line was excellent. Of course Denzel Washington did his usual fine job of acting as well as directing. It makes you realized that people with mental problems CAN be helped and this movie is a perfect example of this. Don't miss this one.,1 +7497,"I had no idea of the facts this film presents. As I remember this situation I accepted the information presented then in the media: a confused happening around a dubious personality: Mr. Chavez. The film is a revelation of many realities, I wonder if something of this caliber has ever been made. I supposed the protagonist was Mr.Chavez but everyone coming up on picture<br /><br />was important and at the end the reality of that entelechy: the people, was overwhelming. Thank you Kim Bartley and Donnacha O´Briain.<br /><br />",1 +20600,"Where to start, this movie started badly and ended badly! It consists of extremely poor acting and unrealistic effects that had me cringing in my seat, seriously, my cat could have acted better than this lot.<br /><br />Some of it was actually laughable because it was so unbelievable, i would of rated this lower but they haven't got anything else! So, heed my warning and unless your so bored your close to suicide and would like a good reason to continue with your suicide mission, don't bother with this one. I'm still in shock that this could actually be released to the public, this should be a crime and all involved should be arrested. I gather you've got the gist by now so i'll leave it up to you to decide.",0 +3581,"I think the reason for all the opinionated diarrhea on this movie is that most people have it out for Sharon Stone being around 50 and getting naked while playing sexy. No one cared when the Golden Girls sat around eating cheesecake and discussing their first orgasm, but to see someone post menopausal getting digitally pleased while driving I guess is just too much for some to handle. Let's face it, she looks good, she's light years hotter than my mother who's the same age! It's not an Oscar or a cult classic like the first, but ever since the turn of the century that's all movie goers seem to expect: a cinematic experience that will touch your soul. As such, it never claims to be either. It's an erotic thriller that is both erotic and thrilling, and is a continuation of a brilliant character that we all love to hate. It's the character of Catherine Trammell that helped give way for this sequel. Fans of the first movie want to see more of that frosty ice queen.<br /><br />The cinematography and art direction were lush and extravagant and made me want to move to Britian for sure. The score is amazing as well.<br /><br />Sure there's some overacting from some characters but there's some brilliant work from David Morrissey who's virtually unknown.<br /><br />There's a setback in that the script is virtually the same as the first movie only plugging in a psychiatrist in place of the cop. As well as the criminal decision of the MPAA to force the movie to be cut down even more which takes away from the guilty-pleasure raunchiness that the story is known for.<br /><br />At the very least it's entertaining and fun to look at it, and that's the movie's only intentions. So if you've got beef with Mizz Stone, maybe you should actually SEE the movie and draw your own conclusions before you spew forth your projectile vomit?",1 +12923,"Dull haunted house thriller finds an American family moving into a 200 year old house in Japan where a violent murder suicide love triangle occurred. <br /><br />Novel setting is about the only element of interest in this very slow moving horror flick by the director of Motel Hell. The film generates zero suspense and is composed of somewhat choppy scenes that rarely seem to be leading anywhere overall. <br /><br />One obvious example is a fairly early scene where the male lead visits a temple after realizing that his house is haunted as the monk had earlier warned. The monk recounts the history of the house (which the viewer is already familiar with from the opening sequence) and then the film simply cuts away to something else. Earlier the monk had offered to help. Well, where is the help? The family continues to stay in the haunted house as things get worse and worse and no mention of the monk is made until nearly the very end when he turns up again to do what he should have done an hour earlier--try to drive the spirits out of the house, although by this time it's difficult for the viewers to care.<br /><br />There are some (probably) unintentional campy laughs in seeing the American actors at the end become possessed by the Japanese spirits and suddenly start doing bad martial arts, I say probably because the scene is more than a little reminiscent of the chainsaw duel from the same director's Motel Hell which was more obviously meant to be amusing, but on the whole this is a forgettable dud.",0 +14978,"Michael Williams, who works for BBC, finds a somehow impressive Italian picture which gets mixed in the material of his ongoing task titled DIABOLICAL ART: A DOCUMENTARY. But since his wife's mysterious death her daughter, Emily, has been emotionally disturbed, so he goes Spoleto, where the problematic picture is, with her and her nanny, Jill. And there is a Countess, who is also a psychic, and she informs him that the picture was somehow made at the night that a young witch named Emilia was executed. Michael doesn't believe her story, but after that Emily has hysterical spasm and Jill is killed... This Italian film is, of course, almost innocently influenced by THE EXORCIST, but this one is much cheaper, much simpler,and in a sense, much dirtier. First of all, it should be said this film is full of confusion. For instance, the story shows Emily is a reincarnation of Emilia. But when Emily sees her in the flashbacks, she perceives her exclusively from a third-person's point of view. But if she is the reincarnation of Emilia, she should and must see the past from nothing but Emilia's point of view. Confusions of this kind, which the film has many, are almost exclusively based upon a problematic fact that the film is too cowardly, rather than ambivalent, to specify its own quasi-Freudian theme, namely, pre-adolescent girl's one-way incestuous wish. To make matters worse, this film also has characteristic problem (if not confusion); every character is too naive and helpless to be realistic and/or believable living human. Regarding Emily (or Emilia), she is after all a child, and one can say it is difficult to blame her mainly for her naiveness and helplessness. (And according to the Freudian theory, every girl wants to have her father's child(ren) in her own way. In this sense, Emily is not exclusively pathological; only her way of excluding other women from her father's love is problematically pathological. But, as I already mentioned, this film per se is too cowardly to be Freudian.) The problem is that adult characters are as childish and naive and helpless as Emily is. And because of this characteristic weakness even the psychic who can see almost everything cannot do anything down-to-earth, and because of the same weakness the very story of the film is ended in a badly escapist way. In addition, special effects of this film are incredibly cheap and laughable. Although Stelvio Cipriani's music is noteworthily beautiful (indeed this one is so good that it seems to be worth having it alone), the film as a whole is nothing but a cheap B-film which can disappoint even the 1970s'-Italian- horror-film-lovers.",0 +12471,"Sure, it was cheesy and nonsensical and at times corny, but at least the filmmakers didn't try. While most TV movies border on the brink of mediocrity, this film actually has some redeeming qualities to it. The cinematography was pretty good for a TV film, and Viggo Mortensen displays shades of Aragorn in a film about a man who played by his own rules. Most of the flashback sequences were kind of cheesy, but the scene with the mountain lion was intense. I was kind of annoyed by Jason Priestly's role in the film as a rebellious shock-jock, but then again, it's a TV MOVIE! Despite all of the good things, the soundtrack was atrocious. However, it was nice to see Tucson, Arizona prominently featured in the film.",1 +4189,"Despite what others had said (*cough*), this is my favourite movie of all time. I don't know how long I had been waiting to see it, but once I finally did, I immediately fell in love. Sure, it's strange, but that just gives it more of an exciting flavour. For those who don't know, Moonchild is one of Gackt and Hyde's first movies. They haven't done very many at all, maybe 3 or 4 tops each. So, give them some credit. We all know that Adam Sandler wasn't the best at first either. I do believe that they do throw some odd situations in there, but I over look that to find the best points of this movie, the emotions displayed and whatnot. Therefore, I have given, and always shall give, this movie a 10 out of 10.",1 +11623,"Action, horror, sci-fi, exploitation director Fred Olen Ray shows he has some talent as a director. Character actor William Smith is one of the best tough/bad guys in the industry. He treats the viewer with the best acting performance of his career. As for Randy Travis he gives his best Lee Van Cleef impression. He's not bad in the film. Smith and Travis make the movie. As for the rest of the cast none of them really stand out. Ray did a great job directing this flick, Smith and Travis were good, I'd give this B western on a scale of one to ten(ten being the best) a seven.",1 +15506,"Simply put, this is a simplistic and one dimensional film. The title, The Rise to Evil, should tell you that this isn't going to attempt to be anything deep or do much with Hitler's character. Rather, from the first minutes of the movie where we see baby Hitler looking evil with evil music playing the background, we are given a view of Hitler that presents his as a cartoony supervillian, seemingly ripped right out of a Saturday morning TV show. The film REALLY wants to make its case that Hitler was evil but does anyone need a movie to convince them that Hitler was evil? Ultimately, making him such a one-dimensionally evil character is both boring and confusing (one must ask how the inept, phsycotic character in the film cold ever persuade a nation to follow him or be named Time's man of the year). This film had a great opportunity to take a figure who has committed some of the most horrible acts in the 20th century, and try to delve into his mind. Instead, it basically just says, ""Hey! Hitler was evil! Just thought you might like to know..."" over and over again. The great irony is that the film still was attacked for presenting too sympathetic a view of the character. Give me a break.",0 +18869,"I'll admit that I liked the first one, and was really looking forward to the sequel.<br /><br />I was let down. Sure the special effects were technically amazing -- but they weren't believable looking. It looked more like a cartoon. Alright, I admit to liking 80% of the chase scene -- but the fight with all the Mr Smiths? It was too obviously animated.<br /><br />I can accept all of that. What I can't accept is that the non-action parts were crap. Every time Morpheus opened his mouth, I knew I was in for a speech that went on forever and signified nothing.<br /><br />I was also disappointed with the little plot that did exist. What this movie did was tell us that there was no truth in the first movie (except about the existence of the matrix). This movie was a little like seeing the episode of DALLAS where you find out that the entire previous season was a dream.<br /><br />Ugh! I want my $7.00 back!",0 +10907,"While this was a better movie than 101 Dalmations (live action, not animated version), I think it still fell a little short of what Disney could do. It was well-filmed, the music was more suited to the action, and the effects were better done (compared to 101). The acting was perhaps better, but then the human characters were given far more appropriate roles in this sequel, and Glenn Close is really not to be missed, as in the first movie. She makes it shine. Her poor lackey and the overzealous furrier sidekicks are wonderful characters to play off of, and they add to the spectacle Disney has given us. This is a great family film, with little or no objectionable material, and yet it remains fun and interesting for adults and children alike. It's bound to be a classic, as so many Disney films are. Here's to hoping the third will be even better still- because you know they probably want to make one. ;)",1 +18197,"Rebar is an astronaut who goes on the world's first space mission to Saturn, but of course this being a horror movie things turn ugly and he returns to earth as the only survivor. Stricken with some bizarre condition that causes him to slowly melt and lose his mind unless he regularly consumes human flesh, he kills what apparently is the only nurse in the hospital and escapes to the neighboring town to stalk more victims.<br /><br />I liked the premise and the monster and gore effects are actually pretty good, but the space scenes are just pasted together out of stock NASA footage and the hospital looks curiously like a warehouse. A very weak script, little character development and overall poor acting keep this one from rising above being anything other than a mediocre slasher flick with the novelty of having a living candle as the killer, and more or less only has its gore effects to hold your interest.<br /><br />4 out of 10, strictly for the most die-hard monster movie fans.",0 +5096,"This is a great movie for the true romantics and sports lovers alike.<br /><br />Drew Barrymore is at her best in this movie. As a Drew fan it was quite nice to see her shine after having several flops. I had my doubts about Jimmy Fallon but he totally delivered as Ben the comical, sports crazed sweetheart. The comedy in this movie is great, there were several laugh out loud moments.<br /><br />Their first date started rocky when he showed up at her apartment with flowers and she was sick to her stomach from eating a new place earlier in the day. Instead of leaving he helps take care of her, helping her change into pajama's then cleaning up the puke on her toilet and bathroom later telling her that she was 'very lady-like...no chunks.' Everything goes great between Ben and Lindsay the whole winter but then baseball season starts. Lindsay starts to realize just how obsessed Ben is with the Red Sox and why this seemingly great guy is still single. She tries to shrug it off and think of it as a good thing as she has a busy work schedule and she wont feel guilty for working extra hours while he is at games. She even buys all the books on The Red Sox she can find including one on 'The curse of Bambino'.<br /><br />Everything is going pretty well until Lindsay has a false alarm having missed her period. It both makes them both realize how serious they are getting and she begins to question if this is the person she wants to be with. A very touching part in the movie is after she tells him she got her period it shows him sadly putting away a baby sized Red Sox jersey he had bought just in case she was pregnant.<br /><br />Eventually Ben tries to show her how important she is and decides to go to her friends birthday Party after she said ""I had to check my calender and when I saw the there was a Red Sox/Yankee game I knew I would be going stag'. After the party Ben tells her it was 'the best night of his life'. Shortly after he gets a call from his pal who went to the game he gave up for the party and told him ""IT WAS THE BEST GAME EVER!!!"" Ben freaks out about missing it and ends up really hurting Lindsay when she says ""A few minutes ago you were saying this was the best night of your life"" he says ""well that was a few minutes ago.""<br /><br />So they separate for a while, he realizes how immature his obsession is and decides to sell his season tickets which he inherited from his uncle because if he didn't it would 'remind him too much of what he gave up for them'. Lindsay finds out through a friend and decides to stop him realizing he is doing it for her. It ends very sweetly showing how his childhood love for baseball has been over shadowed for a whole new deeper love, Lindsay. They still go to the games and even attend the final World Series game and St. Louis and it is a happy ending all around. 2 thumbs up!!",1 +17185,"Ignoring (if possible) the tediously gratuitous marijuana smoking (which seems to be mandatory in Australian government-funded films) the cast of this movie gives a reasonably credible performance. That's a far as it goes. The rest is simply awful. The plot's overburdened with ""wow"" symbolisms which are meant to look good on film but go nowhere. A gross example is the giant peach float, obviously left over from a town parade and donated by the local canning factory. It was just too tempting to waste what was hopefully a free, but nevertheless irrelevant, prop! The peach is given a cursory, unexplained wash-down at one stage but that's where it ends.<br /><br />Similarly, the contrived ""black spot"" road sign where Steph's parents were killed, is intended to symbolize the eventual escape from her past, but her escape to what? She's had a pretty good deal where she was, especially considering her visual disability and the unending, loving patience and care of her understanding young female guardian.<br /><br />The Guinness' prize for corny melodrama, however, goes to the characterization of Alan. Alan successfully aspires to the noble role of trade union shop steward but ""rats"" on his fellow workers by becoming a supervisor for a wicked multi-national - hiss! hiss! As a supervisor, Alan performs the boss' villainous dirty work. He implements redundancies until, surprise, surprise, the whole plant is closed and Alan himself is left as a pathetic, unemployed failure. No cliché-free zones here, mate! Not only this, but Alan also loses the seductive Steph from the most unlikely relationship you'd encounter. If you think the plot is melodramatic and didactic, don't ask about detail. What's the significance of the shaving cream on Steph's seductive leg? Why doesn't the hotel, where the couple makes love, eventually twig that someone's gaining illegal entry to one of its grandest bedrooms and, among other pandemoniums, the sheets are regularly soiled - quite spectacularly on one occasion. Summing this movie up in one word: Avoid, Avoid, Avoid.",0 +1765,"A riotous farce set in the world of glamorous daytime soap operas! This film is hilarious! Admittedly, you have to have a taste for films with screaming, hysterical dialogue, over-the-top acting, and melodramatic plot twists. But if you do, you're in for one hell of a treat.<br /><br />Sally Field plays Celeste Talbert, daytime TV's ""Queen of Misery."" Celeste's cushy life is thrown into upheaval with the unexpected arrival of Lori Craven (Elisabeth Shue), her long-lost niece, and, simultaneously, Jeffrey Anderson (Kevin Kline - splendid as always), Celeste's long-ago lover. But Celeste has been hiding a deep, dark secret, and the arrival of Lori and Jeffrey might just bring it to the surface. Add in the diabolical Montana Moorehead (a wonderful Cathy Moriarty, in full ""gorgeous woman with testosterone to spare mode""), who is trying mighty hard to destroy Celeste's career; David (Robert Downey, Jr.), the weenie-boy producer of the soap who's secretly plotting with Montana to ruin Celeste; and, Rose Schwarz (Whoopi Goldberg), scriptwriter and Celeste's one true confidant, and you are in for a heaping helping of subplots and general chaos.<br /><br />Chaotic comedies like this are tricky to execute (does anyone remember 'Mixed Nuts'?), but when done well, can be pretty damn funny! A major ingredient that is necessary to any good comedy is the casting of seasoned pros who know that lots of times the funniest things are not said but seen in an expression or a look. Field, Kline, Goldberg, and the rest all work together so well and are clearly having a great time that it is hard not to become drawn in by their energy and enthusiasm. Shue is clearly the weakest link here, but she only draws attention to herself because she is surrounded by Field, Kline, et al. Moriarty is a stand-out in the showy villainess role, making you think of the hottest damn dominatrix you ever did see!! There are also lots of familiar faces that you'll recognize in small (but, nevertheless, all very funny) roles, including Carrie Fisher, Garry Marshall, Kathy Najimy, and Teri Hatcher. Director Michael Hoffman keeps the pace swift and the histrionic plot moving toward the big finish. Mention must also be made of Robert Harling's screenplay, carefully constructed to stage a soap opera within a soap opera. The dialogue is boiling over with great lines, delivered brilliantly by the actors (I'd be willing to bet that a lot of this stuff was improvised).<br /><br />Look, if you want to see a bunch of pros doing what they do best and having a great time doing it, get your hands on this one. If not for anything else, it will put you in a good mood and make you laugh!",1 +20586,"I am a Christian... and I feel this movie is awful.<br /><br />Nobody but hard-core, Bible-belt Christians are going to like this movie. The message is just too in your face. If you want to touch a wider audience, you have to be way more subtle. You can't have the dad waving the bible around and carrying it with him in EVERY scene. RIDICULOUS! <br /><br />Poor direction. The reveal of people missing should have been terrifying, but it was laughable. They leave their clothes on the ground? It reminded me of old Ed Wood movies: ""Oh my God! People are missing!"" That scene in the plane is just stupid. Think about it: if you found your relative's clothes next to you, you wouldn't just scream ""oh my god. they disappeared! they're missing!"" and start crying and yelling. You would first be in denial... you just wouldn't jump to that conclusion. Watch Jodie Foster in FLIGHTPLAN. My favorite shot is the dog sitting out on the lawn with a pile of clothes and boots sitting next to him. I about fell off the couch I was laughing so hard.<br /><br />The music was so bad and so distracting. It was as if the composer was in his own world scoring his own movies. ""here's my chance to do a thriller"", ""here's my chance to do action!"" STOP TELLING ME HOW TO FEEL JAMES COVELL! A good score supports what's happening on the screen... this movie needed more of an UNDER score, but instead it was as much in your face as the message was.<br /><br />The writing was bland. So was Captain Christian Kirk Cameron. Chelsea was the worse: ""you don't understand! People are missing!"". Brad Johnson was laughable. The two stand out performances came from the Anti-Christ and the older guy (sorry, can't remember their names) In watching the ""making of"" (to answer my question of ""what were they thinking???""), the producers and filmmakers and actors are just deluding themselves... saying ""we're gonna reach wide audiences"" and ""brad Johnson is amazing"" and ""this is just like a Hollywood movie"". I came to the conclusion that they just don't know what the ""heck"" they are doing.<br /><br />I commend the effort. Getting the message to a wide audience is a fantastic idea. Film is the best medium possible to do that. Look at movies like WIDE AWAKE, SIGNS, CONTACT, PASSION OF Christ, even O'BROTHER, WHERE ART THOU? The bottom line is that the film needed to be made by people who have talent and vision. Unfortunately, it was not.",0 +14507,"When Samantha Eggar (as Phyllis Dietrickson) answers the door of her house swathed in a towel, you realize that as competent an actress as Eggar may be, she doesn't have the hypnotic allure of Barbara Stanwyck. And it is not entirely Eggar's fault. In the original film, Wilder had Stanwyck not only appear in a towel, but she enters the scene on the second floor balcony of the house. And she doesn't ""come out""; she appears, almost as if by magic. Walter Neff is staring up at her from below on the first floor. There is a reason for this. Stanwyck is much higher than Neff (Fred MacMurray) when they are first introduced. It is not just the towel. The towel adds to the seductive allure. Her pose is like a Greek Goddess overlooking her domain, and, in a strange way, you feel as if, from the start, she is actually controlling the entire situation. She has sexual, even magic, power. This person is no ordinary housewife. This person is a mystery with secrets hidden within.<br /><br />Back to 1973. The remake has Crenna knock on the front door. Stanwyck's stand-in, Eggar, answers the door with a towel around her. There is no ""appearance"". She simply opens the door. The alluring superiority that grabs the audience at the first appearance of Stanwyck in 1944 is entirely absent in 1973. She opens the door with a towel around her. It may be sexy in a Charlie's Angels sort of way, but it's not nearly as mysterious. The filmmakers of the remake seem to misunderstand Wilder's point. The script may have said ""Phyllis appears in towel"" so the filmmakers of the remake simply follow the instructions and include the required towel. The point is not the towel. The point is the enigmatic quality of Phyllis, and the potential power she wields. Wilder gave her a towel to add to her mystique. The filmmakers of the remake gave her a towel because that's what Wilder did. And in the choice of shot, lost all of Phyllis' mystique.<br /><br />Richard Crenna also seems miscast. He seems like he's ""acting"" and not really in the midst of the dilemma. Part of the problem is Crenna appears so much like a 70's actor. He can't get into the 1940's. When MacMurray first speaks into the microphone, sweat begins to drip from his face. No sweat on Crenna. And they also changed one of the crucial lines at the beginning. In the original, Neff says, ""I didn't get the money, and I didn't get the woman."" In the 1973 version, Crenna says, ""I didn't get the money, and I didn't want the woman."" Did the filmmakers completely misunderstand the entire point of the story? Or were they dumbing it down for a ""television"" audience?<br /><br />This made-for-TV movie is a by-the-numbers rendition. All the sharp edge of the original is lost. The only stand-out, maybe, is Lee J. Cobb in the role made famous by Edward G. Robinson. But he cannot save the loss of intensity of the original. This 1973 boring remake is a forgettable TV-movie made probably by the same people who did ""Gilligan's Island"". They might as well have tried to remake ""Citizen Kane"" or ""Gone with the Wind"". If mediocrity is the best one can hope for, what's the point? The 1944 classic is a Film with a capital ""F"". This made-for-TV remake deserves an ""F"" grade, or, maybe a ""D"" for dumb.",0 +9242,"It has been said that Deanna Durbin invented teenagery. This first film was one of the best. The humorous story presented a delightful 14 year old Deanna, a little beauty with a gorgeous voice, as the ""Miss Fixit"" in a family split by divorce. For plot summary, see other IMDb entries, but quickly Deanna and her two older sisters plan to go to America from Switzerland to prevent their father from remarrying. With an excellent supporting cast especially Barbara Read and Nan Grey as the sisters, good direction and editing, the film succeeds in captivating one even on subsequent viewings. Of Deanna's three songs, only ""Il Bacio"" is from the classical repertoire, but when she sings it in that police station scene, the film's place in history is assured. At least it was for this viewer who at the age of 15 was smitten for life with both Deanna and classical music. One of the many nice touches that occur throughout THREE SMART GIRLS is the brief glimpse of the drunk stretching his neck for a final glimpse of Deanna as the cops hustle him by! One unfortunate result of the success of this film was that subsequent writers for Durbin vehicles became locked into the ""Miss Fixit"" theme, which quickly became stale. Deanna herself never did. Her stature as an actress is more questionable than her charisma, which she certainly had. It seems to me that, like many another film personality, she substituted ""naturalness"" for the histrionic ability that she lacked. The ploy worked well for 21 feature films.",1 +23925,"It seems a shame that Greta Garbo ended her illustrious career at the age of 36 with this ridiculous mistaken-identity marital romp. Coming off the success of her first romantic comedy, Ernst Lubitsch's masterful ""Ninotchka"" (1939), where she was ideally cast as an austere Russian envoy, Garbo is reunited with her leading man Melvyn Douglas for a sitcom-level story that has her playing Karin Borg, a plain-Jane ski instructor who impulsively marries publishing executive Larry Blake when he becomes smitten with her. Once he makes clear that work is his priority, Karin inadvertently decides to masquerade as her high-living twin sister Katherine to test her husband's fidelity when he is back in Manhattan.<br /><br />It's surprising that this infamous 1941 misfire was directed by George Cukor, who led Garbo to her greatest dramatic performance in 1937's ""Camille"", because this is as unflattering a vehicle as one could imagine for the screen legend. Only someone with Carole Lombard's natural sense of ease and mischief could have gotten away with the shenanigans presented in the by-the-numbers script by S.N. Behrman, Salka Viertel and George Oppenheimer. MGM's intent behind this comedy was to contemporize and Americanize Garbo's image for wartime audiences whom the studio heads felt were not interested in the tragic period characters she favored in the thirties.<br /><br />However, Garbo appears ill-at-ease mostly as the bogus party girl Katherine and especially compared to expert farceurs like Douglas and Constance Bennett as romantic rival Griselda. Photographed unflatteringly by Joseph Ruttenberg, Garbo looks tired in many scenes and downright hideous in her teased hairdo for the ""chica-choca"" dance sequence. The story ends conventionally but with the addition of a lengthy physical sequence where Larry tries to maneuver his skis on a series of mountain cliffs that unfortunately reminds me of Sonny Bono's death. Roland Young and Ruth Gordon (in a rare appearance at this point of her career) show up in comic supporting roles as Douglas' associates. This movie is not yet on DVD, and I wouldn't consider it priority for transfer as it represents a curio in Garbo's otherwise legendary career. She was reportedly quite unhappy during the filming. I can see why.",0 +16408,"Meaning: if this movie got pitched, scripted, made, released, promoted as something halfway respectable given the constraints (yeah, I know, Springer, sex, violence), where is He?<br /><br />Reminded me of porn movies I saw in college, plot and dialogue wise.... shoulda just done something for the scurrilous porno market, showed penetration and be done with it-- would have made more money, the ultimate point of this exercise....",0 +15539,"Four porn stars romping through the Irish woods sounds like a film to watch. We have Ginger Lynn Allen, Chasey Lain, Taylor Hayes, and Jenna Jameson all together in one film. Are you licking your lips? Well the mutant creatures who resulted from centuries of inbreeding were certainly licking their lips as they feasted on the entrails of their victims.<br /><br />Yes, there was some flesh exposed - far too little considering the cast - but, it was soon ripped open to expose dinner for these creatures. There was definitely some action that probably has not been seen before, and more than one person lost their head in the situation.<br /><br />Unfortunately, director Christian Viel did not show much promise and I am not likely to watch his later efforts.",0 +20271,"This film was the recipient of the 1990 Academy award for Best Animated Short Film. Over the last few weeks, I have seen dozens of the nominees and recipients of this award from the last 30 years and I really think that this film might just be the worst of them all--yet it wasn't just a nominee but it won!! I assume that 1989 must have just been a horrible year for the genre.<br /><br />The film shows a group of characters that look a bit like super-skinny Uncle Festers. The appear to be simple articulated figures who are moved using stop motion animation. All are identical--with the same faces, bodies and clothes. The only difference is that each has a different number drawn on their backs. They are all standing on a large platform that is suspended, as if by magic, in space. Each has a pole and their is also a box on the platform. The platform begins tilting slightly and in response the men move about in an effort to balance the platform. This goes on and on and on and on for the longest time. The only relief from this tedium is when one of them acts rather nasty towards the end, but it just isn't enough to make this fun to watch in the least. Aside from passable stop motion animation, this short offers nothing of interest to me....NOTHING.<br /><br />By the way, the great short KNICK KNACK also came out in 1989 and I have no idea why it was not among the nominees. It was a GREAT short and was far better than any of the nominees that year or the year before. Perhaps Pixar's success in previous years resulted in a bias against them, but KNICK KNACK is so clever and so funny it seems almost criminal to have ignored it. Could Pixar have not entered it? This seems unlikely.",0 +10231,"Too bad a couple of comments before me don't know the facts of this case. It is based on actual events, a highly publicized disappearance and murder case taking place in the Wilmington, DE/Philadelphia PA region from '96 through 2000. I have to admit I was highly skeptical of how Hollywood would dramatize the actual history and events and was actually quite impressed on how close they stayed to what was constantly reported on local newscasts and Philadelphia Inquirer news stories throughout the time period. Of course I immediately pointed out that the actress (who I really like in Cold Case) who played Fahey looked nothing like her (Anne Marie was actually prettier). I have to admit though that Mark Harmon really nailed the type of personality that was revealed as Capano's and the behavior that Capano exhibited throughout this period. Details of the case were right on...no deviations of dramatic effect...even down to the carpet, gun, furniture, and cooler. In conclusion, I also wanted to add that I have met Tom Carper many times at various functions (a good man, despite being a politician) and I am so glad that he pulled the strings in the Federal realm necessary to solve this heinous crime. Guys like Capano are real and it was great to see him finally put behind bars.",1 +24765,"At least the under ten year old set will stay interested. Eleanor(Geena Davis)and Fred(Hugh Laurie)Little, a nice well-to-do couple set out to bring home from the orphanage a new little brother for their son George(Johnathan Lipnicki). They come home with quite the odd new sibling...a sharp dressed little mouse named Stuart(voiced by Michael J. Fox). Yes, mouse. Stuart is happy to have found the sense of belonging even if it is in a super sized world that contains his new family's pet cat Snowbell(voiced by Nathan Lane). Stuart embarks on the experience of family loyalty and overall friendship. George will finally accept his tiny new brother when the dapper dressed Stuart saves embarrassment at a model boat race.<br /><br />Also in the cast: Julia Sweeney, Harold Gould, Estelle Getty and Jeffery Jones. And the voices of: Chaz Palminteri, Bruno Kirby and Jennifer Tilly.",0 +22658,Unless you are an Evangelical Christian then make like an Egyptian and avoid like the biblical plague.<br /><br />Awful - why oh why does IMDb list the most favourable reviews at the top of the list - it was due to one of these that I have just wasted the end of what started out as good evening on this claptrap.<br /><br />The plot premise started out strong enough - I was drawn into the film and was interested right up to the point where the Bible sermons took over. What a waste.<br /><br />This film has so incensed me that I have registered with IMDb for the first time just to complain about it - I hope at least that by doing so I save someone else's evening.<br /><br />Hay - what a Christian act on my part ;-),0 +14759,"Movie about a small town with equal numbers of Mormons and Baptists. New family moves in, cue the overwritten dialog, mediocre acting, green jello salad with shredded carrots, and every other 'inside Mormon joke' known to man. Anyone outside the Mormon culture will have a hard time stomaching this movie. Anyone inside the Mormon culture will be slightly amused with a chuckle here and there. You'll be much better off watching Hess's other movies (Napoleon Dynamite, etc..) than trying to sit through this one. The acting is mediocre. Jared Hess has had his hands on much more quality films like ""Saints and Soldiers"", and ""Napoleon Dynamite"". I would recommend both movies over this groaner.",0 +17170,"I watch LOTS of bad films, LOTS!!!!!! It's kind of a hobby, really. Almost every Saturday nite a group of friends and I get together and watch trash from around the globe - ANYTHING. Turkish super hero movies, vampire flicks from Brazil, Italian gorilla transplant movies, Kevin Costner films, ANYTHING (except maybe Raising Helen) but Ihave never seen a WORST film than THEODORE REX. Never. And it's not even entertainingly bad in an Ed Wood kinda way - it just SUCKS. Now this film was famous in Hollywood at the time it was made because Whoopi took off the gloves and made it clear to the press and anyone else who would listen that she HATED THIS PIECE OF CRAP = she tried to get out of her contract, she whined, she moaned but nonetheless they pour her fat butt into this leather skin tight futuristic cop uniform that is ghastly to see, yikes!!!! And you can just see her seething during takes - doing everything but looking off camera for her agent so she can scream at him. The dinosaur has about three facial expressions and the script is so horrible a third grade class could do a better job if promised cookies.",0 +13845,"I read John Everingham's story years ago in Reader's Digest, and I remember thinking what a great movie it would make. And it probably would have been had Michael Landon never got his hands on it. As far as I'm concerned, Landon was one of the worst actors on earth, and his artistic license went way over the top, similar to his massacre of the ""Little House"" book series is proof. The acting, for lack of a better word, is atrocious, the screenplay sloppy, and there are more close-ups of Landon's puss than should be allowed.<br /><br />This movie reflects Everingham's story as much as ""Little House On The Prairie"" reflects the books is was ""based"" on. It's just another vehicle to show off Landons horrendous hair.",0 +22417,"I stopped watching lost at this episode because I thought Ana-Lucia and Libby's deaths were unnecessary and really depressing. Then I found out that they kept Libby around just to die in the next episode! Gah! I can't handle it.<br /><br />I liked this show for the first season, but it definitely declined in the second season, I found Jack and Locke's little religious feud to be annoying. The deaths of Rodriguez & Watros' characters was the final straw! <br /><br />I give this episode a 4/10, for being the end to my viewing of this formerly great series created by Alias legend J.J. Abrams. I hope his series in the future will improve on this one.",0 +1642,"This movie was excellent, a bit scary, but excellent at that. For those of you that have heard of columbine and know the story, it gives you a idea of what and why these kids did what they did. In the back of your mind you know that people think of this stuff, but you never realize just how bad it is, and this movie makes you realize. It's seriously that good. It also makes you think twice before you make fun of someone that's for sure. I read a book on the columbine massacre and it made me think, this movie makes me worry and scares me to death. On the downside it's like a how to kill someone guide for serial killers. I recently received a threat, and I blew it off thinking nothing of it, but after this movie I think you should take everything seriously. Some people are crazy and you never truly know which they are, so take it seriously and don't under estimate someone.",1 +13988,"I have seen romantic comedies and this is one of the easiest/worst attempts at one. A lot of the scenes work in a plug-and-play manner inserted strictly to conform to the romantic-comedy genre. Usually this is okay because we're dealing with a genre, but the challenge generally resides in making it original, new and inventive. This movie fails to do so.<br /><br />There is no sense of who the characters really are, apart from Sylvie Moreau's (who is the real star of this movie, not Isabelle Blais). They fit into this one-dimensional cliché and they become nothing more than simple puppets serving the purpose of a very light narrative.<br /><br />The pacing of the movie can become annoying, rhythm lacks, and the editing is filled with unnecessary close-ups. I should also mention the overly stylized decors making some scenes devoid of any naturally, or rather, making the attempt at naturally seem too obvious. Of course, along with that, you have the right-on-cue sappy music which unfortunately often sounds mismatched.<br /><br />I can't believe that a movie who makes obvious Woody Allen allusions ends up being this deceptive. If you expect a good light-hearted romantic comedy, this is not it. Or rather, this a poor attempt at it. You will only leave the theater wondering why this film has been getting such praise when cinema is now more than 100 years old and there are far superior Quebecois directors making better flicks.<br /><br />Les Aimants is a good movie for what it is. But it's a bad one if you regard cinema as an art and directors as auteur's.",0 +4032,"Growing up in a multi racial neighborhood back in the 20's and 30's, I grew up very close to most of the Italian families living there. This move brought back so many pleasant memories. this is a movie most people would like who enjoy seeing more true to life movies.",1 +21695,"On his birthday a small boys tells his mother he is not her son, and that he wants to go home to his real mother.<br /><br />In some ways Comedy De L'Innocence feels like it comes from a different time of movie-making, perhaps the 60's or 70's. Certainly it reminded me of Losey's Secret Ceremony (1968), and Richard Loncraine's Full Circle (1977), both of which deal with loss, grief and relationships between parents and 'lost' children (curiously both films star Mia Farrow).<br /><br />All three films are populated with unsympathetic characters who behave in strange and unexplained ways. All three films have a chilly feel, both emotionally and literally. All three films focus on mother-child relationships, and ultimately all three films pose the question - 'what is real, what is imagined?' <br /><br />Beautiful but flawed, it offers no easy answers and leaves much hanging, unexplained and strange.",0 +10042,"I'm not much of an expert on acting or other movie details, but this movie just hit me deep. I don't think I'll ever forget it. One scene especially (I think that anybody who has seen the film will know of which one I am speaking) is imprinted on my brain.<br /><br />I also watched the similar movie Lilja 4-ever (as referred to by a previous commentator). It was also very moving, but not quite as straight to the point and brutal. If you are sensitive at all, either will bring tears to your eyes, but Anjos Do Sol (Angels of the Sun) may stay with you forever.<br /><br />This is very depressing subject matter, but I think, no, I HOPE that the film succeeds in bringing more attention to it.<br /><br />More people need to see this film!!!!!!",1 +24620,"First I liked that movie. It seemed to me a nice comedy with some silly moments. The costume designer Albert Wolsky did his best!!! The same as wonderful set decorator Robert R. Benton - this man really had a very good taste!!! But the script writers disappointed me extremely. The best ending would be the scene on the ladder, but instead of it, they decided that the father and his daughter should be together. Don't like the ending. The father becomes boyfriend of his own daughter and his ex-wife knows about it and finds it alright. It would be OK, if the scriptwriters would for example say that now there is a different soul in the body, but they did not, they only deprived him of memories. The actors were good, they were really funny. Cybill Shepherd was charming, Robert Downey Jr. was very funny in the dancing scene : )))... But some of the moments spoil even the impression of good acting. For example, Corinne Jeffries, played by Cybill Shepherd after the death of her husband was waiting for him 23 years (it's a long time!), she was true to him, she loved nobody but him, and when she met him and was just about making love to him, after a scene with her friend Philip Train (Ryan O'Neal), she very easily betrayed the man she was longing for so many years!!! It would be a good movie, if not the ending and some missed human psychology.",0 +1422,"A very interesting entertainment, with the charm of the old movies. Tarzan faces the greatest perils without hesitation if the moment requires it, and we all enjoy with him his success.The most insteresting for me is a man without special powers facing the problems and beating them just with human skills (he was a great swimmer and had a great shout)",1 +19502,"Platoon is to the Vietnam War as Rocky IV is to heavyweight championship boxing. Oliver Stone's story of the experience of a US Army platoon in Vietnam in 1968 is so overdone it's laughable. While most or all of the occurrences in Platoon did occur over the 10+ year span of US military involvement in Vietnam, to portray these things happening to one small group of men in such a short time frame (weeks) gives a horribly skewed picture of the war. In Platoon, the men of the platoon see all of the following in the course of a week or two: US soldiers murdering civilians, US Soldiers raping civilians, a US Sergeant murdering another US Sergeant, a US Private murdering a US Staff Sergeant, US soldiers killed/wounded by friendly fire, 90%+ killed or wounded in the platoon. For Stone to try to pass this film off as the typical experience of a US soldier in Vietnam is a disgrace. Two Vietnam War films I would recommend are We Were Soldiers (the TRUE story of arguably the worst battle for US soldiers in Vietnam) and HBO's A Bright Shining Lie.",0 +3509,"I originally watched 8 simple rules on the Disney channel UK for the first series and got completely hooked. When they didn't show it any more \ was annoyed, but then abc 1 satred showing the 2nd series. i didn't think another series would start after I read John ritter had died, however the 2nd series wasn't amazing the latest series is back to it's old excellent standard. i hope they go on to produce more shows soon even though i could watch each show a thousand times. Kaley couco is my favourite character as airhead Bridget and also performs amazing in Charmed. Rory is also good, he shares my name and Grampa as well.I'll keep on watching it until it ends until then I hope it carries on as funny as ever",1 +23767,"Have to admit, this version disgraces Shakespeare upfront! None can act except the nurse who was my fav! Juliet had good skills as a teen but she can't give emotional depth to her lines and we really can never connect to her. She's worse doing the scene when she is contemplating drinking the sleeping potion...god stop whining! I would have poured it in her mouth to shut her up! Anthony Andrews...yikes! Considering his other great movies (Brideshead Revisited, Ivanhoe, Scarlet Pimpernel), he's quite a shocker in this one. And don't get me started on Romeo...puhleasssssee! It's still good to see if you're on the hunt to see every Romeo and Juliet ever made in the history of film. Olivia and Leonard's version is still the best, followed by Leslie Howard's version and then the current Leo and Clare!",0 +4003,"""Pushing Daisies"" for sure is one of the best TV shows of its genre in the last 5 years, agree you with that or not. Bryan Fuller, the creator, has an amazing creative mind. He's the mind behind other great TV Shows as ""Dead Like Me"" (2003), ""Wonderfalls"" (2004), and the other one not as great as these ones, but also interesting, ""Heroes"" (2006). It's a mix of the marvelous worlds Brian Fuller created in previous TV shows, mixing once again an amazing fantasy world with real kinds of people disguised into colorful images and exaggerated feelings, something that a fairytale always is. So, being a kind of fairytale, you cannot expect more than a unrealistic world and unexpected situations, or also situations a lot expected but not in a way that it would usually be told.<br /><br />A gift always comes with a curse, and what is sweet can also be bitter. That's so, Ned (Lee Pace), The Piemaker, is a simple guy with an interesting gift other than being an amazing chef: he can give life to the dead with just a touch. This could be a power that everybody would die - or live - for if wasn't for another simple and very sad thing: he can also gives the forever dead if he touches it again. The curse of this amazing gift doesn't stops there... everything has a compensation and if he brings anything to life for more than one minute, another specie of that one would die instantly. He's a guy full of unfortunate events in life in a way that he grown up introspectively, always afraid to touch everything and lose once more things he one day used to love. Till the day he could finally be close to his biggest childhood love, Chuck (Anna Friel), if wasn't for another sad fact: she was dead. He gave her life again and she loves him so much as he does, but this love is untouchable. The truly kiss of death. And that's how this beautiful modern fairytale starts.<br /><br />When I heard about ""Pushing Daisies"" for the first time it was promoted as something very familiar (or maybe some kind of tribute) to everything that Tim Burton has created since ""Pee-Wee's Big Adventure"" (1985) to ""Big Fish"" (2003) and ""Charlie And The Cholate Factory"" (2005). The results could not be better. The world around The Pie Hole was magnificent. The stories around Ned and Detective Cod (Chi McBride) to solve unsolved crimes can be a lot common in TV, but this is just a way to guide people thru amazing stories surrounding characters as Chuck and Olive (Kristin Chenoweth) in a wonderful world full of beautiful and dreamy images that you can almost sense the taste of the colors. Not only that, you are merged into a bunch of amazing and charismatic gentle characters, even those ones with the most deep dark humors.<br /><br />Forgetting the trivial concept of murders and unsolved crimes, the show brights and is triumphant in a lot of other things. The actors here are top of note. Lee Pace is tender, soft and contained as the character asks for. Anna Friel is the muse of the show as her character is supposed to be. But the most superb times are always with the supporting actors as Chi McBride (Detective Emmerson Cod), Swoozie Kurtz (as Lilly Charles), Ellen Greene (as Vivian Charles) and Kristin Chenoweth (as Olive Snook). Swoozie Kurtz shines performing a so dried character drowned in a impossible dark humor that could frighten a clown, for sure she has the best dialogs and her expressions and body languages are mesmerizing. But if the best dialogs are given by Swoozie and her character, the best funny moments are given by Kristin Chenoweth. Seems that she's improvising all the time, she's so naturally fun that every single scene is a show aside. Kristin shines so bright in the show that winning the 2009 Emmy for her supporting role in the show was totally fair and deserved. Also there's the chemistry between actors and their characters, that are also amazing.<br /><br />There are no words to express what this TV Show really is and what it was meant to be. For those ones who think this show is a waste of time or claimed to find no sense in it, for sure needs to open their minds and comeback to a time that they probably never had: childhood.<br /><br />Truth be told... TV has never been so daring in a TV Show as with this amazing one. ""Pushing Daisies"" was a huge step forward in terms of great artistic entertainment and its sudden death was a lot disrespectful. It's true that TV doesn't respect great TV shows as those ones Bryan Fuller created - except ""Heroes"" that's still on air and is far from being so amazing as the other ones.",1 +3393,"First things first, I was never once scared of this underrated gem as a kid (""Little Mermaid"" on the other hand...). As my title says this was one of my fav childhood movies that I still love as a teenager. It's a beautiful, bittersweet movie about a misfit German Shepherd called Charlie (fantasticaly voiced by Burt Reynolds) who is killed by his boss/partner in crime (is name ha,ha is Carface). Charlie is sent straight to heaven by default because ""all dogs go to heaven because unlike people, dogs are naturally good and loyal and kind"". Chalie gets sent back to Earth 'cause he winded up his life clock where he gets into even more mischief with his best friend, Itchy and a little orphan girl, Anne-Marie. I used to watch this all the time as a kid and I still sometimes watch it. Anyways, it's a beautiful bittersweet film as I said before that might just leave a tear in your eye...",1 +8161,"i know technically this isn't the greatest TV show ever,i mean it was shot on video and its limitations show in both the audio and visual aspect of it.the acting can at time be also a little crumby.but,i love this show so much.it scared the hell out of me when it first aired in 1988.of course it would i was 5 years old.but i recently purchased the DVD of the first 3 episodes,which unfortunately i hear is now deleted.and i also heard warner's aren't going to release any more due to the first DVD's bad sales.also the TV show didn't have the same feel as the movies,in fact i thought it had a more sinister tone.even though the colour palette is similar to nightmare on elm street 4(both that film and the TV show were made the same year),this has more of a serious tone whereas the fims were progressively getting more and more sardonic and jokey.not a bad thing,i like freddy as the clown wise cracker.but i think that was the strenght of this TV show,you didn't have freddy popping up every minutes cracking a joke before and after he kills somebody.in fact this has more of a dream feel to it,reinforced by the soft focus of the lense.im not sure if its deliberate on the part of the shows creators or just to the limitations of being shot on video. i love this show,and taken not as a companion piece to the movies can be very enjoyable.much better than anything on TV today.",1 +23655,"Be warned! <br /><br />This is crap that other crap won't even deign to be in company with because it's beneath them! Okay, got that out of the way, let me say something more substantive.<br /><br />I've seen Ashes of Time a very long time ago thinking it was a fresh take on the material which is based on a highly revered wuxia tome of a novel due to the emerging reputation of the director, Wong Kar Wai. Well, despite of all of that WKW hasn't succeeded at adapting the novel on screen according to a lot of wuxia fans; mostly it is just shots of dripping water, beads of sweats, legs of horses running, etc. I couldn't sit through most of the movie.<br /><br />Fast forward many years later when I wanted to give Mr. Wong's movies another shot after hearing many praises, especially from Cannes. I was intrigued by his latest, 2046. A friend told me to start w/ Chungking Express because it is his most accessible movies. So wrong! I was just p.o. that I got duped into wasting my time and money on this piece of pretentious nothingness. Some professional reviewers mentioned it as a meditation on alienation and loneliness in a modern big city, blah, blah, blah. It's all fine if the director has a point of view with something to say as to why these things happen and tell it. But no, he merely shows what is. Faye Wong's acting is very typical of Hong Kong's style: garbled enunciation, deer in the headlight wide eye expression, try to be cute and girlish kind of acting; the rest of the cast is equally uninspired.<br /><br />I think the word, Auteur, is a euphemism for a director who tries something new and different, which is to be applauded, but not one who hasn't yet mastered the art of cinematic story telling, which is what Mr. Wong is, for the last 17 years!",0 +23904,"there are those movies that are bad they are funny, then there are those where you scream ""i want that one and a half hours of my life back""...thats pretty much what this is.<br /><br />dean cain tries to be an actor but fails. the sfx are really bad (repeated scenes and rocks that look like falling paper) and the fake plastic guns that have torches taped on them...the split screen effect used to show multiple things happening at once is just terrible.<br /><br />this movie cant even be used as one of those simple night entertainers, its just that bad<br /><br />if i could go negative ratings, i would",0 +10436,"its too bad that no one knows anything about this movie, and it gets old telling people it's rap's version of spinal tap. and you know, im sorry i dont have any better comments, but damnit, go get the movie and watch it, and then make all your friends watch it too, just like im gonna.",1 +17603,"Interesting story about a soldier in a war who misses out on saving the life of a young girl from the enemy and is haunted by this event, even though he did save many other captive children. The film flashes a head and this soldier is now a teacher in a high school that is managed mostly by policemen patrolling the hallways, bathrooms and even class rooms. In other words, the High School is a prison and most of the kids pay very little attention to their teachers or principal. Dolph Lundgren,(Sam Decker) plays the soldier/school teacher and decides he is going to quit teaching and go into another field. However, the principal asks him to have a Detention Class as his last duty as a teacher. It is at this point in the film when all Hell breaks loose and the story becomes a complete BOMB. Try to enjoy it, if you decided to View IT !",0 +23183,"'SherryBaby' is quite a painful and sordid melodrama set in Jersey, the story of a young mother who is out of jail on probe after a drugs-related conviction and fights to stay clean, to find a place for herself in life and especially to win back the love of her kid daughter who is being taken care by her brother's family. The only reason the film is to be watched is Maggie Gyllenhaal, an actress at the top of her career, who fits very well in the role and carries the whole film on her shoulders. This is not enough however, as the story line is too simplistic and expected, and the emotional emphasis is put on the wrong place - I kept asking myself all over the picture whether I am supposed to be sorry about the ex and maybe future drug addicted mother as the director and script-writer wanted, or about the innocent kid who is in the middle. Even Maggie Gyllenhaal's acting could not convince me that I should not care more about the kid.",0 +683,"The Unseen is done in a style more like old Hollywood mysteries than a horror show. The film is somewhat slow but lots of bizarre imagery keeps it the film alive and watchable. The basic idea of young girls stalked by something in the basement is old, but good acting and production make the movie worth watching. The movie is notable for its emotional impact and certainly not for any explicit action or special effects. I rated it an 8 out of 10.",1 +2752,"What a lovely heart warming television movie. The story tells of a little five year old girl who has lost her daddy and finds it impossible to cope. Her mother is also very distressed ..only a miracle can alleviate their unhappiness.Which all viewers hope will materialise. Samantha Mathis is brilliant as the little girl's mum ,as she was as the nanny in"" Jack and Sarah"",worth watching if you like both Samantha Mathis and happy; year tear jerking movies! Ellen Burstyn is, as, always a delightful grandmother in this tender and magnificently acted movie. Jodelle Ferland (the little five year old) is charming and a most convincing young actress. The film is based on a true story which makes it so touching.""Mermaid"" is a tribute to the milk of human kindness which is clearly illustrated and clearly is still all around us in this difficult world we live in. ""Mermaid"" gives us all hope ,by realising that there a lot of lovely people in the world with lot's of love to give. James Robson Glasgow Scotland U.K.",1 +22174,"Admittedly, I didn't have high expectations of ""Corky Romano."" But then again, who did? However, I felt it deserved the benefit of the doubt. I had no high hopes of ""Joe Dirt"" either--another recent comedy starring an SNL cast member--and I ended up being pleasantly surprised. But this film is just as bad as it looks in the previews. Chris Kattan is actually a talented comic actor--contrary to what you might think after watching this movie--with great energy. He's been in many hilarious SNL skits, and I think he's one of the most talented cast members on SNL as of now. In this case, he's given a lame, pointless script and he tries to remedy each scene with his incessant mugging. Throughout each scene, he attempts a lame Jerry Lewis act and fails miserably. Jerry Lewis knew how to pull off this type of physical comedy, not to mention he worked with much better writing. Kattan simply looks like some ignorant fool with ADHD who had one too many Cafe Lattes. He doesn't even wait for the punchline; he assumes we'll all laugh once he starts jumping around like an ape on crack. In one scene, he ends up in a tugging match with a dog who has a package of cocaine in his mouth. The package explodes and the cocaine splashes all over him. He comes back to the job, strung out on coke. Now, how are we supposed to laugh at the fact that he's acting hyper and on-edge, when he's doing the same thing throughout the whole film? <br /><br />As for the rest of the cast members...Vanessa Shaw is really hot, Peter Berg is wasted in a thankless role and so is Chris Penn. Peter Falk is also wasted, though he has a few funny lines that I'm pretty sure he improvised. I hope Falk gets a decent movie someday soon. That's too much talent too waste on a clunker like ""Corky Romano."" I didn't like Falk's last movie ""Made"" all that much either, but at least he had a decent role. <br /><br />I chuckled a few times, but I could not get a single laugh. Each gag is performed with no sense of timing or delivery. And it's made worse by Kattan's hammy acting. And there are certain gags that are streneously dragged out. For example, when Kattan is about to fart in his two brothers' faces. He stands there for 2 or 3 minutes, trying to get out a fart and when he finally he does it's a little tiny one. It's bad enough when you have a gag that's funny and drag it out, but when you have a lame gag and you drag it out it's a hell of a lot worse. And another example of this is when he tries to translate what those two Asian men are saying during a drug bust. I can go on and on about what's wrong with this so-called comedy, but I'm not gonna waste my time. Like I said earlier, if you predicted bad things from the trailers--you predicted right. <br /><br />My score: 3 (out of 10)",0 +12167,"A fantastic show and an unrealized classic; The League of Gentlemen remains as one of the greatest modern comedies of recent times.<br /><br />With a dark and bizarre style of humor that towers over the tired, formulaic approach of it's inferior, yet unfortunately far more acknowledged successor, Little Britain, The League of Gentlemen was truly something special during a rather quiet era in British comedy.<br /><br />Up until it's arrival on the scene, there had never really been anything like The League of Gentlemen before. On the surface, a seemingly simplistic sketch show, the show soon unfolds as a vivid, sinister but incredibly hilarious universe populated with all manner of brilliant comedic creations. What really sets the show apart from it's rivals, is it's approach to telling us it's story. Rather than serve us re-hashed sketches, barely distinguishable from the next, here we see each individual or group of characters go through their various journeys and story lines. No visit to them is the same, and each time they offer us up with a surprise.<br /><br />Gradually, over three series' and a Christmas special, the fictional town of Royston Vasey is heaving with a grotesque yet hilarious populace. And that's probably the main reason why the show is such a joy to watch (and also the reason why the show would easily merit more series') Unlike other current shows like The Catherine Tate Show or more importantly Little Britain, the League both know when a character has run it's course, and have the opportunity to deal with that. Several fan favorite's, who could have easily been kept on to entertain further, bowed out before the series came to a close, giving room for fellow characters to grow more, or allow for the introduction of newer residents of Royston Vasey to make their mark.<br /><br />Another thing that sets this show above others is that the writing team approach the script process with care and intelligence. As mentioned before, all four members of the League have a sound mind when it comes to judging the longevity of their creations, and when it's time to call it quits in respect to certain characters. This awareness has also meant The League of Gentlemen undergoes a bold evolution, not usually seen in a show of this nature. The narrative driven, and far darker third series is a brave step away from the more sketch based first two series' and this bold move by the League really pays off. With the third series, there's less of an urgency for them to please an audience, and like the Christmas special, they pursue individual stories with a clear narrative, unlike the more sketch-based previous series' that (succesfully) binded together various sets of sketches into a series' long story arc.<br /><br />The third series is both a refreshing change of pace of style, as well as a real treat for fans who've already seen the first two. Despite some polarized opinion on the third series, any real fan of the League will appreciate what the third series has to offer, as well as really enjoy the more character based episodes, that only delve deeper into fan favorite's, but pair up and inter-wine characters that might not have crossed paths previously.<br /><br />It might take a little trying to get into the change in style, but it's definitely worth it, and in my opinion, the third series is the best and also provides a firm conclusion to the series.<br /><br />The show's not without it's drawbacks, and very occasionally certain characters and set pieces appear somewhat out of place, but for the most part, the genius writing, dark nature of the show and the host of brilliant characters (that are often all too close to real life) make for a real treat and prove what comedy should be about and puts much of the more recent, catch phrase driven and often desperate attempts at comedy to shame",1 +23495,"Amateurish in the extreme. Camera work especially overwrought - documentary camera operators needn't spin around ALL THE TIME.<br /><br />The script is truly inane, and the acting is even worse. On top of that, the story is disjointed and meandering - with some gaping holes in logic. At one point the lead wishes to get thrown in jail in order to rub shoulders with suspected Al-Quada operatives, and thus get an interview with Osama. I found the story entirely unbelievable as a result of so many flaws. The ""filmmaker""/lead role really portrays a rash, idiot frat boy. The only item of interest really, is that the filmmakers did in fact film on location. It's truly a shame they wasted their opportunity to make something interesting.<br /><br />Who financed this crap?",0 +13722,"I have this film out of the library right now and I haven't finished watching it. It is so bad I am in disbelief. Audrey Hepburn had totally lost her talent by then, although she'd pretty much finished with it in 'Robin and Marian.' This is the worst thing about this appallingly stupid film. It's really only of interest because it was her last feature film and because of the Dorothy Stratten appearance just prior to her homicide.<br /><br />There is nothing but idiocy between Gazzara and his cronies. Little signals and little bows and nods to real screwball comedy of which this is the faintest, palest shadow.<br /><br />Who could believe that there are even some of the same Manhattan environs that Hepburn inhabited so magically and even mythically in 'Breakfast at Tiffany's' twenty years earlier? The soundtrack of old Sinatra songs and the Gershwin song from which the title is taken is too loud and obvious--you sure don't have to wait for the credits to find out that something was subtly woven into the cine-musique of the picture to know when the songs blasted out at you.<br /><br />'Reverting to type' means going back up as well as going back down, I guess. In this case, Audrey Hepburn's chic European lady is all you see of someone who was formerly occasionally an actress and always a star. Here she has even lost her talent as a star. If someone whose talent was continuing to grow in the period, like Ann-Margret, had played the role, there would have been some life in it, even given the unbelievably bad material and Mongoloid-level situations.<br /><br />Hepburn was a great person, of course, greater than most movie stars ever dreamed of being, and she was once one of the most charming and beautiful of film actors. After this dreadful performance, she went on to make an atrocious TV movie with Robert Wagner called 'Love Among Thieves.' In 'They all Laughed' it is as though she were still playing an ingenue in her 50's. Even much vainer and obviously less intelligent actresses who insisted upon doing this like Lana Turner were infinitely more effective than is Hepburn. Turner took acting seriously even when she was bad. Hepburn doesn't take it seriously at all, couldn't be bothered with it; even her hair and clothes look tacky. Her last really good work was in 'Two for the Road,' perhaps her most perfect, if possibly not her best in many ways.<br /><br />And that girl who plays the country singer is just sickening. John Ritter is horrible, there is simply nothing to recommend this film except to see Dorothy Stratten, who was truly pretty. Otherwise, critic David Thomson's oft-used phrase 'losing his/her talent' never has made more sense.<br /><br />Ben Gazarra had lost all sex appeal by then, and so we have 2 films with Gazarra and Hepburn--who could ask for anything less? Sandra Dee's last, pitiful film 'Lost,' from 2 years later, a low-budget nothing, had more to it than this. At least Ms. Dee spoke in her own voice; by 1981, Audrey Hepburn's accent just sounded silly; she'd go on to do the PBS 'Gardens of the World with Audrey Hepburn' and there her somewhat irritating accent works as she walks through English gardens with aristocrats or waxes effusively about 'what I like most is when flowers go back to nature!' as in naturalized daffodils, but in an actual fictional movie, she just sounds ridiculous.<br /><br />To think that 'Breakfast at Tiffany's' was such a profound sort of light poetic thing with Audrey Hepburn one of the most beautiful women in the world--she was surely one of the most beautiful screen presences in 'My Fair Lady', matching Garbo in several things and Delphine Seyrig in 'Last Year at Marienbad.' And then this! And her final brief role as the angel 'Hap' in the Spielberg film 'Always' was just more of the lady stuff--corny, witless and stifling.<br /><br />I went to her memorial service at the Fifth Avenue Presbyterian Church, a beautiful service which included a boys' choir singing the Shaker hymn 'Simple Gifts.' The only thing not listed in the program was the sudden playing of Hepburn's singing 'Moon River' on the fire escape in 'Breakfast at Tiffany's,' and this brought much emotion and some real tears out in the congregation.<br /><br />A great lady who was once a fine actress (as in 'The Nun's Story') and one of the greatest and most beautiful of film stars in many movies of the 50's and 60's who became a truly bad one--that's not all that common. And perhaps it is only a great human being who, in making such things as film performances trivial, nevertheless has the largeness of mind to want to have the flaws pointed out mercilessly--which all of her late film work contained in abundance. Most of the talk about Hepburn's miscasting is about 'My Fair Lady.' But the one that should have had the original actress in it was 'Wait Until Dark,' which had starred Lee Remick on Broadway. Never as celebrated as Hepburn, she was a better actress in many ways (Hepburn was completely incapable of playing anything really sordid), although Hepburn was at least adequate enough in that part. After that, all of her acting went downhill.",0 +5107,"Robert Mitchum stars as Clint Tollinger in this short but tough western: Man With The Gun. Tollinger is a professional town tamer - as in, when a town needs someone to save itself; he is the one who is brought in to do it. Tollinger's latest gig comes by as an accident: strolling into town looking for his former fling, he stumbles into a town being played like a puppet by a local western gangster. But many townspeople begin to rue the day they hired Tollinger, as his way of cleaning up the town becomes very taxing (suddenly High Plains Drifter seems less original). <br /><br />Man With The Gun starts off as an average western tough-guy film but begins to surprise you more and more as the film progresses. What starts off as forgettable and run-of-the-mill ends up dark and character-centered. The entire film is very well shot and the cast is very enjoyable. Mitchum is his usual excellent self here in Man With The Gun - not one of his very best performances, Mitchum still has his classic and effective tough-guy screen presence in high gear and he knocks the action-packed, meaningful, and shocking scenes of the film right out of the park. Man With The Gun is a nice Mitchum western and is easily worth one's time.",1 +20912,"I can't imagine anyone would ever, in a million years, want to watch this movie. Not because it was one of the worst ever made (it wasn't), but largely because it's about 20 years old and oh-so-out of the mainstream. I was trying to find out where I saw an actor before and this popped up. So, yeah, a kid stops playing little league because he doesn't like nukes, this prompts major media attention and a quick resolution to the cold war. The end. A fantasy, to be sure, but one so cockeyed it would make John Lennon blush. Since terrorism has replaced communism as the -ism that scares the hell out of us, this movie really has no relevance, except as an (innaccurate) look back at those times. The writing, acting, and film craft are similarly undeveloped. The reason I rated it as highly as I did was because I watched this movie around 50 times while I was 5-6 years old and still have a little place in my heart for it, but I now realize that it doesn't quite cut mustard. So, if the law of large numbers holds true and someone eventually does decide to check out this movie, realize that there are much better ways to spend your time, but also much worse ones. (I will refrain from a John Q. tirade for now.)",0 +2173,"Great Woody Allen? No. Good Woody Allen? Definitely. I found myself, along with the audience in attendance, laughing hard and often at some of the best Woody Allen lines we've heard in a while. The aging Allen created an appropriate role for himself as Scarlett Johansson's ""father"" ... well, sort of. Some have said Johansson plays ""a young Dianne Keaton."" I beg to differ. She plays Woody's dialogue, which, in his comedies, always has a very similar feel...like, well, a Woody Allen comedy. That's fine for us Woody appreciators. She certainly did Woody's dialogue far better than the young cast of his last comedy, Melinda/Melinda. Some may find Woody's humor tiresome, but for those of us who love it when it's done right, we look forward to the next.",1 +23448,"Mike Brady (Michael Garfield who had a minuscule part in the classic ""The Warriors"") is the first person in the community to realize that there's murderous slugs in his small town. Not just any slugs, mind you, but carnivorous killer bigger then normal, mutated by toxic waste slugs (who still only go as fast as a normal slug, which isn't that frightening, but I digress). No one will believe him at first, but they will. Oh yes, they will.<br /><br />OK, killer slugs are right above psychotic sloths and right below Johnathon Winters as Mork's baby in the creepiness factor. So the absurdness of it all is quite apparent from the get go. The flick is fun somewhat through and is of the 'so bad that it's good' variety. I appreciate that they spelled out that this was Slugs: the Movie as opposed to Slugs: the Children's Game or Slugs: the Other White Meat. Probably not worthy of watching it more than once and promptly forgetting it except for playing a rather obscure trivia game. Director Juan Piquer Simón is more widely known for his previous films ""Pod People"" (which MST3K deservedly mocked) and ""Peices"" (which is quite possibly the funnest bad movie ever made) <br /><br />Eye Candy: Kari Rose shows T&A <br /><br />My Grade: D+ <br /><br />DVD Extras: Merely a theatrical trailer for this movie",0 +18215,"Once upon a time some evil people made a movie about a guy that got shot into space, supposedly to go to Saturn, but really only to some stock footage of solar flares, and then he gets a nose bleed, and before you know it, he's laying in a hospital bandaged head to foot, and then an overweight nurse with an ill-fitting uniform comes in and gets eaten by the guy, whose supposed to be melting all over the place but never seems to lose any mass, and then NASA, or at least one guy at NASA, gets upset about it and calls one other guy in to hunt him down, but the guy they sent to hunt the melting guy has to go home and have soup first, and his oddly-shaped wife forgot the crackers, so he can't have crackers, and then he has to go out and look for the melting guy with a geiger counter, and that doesn't really work, so he really only follows the trail of half-eaten corpses, and then there's something about a sheriff, and two ugly old people in a lemon grove, and a women with a meat cleaver, and some kind of industrial plant with trigger-happy security guards, and since I can't tell you how the movies ends, all I can say is Jonathan Demme is in it somewhere with some guy with the stupid name of Burr DeBenning, and if there's any justice in the world everyone connected with this movie died a hideous, violent death and was unable to make more movies, and the world lived HAPPILY EVER AFTER - THE END!",0 +14546,"Kirsten Dunst is terribly overrated as an actress. You can tell always she's just ""acting"". I like Izzard though. Plot is awfully boring. The viewer has no real connections to the characters, never knowing who to really sympathize with, or even care about. Slow, dull movie, with some laughs, but few and not very funny anyway. Plot is not engaging or suspenseful in the least. You can see each plot turn coming a mile away. What is this movie supposed to be? Comedy? Drama? Who cares? You won't by the end of this film.",0 +5513,"Robert Altman shouldn't make a movie like this, but the fact that he did- and that it turns out to be a reasonably good and tightly-wound thriller in that paperback-tradition of Grisham thrillers- shows a versatility that is commendable. In the Gingerbread Man he actually has to work with something that, unfortunately, he isn't always very successful at, or at least it's not the first thing on his checklist as director: plot. There's one of those big, juicy almost pot-boiler plots where a sleazy lawyer gets caught up with a desperate low-class woman and then a nefarious figure whom the woman is related with enters their lives in the most staggering ways, twists and plot ensues, yada yada. And it's surprising that Altman would really want to take on one of these ""I saw that coming from back there!"" endings, or just a such a semi-conventional thriller.<br /><br />But it's a surprise that pays off because, oddly enough, Altman is able to catch some of that very fine behavior, or rather is able to unintentionally coax it out of a very well-cast ensemble, of a small-town Georgian environment. The film drips with atmosphere (if not total superlative craftsmanship, sometimes it's good and sometimes just decent for Altman), as Savannah is possibly going to be hit by a big hurricane and the swamp and marshes and rain keep things soaked and muggy and humid. So the atmosphere is really potent, but so are performances from (sometimes) hysterical Kenneth Branaugh, Embeth Davitz as the 'woman' who lawyer Branaugh gets caught up with, and Robert Downey Jr (when is he *not* good?) as the private detective in Branaugh's employ. Did I neglect Robert Duvall, who in just five minutes of screen time makes such an indelible impression to hang the bad-vibes of the picture on? <br /><br />As said, some of the plot is a little weak, or just kind of standard (lawyer is divorced, bitter custody battle looms, innocent and goofy kids), but at the same time I think Altman saw something captivating in the material, something darker than some of the other Grisham works that has this standing out somehow. If it's not entirely masterful, it still works on its limited terms as a what-will-happen-next mystery-Southern-noir.",1 +21032,"First of all, if you'r a fan of the comic, well, you'll be VERY disappointed I'm sure ! Low budget movie !!! Largo is supposed to be Serbian in the comic, now suddenly he becomes croatian, pfff! chicken producers, it gave some spice and guts to the comic ( By the way, in the film, his father speaks Serbian and he speaks croatian... Lol ). The striking N.Y. Winch building becomes a common average-small yacht in H.K. The good looking Largo becomes some unshaved Tzigan/Turkish looking guy. Freddy the cool 'scarface' pilot becomes some fat, out of shape, sad, average guy. Simon, Largo's good buddy, does not exist at all !? He gave some pepper ! Largo doesn't throw knifes at all, but just some snake stares... The whole story is confused and looks like a pretentious TV-film. French directors and producers, if you don't have the money, the ability or the technology to adapt correctly the comic, please stick to some romance shooted in Paris. Very very bad film, good thing I just rented it, don't count on me to watch the sequel ( If there is any ! ).",0 +21000,"The comedic might of Pryor and Gleason couldn't save this dog from the tissue-thin plot, weak script, dismal acting, and laughable continuity in editing this mess together. It has a very few memorable moments, but the well dries up quickly. As a kid I remember this as a Luke-warm vehicle for the two actor-comedians, but there was always something strange about the flow and feeling of what was being conveyed in each scene and how this ties to the plot overall. Watching it again after many years, it screams schlock-a-mania. I'm not so concerned with the racial controversy, as I wouldn't mind seeing a movie take that issue on with a little levity. The most obvious fault to me is that the scenes are laid out like a jumbled, non-related series of 2 minute situation comedy bits (any not very good ones at that), that were stapled together by the editor after an all-nighter at the local watering hole. Characters change feelings and motivations on a dime, without rhyme nor reason, between scenes and within scenes, making this feel as though no one had any idea of what to get out of the screenplay. Not that it was any gem to start with. I feel bad for the two actors whose legacy is marred by this disaster that should never have been made. Maybe my sense of humor has become too refined...",0 +22709,"I wasn't sure how to rate this movie, since it was so bad it was actually very funny. I'm not a Gackt fan by any means, though he is talented, despite the weird pseudonym that sounds like a cat coughing up a hairball. I always thought Hyde was talented though, Faith is an interesting album.<br /><br />But on topic here folks. This movie is ridiculous. It's so over the top and nonsensical it's almost like a parody of supernatural action films.<br /><br />The movie has almost no plot here, except it's just about vampires with gangster friends. In a way, this film almost reminded me of Spider-Man 3, with how there were too many ideas, which resulted in not enough time to pay attention on one of them.<br /><br />The action scenes were laughable. Quickly edited, almost hard to understand, with choreography that's so laughably bad. Though Hyde looked very stylish during the action scenes, but that's this film's only such redemption. I'm a sucker for good action movies, but the action was horribly done. Though the final shootout was OK and the highlight of this otherwise depressing movie.<br /><br />It keeps jumping between genres, not a good thing. It wants to be a drama, or an action flick, or a horror, or a romance... what the hell.<br /><br />If this review is making you mad, why? Is it because Gackt and Hyde are your love? Don't fool yourself, this MOVIE IS BAD.",0 +15544,"First of all, Jenna Jameson is the best actress in this movie, and she's just awful. This movie has every horror move cliché in imagination, and all badly played. The over-sexed teen couple. The comical(not)horny jock. The snotty cool chick. The creepy local color guy. The parental-type couple. The virginal chick who amazingly never dies in these films. The dialogue is so painfully awful and delivered with the depth of a wading pool. It's almost like you're wishing that they'd all die sooner. I saw the rough cut of this film a while ago, but somehow, this just got worse. Sure, the funniest thing in here is the ghoul trying to eat Jameson's implants, but that hardly rates even a rental of this dog. Avoid at all costs.",0 +16847,"In an interview, David Duchovny said he hasn't been able to watch even the first hour of this film - and neither should you. The scene where he asks the owner of a house where a murder was committed if he can look around - change the name he gives and he could had lifted his performance from just about any episode of the X-Files. He's on autopilot for the whole film. Brad Pitt overacts appallingly.",0 +16094,"Must have to agree with the other reviewer. This has got to be the WORST movie, let alone western I have ever seen. Terrible acting, dialogue that was unimaginative and pathetic (let alone completely inappropriate for supposedly being in the 1800s), and oh, did I mention a battery pack prominently displayed on the back of one of the characters? I was waiting for the boom mike to fall in the middle of a scene. And the ending? The least I can say is that it was consistent with the rest of the movie...completely awful. And yes, it did contain every cliché in the book from the slow walk down the empty dusty road to the laughable ""let's remember when"" shots when a main character dies. Luckily I saw this on free TV. Don't waste your time.",0 +4119,"When I took my seat in the cinema I was in a cool mood and didn't plan on changing it. But this movie is a dramatic powerhouse. I was all in sweat and needed a shower afterward. So what have we? Theoretically a coming of age story of a teenage Turkish girl living in Copenhagen, Denmark. It came to my mind soon that the plot seemed pretty much completely borrowed from ""Bend it like Beckham"", where we had an Indian girl playing football and spoiling the wedding of her sister. Here we have it transferred to a Turkish girl spoiling her brother's wedding by doing Kung Fu. And we have a love story and a competition of course, too. After I accepted this, this really turned out to be a gripping, emotional drama and it shows off some beautiful Kung Fu (I'm not an expert, though). The lead actress Semra Turan is not only Denmark's female champion but she also delivers an excellent performance, so that it appears to be safe to assume that we have quite some autobiographic impressions here taking into account that this is her first movie and that she has no education as an actress. Rest of the supporting cast is okay, camera good, Kung Fu intense. Sidenotes: - The male Turkish audience showed respect so that they must have done something right. - The audience burst into cheers when our heroine finally fought back and attacked the boys who were gravely beating up her brother in revenge. - Xian Gao, a Chinese cinematic Kung Fu instructor/actor (Hidden Tiger, Crouching Dragon) played the lead role's master<br /><br />If you get the chance to see this in cinema do it, you'll probably have a good and intense experience and I don't know if this works on small screen as well",1 +3418,"All dogs go to Heaven is one of the best movies I've ever seen. I first saw it when I was like 3. Now I'm 12 and I rented it, it makes me think of things and it brings back so many memories, those were ""the days"". I love the music, I love when Charlie is arriving in Heaven, I love the song ""Let me be surprised"". I love how Charlie looks and his voice, Bert Reynolds could only play Charlie's voice this great. I love this movie, the 1st one is the best one because it's so original and great. It really does bring back memories that no one can describe, not even me. If only I could go back to those days. I love the characters. If this is the way the memories come back when I'm 12 imagine how I'll feel when I'm like 19, I hope I'll be able to watch this when I'm older. When I first seen this I never knew that I would really look back on it and feel this way , I hope it will be available to watch. I'm so happy that this movie was made and the amazing idea came to mind and heart. On a scale from 1-10 I'd give it a perfect 10. It's an amazing movie. It's so hard to explain the feeling, when I get older and if I have kids, I hope they can experience this feeling.",1 +24200,"Only the Antichrist could have been behind such a disaster. One only hopes that this irony was the motivating force behind the ""film""! This movie was so bad, it forced me to register with IMDb, finally, just so I could trash it. What makes this movie all the more tragic is that it had such GREAT source material! I have never seen a movie where all the elements were so grotesquely mediocre as to render the result less than the sum of its parts.<br /><br />It may seem insignificant, but I'd like to start with the score. As the proud owner of a music degree, I must register my indignation! I was torn between laughter and dry heaves as I listened to what John Scheffer did to Goldsmith's brilliant score; it was far more gruesome than any of the burlesque death scenes, and almost as inadvertently comedic. It was by far the most inappropriate score I've heard since, well, I really can't think of a worse one. Maybe JAWS 4?<br /><br />As for the plot... I'm sorry. New Age mysticism??? What ever happened to the gritty realism of the original trilogy? In those films (more so in the first two than the third, but still!!) the supernatural was for the most part implied, and it was this subtlety that made the movies so eerily believable. Here we have crystals going black (calling all Skeksis and Mystics!!) and inverted crucifixes galore, even though in certain scenes the crucifux would be perfectly normal but for the camera angle. Gone is the refined psychlogical manipulation tapping the malaise inherent in our collective psyche: in its place a boorish ""slap in the face"" of recycled cliché and transparent incompetence. Add to that a lead ""actress"" so unbelievably ANNOYING that you fervently thank the director for those scenes from which she is absent. Never have I seen a little girl so fundamentally irritating since little Stephanie ruined ALL IN THE FAMILY.<br /><br />Other than that, I have no strong feelings on the subject ;-) Luckily the first three films are sufficiently adroit as to render this train-wreck of wasted celluloid inconsequential or, at the very most, a study in how NOT to make a film. Viewer beware! May induce vomiting if you're lucky.",0 +35,"Previously, I wrote that I loved ""Titanic"", cried at its ending (many times over), and I'm a guy in his 60's. I also wondered about why this great movie, which won so many awards and was applauded by so many critics, was given only a 7.0 rating by imdb.com users.<br /><br />Well, I looked at the breakdown of the user ratings. While 29.0% of all votes gave it a 10 rating, 10.7% gave it a 1 rating. These 10.7% of these irrational imdb users, in effect, pulled the overall rating down to 7.0. <br /><br />In my previous comments, I blamed this very unusual voting pattern (a sudden surge in 1 ratings, with a high 10 rating, dropping only gradually and then suddenly reversing course and jumping at the 1 rating level) on only one thing: hatred for Leonardo DiCaprio. Believe me, I've tuned into enough chat rooms to see the banter by young people (young men, mostly), who defame him left and right. They absolutely hate the man, and they will have no part in giving him any credit in ""Titanic"". (To answer one other user: I am NOT talking about someone who just really doesn't like the movie that much, and gave it a 5 or a 6, etc. Everyone has, and is entitled to, his/her own taste. But no one can convince me that the imdb rating of only 7.0 overall for ""Titanic"", pulled to that level by an inordinate number of ridiculous 1 ratings, is a fair reflection of the overall motion picture.)<br /><br />Let me demonstrate my point by comparing the imdb user voting pattern of ""Titanic"" to 5 randomly chosen box office and critical ""bombs"" (there are many more, but these 5 will prove my point). ""Heaven's Gate"" (1980) was pulled from the theaters quickly after a very poor box office showing, and imdb voters' ratings were: 23.2% 10 ratings and 9.2% 1 ratings (overall rating of 6.1). ""Big Top Pee-wee"" (1988) got 4.3% 10 ratings and 9.9% 1 ratings (overall rating of 4.5). ""Cat People"" (1982) got 6.1% 10 ratings and 2.6% 1 ratings (overall rating of 5.8). ""Blind Date"" (1987) got 3.0% 10 ratings and 2.8% 1 ratings (overall rating of 5.3). ""Jumpin' Jack Flash"" (1986) got 4.4% 10 ratings and 3.7% 1 ratings (overall rating of 5.2). WHAT DO ALL OF THESE FILMS HAVE IN COMMON WITH ""TITANIC""? ALL OF THE PERCENTAGES OF THEIR 1 RATINGS ARE LOWER !!!! THAN ""TITANIC"", AND NONE OF THESE STINKERS EVER WAS NOMINATED FOR A SINGLE AWARD. Again, ""Titanic"" got 10.7% 1 ratings! Compare that to the other 5 movies I just mentioned.<br /><br />Can there be any explanation other than the hatred of Leo factor?<br /><br />",1 +8211,This movie is one of the best ever produced by disney.<br /><br />The plot is very original and entertaining. The animated sequence is also very well done with the live actors. (For the time).<br /><br />Perhaps one of my favorite sequences is contained in this movie with the march of the suits of armor.,1 +4730,"""Markham,"" says urbane gentleman crime-solver Philo Vance (William Powell) to the district attorney, ""I'm coming more and more to the belief that Archer Coe was killed in this room. That poker, this dagger sheath, now these fragments...it's all here."" ""But Vance,"" Markham says, ""do you mean to tell me a dead man walked upstairs?"" ""I'm not trying to tell you anything but the facts,"" Vance says. ""This is the most remarkable case in my experience."" <br /><br />We're sympathetic. Wealthy, arrogant Archer Coe, disliked it seems by all who knew him, had been found slumped in a chair in his bedroom, pistol in his hand and a gunshot wound to his head. But wait. Further examination shows Coe had been hit hard by a blunt instrument that fractured his skull. Then there's the dagger wound in his back. Complicating matters is that Coe's bedroom door and windows all had been locked from the inside. Coe was no suicide; this was murder. But how could the killer have escaped? What was the specific motivation since there are so many suspects? And why was Coe's brother, Brisbane Coe, found dead in the main-floor closet? <br /><br />The Kennel Murder Case, now 73 years old, still provides a stylish look at the old locked- room classic whodunit. What makes it work as well as it does is, first, the mystery is complicated and clever, but still is logical. Second, is the amusing, assured performance of William Powell. Consider his work as Philo Vance as something as a rehearsal for his great performances as Nick Charles. Few things escape Vance. He uses his wits to piece things together. He's also good company. Powell was a star in the Twenties and moved steadily upward in status and popularity when the talkies took over. His intelligence, style and effortless sophistication have made him one of the most contemporary-seeming of actors from the past. <br /><br />Also pleasant is seeing a few other great faces. There's Mary Astor as Hilda Lake, the young, resentful and potentially rich ward of Coe; Paul Cavanaugh as a titled Brit hovering around Hilda; Helen Vinson with her notably sultry and selfish manner (watch her really do her stuff in Vogues of 1938); Etienne Giraudot, a small elderly man as the fussy Dr. Doremus, whose job as coroner and medical examiner keeps taking him away from his meals; and Ralph Morgan as Archer Coe's private secretary. This movie has a high percentage of middle-aged men without an ounce of fat who can wear snug, English-cut tailored suits with ease. Most of all is Eugene Palette, with his noble belly and gravel voice, as Detective Sergeant Heath. Sergeant Heath and Vance are long-time acquaintances who actually seem to like each other.",1 +21258,"Where to begin? How best to describe just how awful this movie is???<br /><br />Let's start with the campy hick humor. It isn't very funny. Add a bunch of musicians impersonating actors - Meat Loaf is horrible and Deborah Harry is even worse. Pity poor Art Carney, who should have known better than to do this movie.<br /><br />And then there is the plot. A roadie whose life goal is to work an Alice Cooper show meets a girl whose life goal is to be a groupie for Alice Cooper. At least they get what they want...<br /><br />And then, just when the movie should end, they can't come up with a more plausible last scene than a - well, I won't ruin it for you if you really want to see the movie.<br /><br />There are certain actors that let you know that this is going to be a ""B"" movie or perhaps worse. Gailard Sartain is one of them for me - and he has a more prominent role. That's a sure sign that the movie probably won't be very good. If nothing else, the movie lives up to the low expectations - even exceeds them by being worse than poor.<br /><br />Let's just say this. This is the movie against which all bad movies are compared. And none are worse than Roadie.",0 +3184,"Deliriously romantic comedy with intertwining subplots that mesh beautifully and actors who bounce lines off each other with precise comic timing, a feat that is beautiful to behold. When Cher's spineless fiancé asks her to help him make peace with his estranged, moody younger brother, no one could dream the consequences which follow. Operatic symbolism, Catholic church confessions, love bites and falling snow...""Moonstruck"" is timeless and smooth. It takes about 15 minutes for the picture's rhythm to kick in (there's an early sequence with the grandfather and his dogs at the cemetery that's a little rough, and a following scene with Cosmo and the elderly man at the gate that seems obtuse), but the patchwork of the plot is interwoven with nimble skill, and the movie's wobbly tone and kooky spirit are both infectious. ***1/2 from ****",1 +3522,"Paul Hennessy and his wife, Cate must deal with their two teenage daughters and weird son...But after the untimely passing of John Ritter, the show became more about coping with the loss of a loved one...<br /><br />I found this show, passing through the channels one afternoon and I have to say I was laughing myself till my ribs ached, simply at the range of characters; the witty lines and the situation Paul would find himself dealing mostly with his daughters...From then on, I caught the rest of the show when I was free and I have to say the writing was very good..But then I read about John Ritter's death...Shortly afterwards I watched 'Goodbye' part 2 and I have to say I was nearly in tears, watching the emotions of the characters, losing a loved one...How Rory punches a wall in anger and frustration...How Cate deals with having to sleep in her bed all alone....Briget and Kerry talking about what they should have done.<br /><br />But the show does move on, bringing with it Jim Egan and CJ Barnes who provide great laughs, as Cate's father tries to protect his family and give 'man issue talks' to Rory...But the true gem is CJ...who is absolutely hilarious as the wild cousin.<br /><br />It will always be John Ritter's masterpiece.",1 +2724,"If you are already a fan of Peter O'Donnell's wonderful Modesty Blaise books from the sixties, you will really enjoy this movie. If you have ever seen the 1966 ""Modesty Blaise"" film, forget it! That was camp. This is the real Modesty Blaise. The story and character are both true to the Modesty that fans of the books know and love. It's a long way from Joe Losey's 1966 travesty, and it takes our Modesty quite seriously. Alexandra Staden is quite good and believable in the part, and yes, we do get to see her kick butt. chuckle<br /><br />This is likely meant to be the first movie of a series and as such it serves to introduce Modesty, her childhood and her days with Lob.<br /><br />Since Peter O'Donnell was the creative consultant on the movie, everything really rings true. Even the story O'Donnell told of how he conceived the character is just as he told it. Having read all the books, I enjoyed the movie even more for that.<br /><br />Now that Miramax has kept their option on the property by having Quentin Tarrentino make this film, I do hope to see more of the Modesty stories asap. Especially as the wonderful character of Willie Garvin makes Modesty's character really come alive. To that end, I really hope the film does well in Europe. I have no idea if Miramax intends to ever distribute the DVD in the USA. I suspect it might not do that well in the USA in general distribution. I wonder how Miramax decides where and how to distribute it's films.<br /><br />In the story, Modesty is in her early 20's, working at Louche's casino in Tangier. The flashback sequences are artfully done and take Modesty from about 9 years old, through her teens up to her current age in the movie - about 21-22, I'd guess. I really don't think there's a ""perfect actress"" for Modesty. For many of us Modesty fans, she's much too powerful a presence in our imaginations already. Alexandra Staden is credible. She is very slim, graceful and poised. She has lots of closeups. She has a great face - one that sticks in your mind well after the movie is over. According to O' Donnell's illustrator, Romero, Modesty has rather a fuller figure than Staden, but I'm willing to overlook that. If Staden continues in the role, I think she will mature into it - just as Modesty grows more powerful and skilled as she gets older. Staden already conveys Modesty's humor and absolute assurance very well. Go ahead and rent this movie, it's not like anything else you've seen and even though it was directed by Scott Spiegel, it is full of Tarrentino touches, great camera moves, lighting and well-done action sequences.",1 +6427,"The first 50 minutes of this movie were quite boring. It focused on the personal problems Doyle had, including his sick wife, death threats by fans, a pushy publisher and feelings of guilt concerning his mentally ill father. Even though these subjects had an important impact on Doyle's life, I was more curious about the birth of Sherlock Holmes. The last 40 minutes were excellent. We finally got a look inside Doyle head, how he created Holmes and why he had to 'kill' Holmes. The actors are excellent. Including the intriguing Selden played by Tim McInnerny, Arthur Conan Doyle, a compelling role played by Douglas Henshall and Brian Cox as the 'role model' for Sherlock Holmes, Dr. Bell. The locations are good, especially for a TV movie and the camera work is nice. If the first 50 minutes were as good the the last 40 minutes this would have been a small masterpiece.",1 +17190,"My teacher taped this and showed it to us in Child Care to demonstrate how teen pregnancy affects people. It just demonstrated how teen pregnancy affects a childish jock not properly educated on how sex works and a whiny, unloved girl who throws fruit when angry and couldn't tell she was with the wrong man even if he wore a sign stating he was such. I wouldn't be surprised if the father of the baby had about eight girlfriends in the first edition of the script. Stacy's (the carrier of the baby) mother is a riot. She is oblivious to the fact her daughter is past the age of four and is seemingly unshaken when people spy on her through her dining room window. Bobby's (the father) best friend's name is Dewey, and is an obvious rip off of Sean Penn's character in Fast Times at Ridgemont High. This movie is horrid, simply because none of the characters are believable. Thank goodness it's only made for TV, limiting the public's chances of viewing it.",0 +21292,"What starts out as a gentle country yarn, inoffensive and mildly enjoyable romantic tale changes pace as Edward Norton's initially charming Harlan gradually reveals more about himself and things take a turn for the sinister, as the film gradually changes from a southern romance to a modern wild western.<br /><br />An amiable rancher (Norton) wanders into town and charms a young girl (Evan Rachel Wood), seemingly rescuing her from a dead-end existence with her bad-tempered father with a whirlwind romance, but it gradually becomes apparent that there is more to this cowboy than meets the eye.<br /><br />Edward Norton a real chameleon actor (with changing facial hair to match) playing a country hick, accent slightly dodgy but maybe because he's merely trying to act the part without worrying about the accent. He certainly makes it appear effortless to make all the nuanced little adjustments as we learn more about Harlan. However, with too many small changes it means we are never sure exactly where Harlan is coming from, and what seemed like a good performance from Norton gradually becomes confused. Evan Rachel Wood is likable without ever really having a great deal to do other than bat her eyelids at Norton.<br /><br />Down in the Valley strikes as a slightly uneven tale due to its change of pace, and by never really making the protagonist's motives clear the audience's sympathies for the characters remain uncertain. Should we like this drifter or not? Even after a dramatic turn of events it remains unclear. This ambiguity is to the film's detriment, as if the writer could not make up their mind what kind of story they wanted to tell and settled for somewhat of a hotch-potch. Had the film remained one or the other it might have been a solid film, but as it is what we are left with is something of a mess. Fans of old-fashioned romance will enjoy a portion of the film but will be put off by the darkening tone. Completist fans of Norton aside (or fans of the lush scenery of the San Fernando valley), give this a miss.",0 +14377,"It's a waist to indulge such great actors in such a weak and boring movie. Besides all the unanswered questions posted in the other comments, what's so difficult about capturing the robbers? Just eliminate the bank workers, see who was at the bank-from all the cameras' footage angles-prior to the robbers entry and you have those extra 4 remaining robbers among the hostages. Where is the suspense every body is talking about? It was so obvious the moment the hostages were asked to change into this identical uniform that they were all going to walk out the front door... seen it many times. At least Mr. Spike Lee could have seasoned the movie with some good music score and artistic shooting. The Movie is not worth it. Pronto!",0 +5384,"(spoilers)<br /><br />I was blown away by this movie. I've been renting on movielink for a bit, and decided to check this movie out. Alot of boxing movies seem to overblow the blood. In this movie, it shows it at the amature level. Though I do wish that perhaps more attention would have been brought to perhaps her improving her grades. The movie points out the problems some families face with gender.<br /><br />I was a bit concerned with the ending. But the ending wasn't a disappointment either.<br /><br />I think it was pretty clear by the title that she'd win. What was unexpected was that the two of them got back together sort of at the end.<br /><br />Loved the score for some of the scenes. Highly recommended.<br /><br />10/10<br /><br />Quality: 9/10<br /><br />Entertainment: 10/10<br /><br />Replayable: 10/10",1 +5502,"Although Cameron Grant was clearly hired to replace Andrew Blake over at Ultimate Pictures when the latter started his own company (Studio A), he practically outdid the ""Master"" right out of the gate when it came to setting up steamy sex scenes. So, while all the window dressing Blake had pioneered (starlets in fetish lingerie and sun glasses, coiffed and made up as if they're about to hit the catwalk) remained very much present and accounted for, Grant added his own personal spin to the carnal content. In doing so, he raised the heat to a level that had eluded Big A ever since his first and IMHO best film NIGHT TRIPS. Cam's maiden effort, ELEMENTS OF DESIRE, might still have been handicapped by an overly slavish adherence to the Blake aesthetic (with a surfeit of girl on girl gropes), but his subsequent DINNER PARTY already shows him at the top of his form in what must surely rank as his masterpiece.<br /><br />The title spells out the premise as a group of well to do friends and acquaintances gather over dinner to swap sexy stories, with an extended orgy at the conclusion. Scrumptious Juli Ashton and Tammy Parks smear food stuff all over each other's flawless physiques in their kitchen sequence that is sure to delight those with a taste towards combining pleasures of the palette with those of the flesh. Busty Crystal Gold (here : ""Catalina"") was rarely more than a reliable second-stringer, adding spice to several Ona Zee bargain basement noirs, yet looks absolutely stunning here in a romantic four poster frolic with Fabio lookalike Vince Voyeur. Beautiful blondes Kylie Ireland and Yvonne, making out with Marc Davis (for the record, the latter two were an item at the time) under a waterfall, complete the eye candy section of the movie.<br /><br />Time to get cooking ! Early Jenna Jameson (""Daisy"" back then) foreshadows the greatness to come as she drains Frank Towers (""Mark Slade"" on his subsequent shift to the gay side of the industry) of all vital juices, albeit with a little help from brunette Diva for effective contrast, the scene's stylish industrial setting providing an atmospheric backdrop to the full tilt sex taking place. Impossibly hunky construction worker Gerry Pike seeks to cool off on a sweltering summer day by hosing down, a prospect too tantalizing for prim 'n' proper business woman Asia Carrera (at her all time most achingly pretty) to pass up. Best of show must be the imaginative sequence that has nasty Norma Jeane and handsome Sean Michaels teasing the pants off each other for starters ! while separated by a glass partition right until the predictably splashy conclusion.<br /><br />With sex that proves either artsy or hot, and more often than not both, Grant has concocted a veritable smörgåsbord of fleshy wares to continue the film's gastronomic analogy the title implies. Couples may be the prime intended audience, but an alternation between naughty 'n' nice should rightfully include that ""something for everything"" recipe so many adult features are aiming for. Acting as his own DoP, the director shows great eye for detail, like the shot of Asia Carrera's pristine white shoes being spattered with mud, enriching his vision. This marks him out as a great filmmaker rather than a merely serviceable one, as was the case with Nick Steele who stepped up to take his place at Ultimate effectively making him a replacement's replacement ? when he packed up for greener pastures.",1 +20210,"First off... I never considered myself an Uwe Boll Hater since I think I never even saw one of his movies but after seeing this cheap excuse for a movie named ""Seed"" (which is the name of the serial killer this movie is about) I am close to joining the hate club. This movie makes absolutely no sense at all... the plot is a joke and although Boll clearly tries to get attention by shocking people 90% of this movie is just plain boredom. You can sum up this movie like this: <br /><br />1. Hooded killer watches clips of animals getting tortured on TV. This is real life footage from pelt farms and the movie opens with the ridiculous reason of ""making a statement about humanity"" and giving a Peta address. Since this movie has no message at all and is the worst piece of torture porn-exploitation you already have a reason to hate the movie from the beginning onward.<br /><br />2. Death by electrocution with a pretext that gives away what happens later in this movie printed on screen so every retard gets it.<br /><br />3. Cops watch videos of animals, babies and women starved to death and decomposing in Seeds basement, having stupid nightmares and crying into their whiskey because Seed is such an evil bad mofo. Although the acting is OK the movie takes a dive every time it tries to incorporate any emotions... <br /><br />4. Cops bust Seed in his house, act stupid and get slashed in the dark. This sequence reminds me of a video game, you barely see anything except flashlights. Seed is a super killer that is everywhere at once and all cops act stupid enough to be killed... except for one who busts him.<br /><br />5. Seed gets the chair and we see his electrocution as lengthy as everything else in this ""movie""... he won't die and we are reminded of the opening statement that he must be set free if he survives 3 electric jolts. Guess what... they just bury him alive to solve the problem.<br /><br />6. Seed comes out of his grave, kills everyone off in another slashing part and then seeks the main cop to take revenge on.<br /><br />7. A woman gets her head bashed in with a hammer in an endless sequence from one point of view just for the fun and shock value of it. <br /><br />8. Seed captures the cops family, lures him to his house, threatens to kill his wife and daughter. After killing his wife with a nail gun the cop shoots himself in the head considering thats whats Seed wants (its hard to get into that guys head since he not just wears his mask even in prison but also never utters a word ... the movie has barely any dialog anyway so don't mind).<br /><br />9. Boll goes for a nihilistic shocker end where Seed locks the daughter in with her dead dad to rot like the persons we saw on video on sequence 3.<br /><br />This is it... no message, no plot, no reason, no face behind the mask, no background except a stupid story that Seed was burnt as a child.<br /><br />This movie relies purely on few key scenes and their shock value. I hardly remember a movie this empty of any emotion or message or entertainment. Its like watching August Underground ... thats fine with me, some people will enjoy this brainless snuff. But what is really hard to stand about it is the pseudo-message in the beginning and the fact that the movie is well made considering camera-work, effects and even the acting is too good for this waste of celluloid. <br /><br />So how does Boll get money to make such ""movies"" when thousands of talented directors work on shoestring budgets?? ""Seed"" is not just the essence of ridiculous, its living proof that the free market is flawed ... lucky Uwe that the German taxpayer is paying for a lot of this waste to get deductments.",0 +20243,"I only rented this because i loved the first movie. However, calling it John Carpenters Vampires: Los Muertos is just a con trick to get you to rent it. He is in fact executive producer and clearly had nothing to do with the making of this film (Jeepers Creepers Anyone?)<br /><br />A tragic storyline, terrible special effects and Jon Bon Jovi as the least convincing Vampire Hunter of all time. It's not even comically bad.<br /><br />What we end up with is a dull, uninvolving film with a terrible script and indefinsibly bad and clichéd acting. It just reeks of low budget.<br /><br />Avoid like the Bubonic plague.",0 +15415,"Man, this was hilarious. It should be under COMEDY. Or STUPID. It would have made realizing what a pile of stank this was much easier. Seriously? I want anyone associated with this movie tased, effective immediately. For everyone who is thinking of watching this ""movie"", let''s go over a few plot points. Oh, wait. There aren't any. There is literally no plot. I think Casper Van Dien was bored, and he decided to film something with some random someones, and miraculously, it somehow got on videotape. This movie is literally the worst movie of all time. Don't believe me? Go watch it. Do it, man. I dare you. But be prepared to gouge your eyes out. If you can sit through this without blowing a cow, you are very strong and courageous.",0 +1569,"Nicely and intelligently played by the two young girls, Mischa Barton as Frankie, and Ingrid Uribe as Hazel, although the plot is rather a stretch of the imagination. Young Hazel running for mayor seems out of place, to be honest.<br /><br />While the acting is well done by all concerned the movie tends to lack a genuine atmosphere of drama. Perhaps we've grown to expect gritty reality in movies, rather like comparing Pollyanna to How Green Was My Valley! Never mind, each of them are good in their own way.<br /><br />I do admire Joan Plowright even if her role is somewhat subdued here. Middle of the road entertainment well suited for younger viewers, and how nice at times to be exposed to fine classical music which is almost a rarity!<br /><br />I find this movie to be a welcomed change as it reflects quieter, thoughtful values for the growing up years, and no violence thank goodness. A warm family film to enjoy.",1 +2232,"I really thought they did an *excellent* job, there was nothing wrong with it at all, I don't know how the first commenter could have said it was terrible, it moved me to tears (I guess it moved about everyone to tears) but I try not to cry in a movie because it's embarrassing but this one got me. It was SOOO good! I hope they release it on DVD because I will definitely buy a copy! I feel like it renewed my faith and gave me a hope that I can't explain, it made me want to strive to be a better person, they went through so much and we kind of take that for granted, I guess. Compared to that, I feel like our own trials are nothing. Well, not nothing, but they hardly match what they had to go through. I loved it. Who played Emma?!",1 +18176,"Poorly written conspiracy drama/mystery about the possibility that AIDS was introduced to the public by the government. Wlaschiha plays a gay researcher looking for answers--that within this foggy plot would be hard for anyone to find. Despite the cinematography itself being commendable, the camera hungers for characters of true depth instead of the shallow, amateur acting it unfortunately has to convey. Grade: D+",0 +3752,"Calling this a romantic comedy is accurate but nowadays misleading. The genre has sadly deteriorated into cliches, too focused on making the main couple get together and with very little room for ambience and other stories, making it formulaic and overly predictable.<br /><br />The Shop Around the Corner does not suffer from these illnesses: it manages to create a recognisably middle/eastern-European atmosphere and has a strong cast besides the (also strong) nominal leads; I avoid using the words 'supporting cast' as for example Mr. Matuschek (Frank Morgan) has a central role to the film and his story is equally if not more important than the romance.<br /><br />The 1998 film You've Got Mail borrowed the 'anonymous pen-pal' idea from this film and has therefore been billed as a remake. This is not correct and in fact unfair to the new movie - it shares the genre and borrows a plot element, but that is all.",1