Skip to main content

15 Movies That Made Audiences Leave The Theater

15 Movies That Made Audiences Leave The Theater
15 Movies That Made Audiences Leave The Theater : Source: Screenrant
Forking over an hour or two of pay makes going to see a film a burden on the wallet, even if theater chains maintain that it's cheaper than ever to go to the movies. Most moviegoers want to see a film they know they will enjoy to avoid throwing away their hard-earned cash, so when movies sometimes leave audiences feeling disgruntled, disgusted or even ill enough to walk out, it's a big deal. Even some of the staunchest movie-goers who refuse to leave the theater for any reason sometimes find themselves walking out of a production for the strangest excuses.

Whether or not the theater will refund tickets paid for movies that upset or sicken audiences, hundreds of people have walked out of startling films for plenty of reasons. Sometimes it's mind-boggling. For those who wanted a scary movie, why bail when it gets too scary? Whatever happened to turning your head? Then there are the people who never read a single movie blurb or review or rating, happily heading into a dark room to watch two hours of some mysterious media that somehow ended up too appropriate for them- -or worse, their kids. Access to research has never been more readily available... Google it!

Whether they turned audiences away due to sheer laziness, weak stomachs or other incomprehensible reasons, here are 15 Movies So Shocking Audiences Left The Theater.
Source: Screenrant

Comments

Popular posts from this blog

Laravel 5.4 (and 5.5) native User Authentication + Role Authorization

A very brief step-by-step of how to implement a native Laravel 5.4 user authentication + role authorization. Starting from a fresh Laravel 5.4/5.5 installation, run the php artisan to create the Auth resource: $ php artisan make : auth Create the  Role  model and respective migration (-m parameter): $ php artisan make : model Role - m Edit  CreateRolesTable  class in the  migrations  folder: public function up () { Schema :: create (‘ roles ’, function ( Blueprint $table ) { $table -> increments (‘ id ’); $table -> string (‘ name ’); $table -> string (‘ description ’); $table -> timestamps (); }); } public function down () { Schema :: dropIfExists (‘ roles ’); } Create a new migration for the  role_user  pivot table : $ php artisan make : migration create_role_user_table Edit  CreateRoleUserTable  class in the  migrations  folder: public func...

The 10 greatest living scientists in the world today

Ranking the world's greatest contemporary scientists may be a no-win proposition, with inevitable questions about how to evaluate one's contribution over another. How does a discovery in one field measure up to a discovery in a different one? And what about Richard Dawkins, where is he on this list? All reasonable questions, but ultimately we need to start the discussion somewhere. So here's a debatable list of top ten scientists from around the world who have made a great impact on our life (but not in order of the magnitude of their achievements because that just might be an unscientific exercise): 1. Timothy Berners-Lee It would be hard to argue against the guy who invented a little something called “the world wide web" being on this list. Timothy Berners-Lee is a British computer scientist, knighted by the Queen Elizabeth II for his pioneering work. He is especially famous for his proposal to share information by using the technology of hypertext, the cornersto...