<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter questions tagged with action</title>
      <link>http://ask.metafilter.com/tags/action</link>
      <description>Questions tagged with 'action' at Ask MetaFilter.</description>
	  <pubDate>Tue, 03 Nov 2009 12:51:24 -0800</pubDate> <lastBuildDate>Tue, 03 Nov 2009 12:51:24 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>Short but action-packed films?</title>
	<link>http://ask.metafilter.com/137164/Short%2Dbut%2Dactionpacked%2Dfilms</link>	
	<description>Please help me find short films (animated or live action) that I can watch online. Difficulty: only looking for action/adventure-themed shorts. I&apos;m trying to find short films online (10 minutes and under) that involve fight scenes, heists, explosions, car chases, etc-- all the tropes of action/adventure movies. If it happens to be set in a sci-fi world = extra awesome. I know this is rare since short films usually have low budgets.&lt;br&gt;
&lt;br&gt;
I&apos;m NOT interested in excerpts from feature length films.&lt;br&gt;
&lt;br&gt;
I&apos;ve already watched the Aeon Flux shorts from Liquid Television, and the BMW short films. What else can you recommend that I&apos;d be able to watch online? Thanks in advance!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.137164</guid>
	<pubDate>Tue, 03 Nov 2009 12:51:24 -0800</pubDate>
	<category>action</category>
	<category>adventure</category>
	<category>film</category>
	<category>online</category>
	<category>shortfilms</category>
	<category>youtube</category>
	<dc:creator>np312</dc:creator>
	</item>
	<item>
	<title>Help me chat!</title>
	<link>http://ask.metafilter.com/134995/Help%2Dme%2Dchat</link>	
	<description>Asking for a friend: Java/action script 3 question - Remote Shared Object Question with Red5 Flash Server and Flash AS3 Hello,&lt;br&gt;
&lt;br&gt;
I am trying to create a simple chat client using the red5 media server, but I seem to be having a slight hiccup.  I am creating a shared object on the server side, and it seems to be creating it successfully.  However, when I make changes to the object via the client (type a message), the SYNC event fires, but the content within the shared object remains empty.  I suspect I am doing something wrong on the java end, any advice?   &lt;br&gt;
&lt;br&gt;
Console Results:&lt;br&gt;
&lt;br&gt;
Success!&lt;br&gt;
&lt;br&gt;
Server Message: clear&lt;br&gt;
&lt;br&gt;
Server Message: [object Object]&lt;br&gt;
&lt;br&gt;
Local message: asdf&lt;br&gt;
&lt;br&gt;
Server Message: change&lt;br&gt;
&lt;br&gt;
Server Message: [object Object]&lt;br&gt;
&lt;br&gt;
Local message: fdsa&lt;br&gt;
&lt;br&gt;
Server Message: change&lt;br&gt;
&lt;br&gt;
Server Message: [object Object]&lt;br&gt;
&lt;br&gt;
Local message: fewa&lt;br&gt;
&lt;br&gt;
Server Message: change&lt;br&gt;
&lt;br&gt;
Server Message: [object Object] &lt;br&gt;
 &lt;br&gt;
&lt;br&gt;
Server Side:&lt;br&gt;
&lt;br&gt;
public class Application extends ApplicationAdapter {&lt;br&gt;
&lt;br&gt;
      private IScope appScope;&lt;br&gt;
&lt;br&gt;
      // private static final Log log = LogFactory.getLog( Application.class ); &lt;br&gt;
&lt;br&gt;
      /** {@inheritDoc} */&lt;br&gt;
&lt;br&gt;
    @Override&lt;br&gt;
&lt;br&gt;
      public boolean connect(IConnection conn, IScope scope, Object[] params) {&lt;br&gt;
&lt;br&gt;
     &lt;br&gt;
     appScope = scope;&lt;br&gt;
&lt;br&gt;
     createSharedObject(appScope, &quot;generalChat&quot;, false); // Creates general chat shared object&lt;br&gt;
&lt;br&gt;
     &lt;br&gt;
            return true;&lt;br&gt;
&lt;br&gt;
      } &lt;br&gt;
&lt;br&gt;
      /** {@inheritDoc} */&lt;br&gt;
&lt;br&gt;
    @Override&lt;br&gt;
&lt;br&gt;
      public void disconnect(IConnection conn, IScope scope) {&lt;br&gt;
&lt;br&gt;
            super.disconnect(conn, scope); &lt;br&gt;
&lt;br&gt;
      }   &lt;br&gt;
&lt;br&gt;
    public void updateChat(Object[] params)&lt;br&gt;
&lt;br&gt;
    {&lt;br&gt;
&lt;br&gt;
     ISharedObject so = getSharedObject(appScope, &quot;generalChat&quot;); // Declares and stores general chat data in general chat shared object&lt;br&gt;
&lt;br&gt;
     so.setAttribute(&quot;point&quot;, params[0]);&lt;br&gt;
&lt;br&gt;
    } &lt;br&gt;
&lt;br&gt;
Client Side:&lt;br&gt;
&lt;br&gt;
      public class SOConnect extends MovieClip&lt;br&gt;
&lt;br&gt;
      {&lt;br&gt;
&lt;br&gt;
            // Variables&lt;br&gt;
&lt;br&gt;
            var nc:NetConnection = null;&lt;br&gt;
&lt;br&gt;
            var so:SharedObject;  &lt;br&gt;
&lt;br&gt;
            public function SOConnect():void&lt;br&gt;
&lt;br&gt;
            {&lt;br&gt;
&lt;br&gt;
            } &lt;br&gt;
&lt;br&gt;
            public function connect():void&lt;br&gt;
&lt;br&gt;
            {  &lt;br&gt;
&lt;br&gt;
                  // Create a NetConnection and connect to red5&lt;br&gt;
&lt;br&gt;
                  nc = new NetConnection();&lt;br&gt;
&lt;br&gt;
                  nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);&lt;br&gt;
&lt;br&gt;
                  nc.connect(&quot;rtmp://localhost/chatTest&quot;); &lt;br&gt;
&lt;br&gt;
                  // Create a StoredObject for general chat&lt;br&gt;
&lt;br&gt;
                  so = SharedObject.getRemote(&quot;generalChat&quot;, nc.uri, false);   &lt;br&gt;
&lt;br&gt;
                  so.connect(nc);&lt;br&gt;
&lt;br&gt;
                  so.addEventListener(SyncEvent.SYNC, receiveChat)   &lt;br&gt;
&lt;br&gt;
            } &lt;br&gt;
&lt;br&gt;
            public function sendChat(msg:String)&lt;br&gt;
&lt;br&gt;
            {&lt;br&gt;
&lt;br&gt;
                  trace (&quot;Local message: &quot; + msg);&lt;br&gt;
&lt;br&gt;
                  nc.call(&quot;updateChat&quot;, null, msg)     &lt;br&gt;
&lt;br&gt;
            } &lt;br&gt;
 &lt;br&gt;
&lt;br&gt;
            public function receiveChat(e:SyncEvent):void&lt;br&gt;
&lt;br&gt;
            {   &lt;br&gt;
&lt;br&gt;
                  for (var i in e.changeList)&lt;br&gt;
&lt;br&gt;
                  {&lt;br&gt;
&lt;br&gt;
                        trace (&quot;Server Message: &quot; + e.changeList[i].code)&lt;br&gt;
&lt;br&gt;
                        trace (&quot;Server Message: &quot; + e.changeList[i])&lt;br&gt;
&lt;br&gt;
                  }      &lt;br&gt;
&lt;br&gt;
            }  &lt;br&gt;
&lt;br&gt;
            // Given result, determine successful connection  &lt;br&gt;
&lt;br&gt;
            private function netStatusHandler(e:NetStatusEvent):void&lt;br&gt;
&lt;br&gt;
            {&lt;br&gt;
&lt;br&gt;
                  if (e.info.code == &quot;NetConnection.Connect.Success&quot;)&lt;br&gt;
&lt;br&gt;
                  {&lt;br&gt;
&lt;br&gt;
                        trace(&quot;Success!&quot;);&lt;br&gt;
&lt;br&gt;
                  }&lt;br&gt;
&lt;br&gt;
                  else&lt;br&gt;
&lt;br&gt;
                  {&lt;br&gt;
&lt;br&gt;
                        trace(&quot;Failure!\n&quot;); &lt;br&gt;
&lt;br&gt;
                        trace(e.info.code);&lt;br&gt;
&lt;br&gt;
                  }&lt;br&gt;
&lt;br&gt;
            }&lt;br&gt;
&lt;br&gt;
      }</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.134995</guid>
	<pubDate>Thu, 08 Oct 2009 15:55:48 -0800</pubDate>
	<category>action</category>
	<category>java</category>
	<category>script</category>
	<dc:creator>yoyoceramic</dc:creator>
	</item>
	<item>
	<title>Slogans, Quotes or Mottos Lauding Action Over Overthought/Overplanning?</title>
	<link>http://ask.metafilter.com/118568/Slogans%2DQuotes%2Dor%2DMottos%2DLauding%2DAction%2DOver%2DOverthoughtOverplanning</link>	
	<description>I&apos;m looking for mottos, slogans, or quotes that are short enough to be easily remembered, that are meant to spur someone to take &lt;i&gt;action&lt;/i&gt; towards their goals, and/or that warn against overthinking and overplanning and staying in your head &amp;ndash; in other words, that laud the merits of action over thought.  I&apos;ve already thought of &quot;just do it&quot; (which is the precise sentiment I&apos;m looking for), but it is &lt;u&gt;&lt;i&gt;so&lt;/i&gt;&lt;/u&gt; overplayed that it doesn&apos;t have much meaning any longer.  Any sentiment of any length is appreciated, but ideally it would be something that easily sticks in your mind.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.118568</guid>
	<pubDate>Fri, 03 Apr 2009 15:25:51 -0800</pubDate>
	<category>action</category>
	<category>cognitive</category>
	<category>overplanning</category>
	<category>overthinking</category>
	<category>planning</category>
	<category>resolved</category>
	<category>thinking</category>
	<dc:creator>WCityMike</dc:creator>
	</item>
	<item>
	<title>Batch processing multiple-page PDFs</title>
	<link>http://ask.metafilter.com/117092/Batch%2Dprocessing%2Dmultiplepage%2DPDFs</link>	
	<description>I need to batch process a 54-page PDF through Bridge (or Photoshop) and it doesn&apos;t seem to be saving properly. Okay, this is fairly complex but I&apos;ll try to explain it briefly.  I have a 54-page letter-sized InDesign file; in each page of the ID file is a linked 2&quot;h x 8.5&quot;w image from a 54-page PDF.  Page 1 of the ID file corresponds to page 1 of the PDF and so on.&lt;br&gt;
&lt;br&gt;
Each page of the linked PDF is a grayscale raster image.  &lt;em&gt;Here&apos;s the actual question:&lt;/em&gt; I need to batch process the PDF such that it runs an action on each page and my output is a different 54-page PDF.&lt;br&gt;
&lt;br&gt;
Alternate solution: same as before, except it outputs as 54 different sequentially-numbered files which I can package into a single PDF document via Acrobat.&lt;br&gt;
&lt;br&gt;
What I tried was to select the PDF in Bridge, select Tools | Photoshop | Batch, then make sure it was the right action, with destination Save and Close, and run it.  Instead of saving and closing, it goes through all 54 files, keeps them open, then throws up the error message &quot;There were no source files that could be opened by Photoshop.&quot;  &lt;br&gt;
&lt;br&gt;
Then I tried it again with a new Action that had Save As TIFF and Close, and tried again.  &quot;There were no source files that could be opened by Photoshop.&quot;  And now I have to close 54 separate, unchanged files again.  Dammit.&lt;br&gt;
&lt;br&gt;
All I need to do is change the levels on 54 pages and somehow, through any fashion, get 54 TIFFs or PDFs or JPGs or, like BMPs, I don&apos;t care.  Ideas?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.117092</guid>
	<pubDate>Wed, 18 Mar 2009 13:51:01 -0800</pubDate>
	<category>acrobat</category>
	<category>action</category>
	<category>adobe</category>
	<category>batch</category>
	<category>bridge</category>
	<category>graphicdesign</category>
	<category>pdf</category>
	<category>photoshop</category>
	<category>resolved</category>
	<dc:creator>Optimus Chyme</dc:creator>
	</item>
	<item>
	<title>Help me replicate my beloved Photoshop 5.5 action!</title>
	<link>http://ask.metafilter.com/113696/Help%2Dme%2Dreplicate%2Dmy%2Dbeloved%2DPhotoshop%2D55%2Daction</link>	
	<description>In Photoshop 5.5 I was able to create an action to resize a layer/selection to a maximum width (say, 200 px).  I could quickly select objects of varying initial sizes, run the action, and voila, everything fit neatly in a column.  I&apos;ve had Photoshop CS4 for over a week and can&apos;t figure out how to replicate this; my resizing seems to always be happening as a percent of the original size. When I previously created the action (in, yes, good old 5.5 -- which I must add runs &lt;i&gt;extremely fast&lt;/i&gt; on my current computer), I just kind of recorded it and it magically worked.  I remember being impressed.  I did similar actions several times -- it was very handy.&lt;br&gt;
&lt;br&gt;
So far, CS4 is great (although the grouping of layers is my favorite feature, and I&apos;m sure that&apos;s been around a while), but I really need this functionality.&lt;br&gt;
&lt;br&gt;
Pointers to specific action-oriented resources would be helpful.  Googling &quot;Photoshop actions&quot; and &quot;Photoshop help&quot; led me to some web sites with lots of stuff there, but I didn&apos;t see how to efficiently find the answer to my specific question.  I&apos;m ... reluctant to involve Adobe support unless I absolutely must; it seems like a good way to spend a lot of time waiting for an answer, and anyway it would be nice to know how to figure this kind of stuff out.&lt;br&gt;
&lt;br&gt;
I have the O&apos;Reilly &quot;Missing Manual&quot; book, but could only find directions on record/playback for actions, and nothing special about resizing.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.113696</guid>
	<pubDate>Sun, 08 Feb 2009 12:04:23 -0800</pubDate>
	<category>action</category>
	<category>automation</category>
	<category>design</category>
	<category>photoshop</category>
	<category>resize</category>
	<category>software</category>
	<category>support</category>
	<dc:creator>amtho</dc:creator>
	</item>
	<item>
	<title>Bollywood action movie recommendations and Amitabh Bachchan</title>
	<link>http://ask.metafilter.com/111470/Bollywood%2Daction%2Dmovie%2Drecommendations%2Dand%2DAmitabh%2DBachchan</link>	
	<description>In Slumdog Millionaire, we were shown a bunch of Amitabh Bachchan clips from some of his older moveis. What were they?  - 
I&apos;d like to hear your other Bollywood action movie recommendations too! There was one clip he was threatening someone with his own prosthetic leg. WTF? That looks AWESOME!&lt;br&gt;
&lt;br&gt;
I&apos;m also looking for recommendations of any action movies from India that are just plain awesome. Guy movies. Action and explosions, martial arts and cheese.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.111470</guid>
	<pubDate>Mon, 12 Jan 2009 11:37:36 -0800</pubDate>
	<category>action</category>
	<category>Amitabh</category>
	<category>AmitabhBachchan</category>
	<category>Bachchan</category>
	<category>bollywood</category>
	<category>india</category>
	<category>indian</category>
	<category>Millionaire</category>
	<category>movies</category>
	<category>Slumdog</category>
	<category>SlumdogMillionaire</category>
	<dc:creator>joelf</dc:creator>
	</item>
	<item>
	<title>Why does my toilet backup with soap and water and what can we do?</title>
	<link>http://ask.metafilter.com/110732/Why%2Ddoes%2Dmy%2Dtoilet%2Dbackup%2Dwith%2Dsoap%2Dand%2Dwater%2Dand%2Dwhat%2Dcan%2Dwe%2Ddo</link>	
	<description>My toilet is constantly backing up with soap and water to the point where it overflows and floods my condo! What is the problem? What are my legal options? My partner and I bought a condo in June and soon noticed that the toilet backs up with soap and water.  It first makes a loud gurgling noise and creates large bubbles. After the gurgling ends, the toilet bowl (and kitchen sink occasionally) will fill up with soap.  In October the bowl overflowed all over the bathroom floor. We told the super who did nothing and told us there was nothing that could be done. Then in November I came home one evening to a bathroom, hallway and several feet into each bedroom of foam and water up to my knees. It destroyed our floors (laminate), doors, trim and bathroom vanity. &lt;br&gt;
&lt;br&gt;
Since October we&apos;ve had the toilet back up 7 times and only once I threatened with a lawyer did the building manager send a plumber to my place. They put a camera down the toilet and flushed the drain finding nothing. The building manager has said it&apos;s not a plumbing problem and that there&apos;s nothing to do. He&apos;s dead set it&apos;s a bubble bath problem... rather than a serious plumbing problem. &lt;br&gt;
&lt;br&gt;
The condo building (10 floors and I&apos;m on the first floor) is almost 40 years old, but was renovated in the last few years allowing every unit a front loading washing machine and dishwasher. I think it is likely a hydraulics problem (the pipes are too small for the increased water traffic) or a ventilation problem. Since the pipes aren&apos;t mine and are the building&apos;s I&apos;m not allowed to hire a plumber.  &lt;br&gt;
&lt;br&gt;
I also found out that the man who lives across the hall (and almost everyone else on the first floor) has this same problem... their backups haven&apos;t ruined their floor though. The man across the hall reported it over a year ago, before we bought. The other condo owners who it happens to aren&apos;t willing to support me because it hasn&apos;t inconvenienced them yet (or destroyed their home).  The man across the hall has recently moved into a nursing home, but his grandson said that they would search for a record of when the plumber came for them last year. Their kitchen sink backups haven&apos;t been fixed either and it&apos;s the same as mine (soap and water).&lt;br&gt;
&lt;br&gt;
I want to know what my problem is... and any advice to solve it. Neither the building manager or condo board will help me even though we&apos;ve been living on concrete flooring afraid to put in a new floor since it&apos;s happened as recently as Christmas Eve morning. &lt;br&gt;
&lt;br&gt;
Is it possible to force them to buyback our unit since we can easily prove it was a problem before we moved in? (ie. full disclosure)&lt;br&gt;
&lt;br&gt;
Is it possible to legally force them to fix the problem? My mother&apos;s heard of a similar problem in another apartment building and they had to rip out the floors and walls and replace the plumbing b/c it was a hydraulics problem. &lt;br&gt;
&lt;br&gt;
Should I be suing for my condo fees back since we&apos;ve been living with flooding since October?&lt;br&gt;
&lt;br&gt;
With the market slump, and 18 other units for sale in the building... selling it isn&apos;t really an option unless we take a huge financial loss (not to mention we&apos;d have to disclose there&apos;s a plumbing problem and explain why there&apos;s no flooring!).&lt;br&gt;
&lt;br&gt;
I&apos;ve called all the city and province (I&apos;m in Ontario, Canada) and none of the health agencies will help me b/c I own rather than rent.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.110732</guid>
	<pubDate>Sun, 04 Jan 2009 06:59:23 -0800</pubDate>
	<category>Action</category>
	<category>condo</category>
	<category>homeownership</category>
	<category>Legal</category>
	<category>Plumbing</category>
	<dc:creator>DorothySmith</dc:creator>
	</item>
	<item>
	<title>Affirmative v. Negative Action</title>
	<link>http://ask.metafilter.com/108983/Affirmative%2Dv%2DNegative%2DAction</link>	
	<description>Preparing a speech on college affirmative action policies for a debate tournament, could use some help... My debate group was one of eight selected to be in a special tournament. I would like some prior arguments to use to base mine off of. I&apos;ve read a decent amount of literature on this already (the two relevant supreme court cases, for example), but found no formally presented speeches or formal essays arguing a side. I believe that these would be helpful because they&apos;d give me a sense of what the biggest arguments are. Does anyone know where to find these or have links to any?&lt;br&gt;
&lt;br&gt;
(FYI: They&apos;re the Motorola-sponsored Abraham Lincoln Bicentennial Debates. They&apos;re tomorrow. They&apos;re available for public viewing. I have arguments prepared, but I see no harm in making them better.)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.108983</guid>
	<pubDate>Thu, 11 Dec 2008 09:21:05 -0800</pubDate>
	<category>action</category>
	<category>affirmative</category>
	<category>debate</category>
	<category>team</category>
	<dc:creator>LSK</dc:creator>
	</item>
	<item>
	<title>David vs. capitalist greed and corruption</title>
	<link>http://ask.metafilter.com/107665/David%2Dvs%2Dcapitalist%2Dgreed%2Dand%2Dcorruption</link>	
	<description>I would like to sue Citibank.  What would be the most effective way to go about doing this? I&apos;m interested in suing Citibank, and given the David vs. Goliath nature of this affair, I want to make sure I do it right.&lt;br&gt;
&lt;br&gt;
Three separate CSRs at Citibank had verbally promised me an offer on three separate occasions.  They also included a date by which the offer would expire.  Based on this information I had made a number of business deals.  Then, I went to execute on the Citibank offer, and Citibank changed their offer, which basically made me lose a lot of money.&lt;br&gt;
&lt;br&gt;
I also suspect that Citibank is doing something crooked, here.  And, given the current political climate and the bailing out of Citibank by us, the American tax payers, I would also like to take action with my congressperson as well.&lt;br&gt;
&lt;br&gt;
Anyway, without getting into the details, how would I best go about this?  Should I try to contact an attorney in New York?  At this point, cost is irrelevant - I want to recoop my losses and opportunty costs and other damages.  But, I also want to sue based on the principal.&lt;br&gt;
&lt;br&gt;
I know there are a lot of attorneys on metafilter.  I know you are not my attorney, but I want to make sure I go about this the most effective way.  How would I best go about this?  And how would I best take action with my representatives?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.107665</guid>
	<pubDate>Tue, 25 Nov 2008 04:10:55 -0800</pubDate>
	<category>action</category>
	<category>citibank</category>
	<category>law</category>
	<category>lawsuits</category>
	<category>legal</category>
	<category>taking</category>
	<dc:creator>brandnew</dc:creator>
	</item>
	<item>
	<title>Did Payback run away?</title>
	<link>http://ask.metafilter.com/104654/Did%2DPayback%2Drun%2Daway</link>	
	<description>I&apos;m looking for the best one man revenge against the world films ever. They may have taken his daughter or killed his brother. He&apos;s probably bitter, retired or an alcoholic. He can&apos;t trust anyone. He might come out of retirement for one more job. The enemy may be an Arab, a Serbian or good ole faceless government corruption. Hero must be able to pull bullets out of self with tweezers, grit teeth, sweat, and appear flawed but irresistable to women much younger than themselves.&lt;br&gt;
&lt;br&gt;
So...movies in the mould of &lt;a href=&quot;http://www.imdb.com/title/tt0120784/&quot;&gt;Payback&lt;/a&gt;, &lt;a href=&quot;http://www.imdb.com/title/tt0822854/&quot;&gt;Shooter&lt;/a&gt; or &lt;a href=&quot;http://www.imdb.com/title/tt0936501/&quot;&gt;Taken&lt;/a&gt;, with a dollop of A-Team and Macgyver thrown in for good measure. I expect films like this to be fairly throwaway and far fetched to a certain extent, but I&apos;d prefer recommendations with some sort of script and production values rather than pure Van Damme and Dolph Lundgren VHS stuff. Independent/arthouse with similar themes also appreciated. Who&apos;s going to answer the call?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.104654</guid>
	<pubDate>Sun, 19 Oct 2008 16:40:27 -0800</pubDate>
	<category>Action</category>
	<category>Entertainment</category>
	<category>Films</category>
	<category>Movies</category>
	<category>Theykilledmybrother</category>
	<dc:creator>fire&amp;wings</dc:creator>
	</item>
	<item>
	<title>help me record my snowboarding trip!</title>
	<link>http://ask.metafilter.com/83952/help%2Dme%2Drecord%2Dmy%2Dsnowboarding%2Dtrip</link>	
	<description>I would like to get some video footage from an upcoming snowboarding trip and download it to my computer at a later date. What equipment would be suitable for this? My budget is &#xa3;100 (~ $200 US) I would like to get some video footage from an upcoming snowboarding / skiing trip and download it to my computer at a later date. What equipment would be suitable for this? My budget is &#xa3;100 (~ $200 US)&lt;br&gt;
&lt;br&gt;
Does anybody have any first hand experience of doing this? Please share what you found and what gave you the best results!&lt;br&gt;
&lt;br&gt;
I have been debating whether a single hand held model (with SD card storage) taped to my helmet (or board) would be fine or if a bullet style camera with a separate recording unit is needed. My research so far suggests that a single hand held model offers much better value..&lt;br&gt;
&lt;br&gt;
Equipment wise, anything second hand / ebay is good, who knows if it will survive this trip anyway!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.83952</guid>
	<pubDate>Mon, 18 Feb 2008 13:19:31 -0800</pubDate>
	<category>action</category>
	<category>camcorder</category>
	<category>camera</category>
	<category>footage</category>
	<category>record</category>
	<category>skiing</category>
	<category>snowboarding</category>
	<dc:creator>oliverst</dc:creator>
	</item>
	<item>
	<title>Action movies that lack an action hero?</title>
	<link>http://ask.metafilter.com/82724/Action%2Dmovies%2Dthat%2Dlack%2Dan%2Daction%2Dhero</link>	
	<description>Can you recommend any action movies with unexpected heroes who use unexpected skills to get by? I have a weakness for this kind of story.  One of my favourite examples is the movie &lt;em&gt;Outrageous Fortune&lt;/em&gt;, where two struggling actors get mixed up in action movie stuff.  They have absolutely no skills with guns or fighting or anything like that, nor are they Indiana Jones types who are adventurous and always know what to do.  Yet, they get out of all the pickles and ultimately defeat The Big Bad Guy with the clever use of their acting and dancing skills.&lt;br&gt;
&lt;br&gt;
I eat this stuff up.  Action movies with action heroes are boring.  Action movies with heroes who are not suited for action but use what they&apos;ve got are awesome.  Can anyone recommend any like that?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.82724</guid>
	<pubDate>Sun, 03 Feb 2008 17:25:38 -0800</pubDate>
	<category>action</category>
	<category>movies</category>
	<dc:creator>giggleknickers</dc:creator>
	</item>
	<item>
	<title>Action for sending URLs</title>
	<link>http://ask.metafilter.com/62472/Action%2Dfor%2Dsending%2DURLs</link>	
	<description>I send a lot of URLs via email. Inevitably the url&apos;s are so long I have to first go to a site like tinyurl.com and truncate the url and then copy that new url and then paste that into my email. Are there other options?

Does an action exist for OS X users that would automatically highlight the url and then take it to tinyurl.com and then get the compressed url and copy it and then paste it into a designated email app&apos;s &quot;new email&quot; template?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.62472</guid>
	<pubDate>Sat, 12 May 2007 15:47:00 -0800</pubDate>
	<category>action</category>
	<category>OSX</category>
	<category>tinyurl.com</category>
	<category>urls</category>
	<dc:creator>zenpop</dc:creator>
	</item>
	<item>
	<title>GET+POST in same form?</title>
	<link>http://ask.metafilter.com/49473/GETPOST%2Din%2Dsame%2Dform</link>	
	<description>Is it possible to set the &lt;code&gt;action&lt;/code&gt; attribute of an HTML form, such that the &lt;code&gt;method&lt;/code&gt; is &lt;code&gt;POST&lt;/code&gt;, but the &lt;code&gt;action&lt;/code&gt; includes GET variables? For example, I&apos;d like the following code:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;&amp;lt;form name=&quot;edit_name&quot; action=&quot;.?debug&quot; method=&quot;post&quot;&amp;gt;&lt;br&gt;
&amp;lt;input type=&quot;submit&quot; value=&quot;Edit&quot;&amp;gt;&lt;br&gt;
&amp;lt;/form&amp;gt;&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
to return GET value containing &lt;code&gt;debug&lt;/code&gt; and a POST value containing &lt;code&gt;Edit&lt;/code&gt;.&lt;br&gt;
&lt;br&gt;
Is this reasonable or possible?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.49473</guid>
	<pubDate>Thu, 26 Oct 2006 09:02:17 -0800</pubDate>
	<category>action</category>
	<category>form</category>
	<category>get</category>
	<category>html</category>
	<category>post</category>
	<dc:creator>Blazecock Pileon</dc:creator>
	</item>
	<item>
	<title>What was that darn movie???</title>
	<link>http://ask.metafilter.com/47711/What%2Dwas%2Dthat%2Ddarn%2Dmovie</link>	
	<description>Can you name a movie that played during a free preview weekend (about a year ago)? The movie was shown in the U.S. during a free preview weekend on one of the premium channels of Dish Network.  I do not remember which channel it was, I&apos;m leaning toward either Starz or Showtime.  I only saw a part of the movie, and want to see the rest.&lt;br&gt;
&lt;br&gt;
Movie details I remember:&lt;br&gt;
&lt;br&gt;
Film Location: Europe&lt;br&gt;
&lt;br&gt;
Plot: some type of disease has gotten loose and the investigators are trying to track down human victims before they die and/or infect other people.  The disease may have been a man-made virus.  The disease is (of course) highly contagious and kills in a matter of hours.  I think the disease was spread by touch, the race was to contain before it mutated into an airborne form.&lt;br&gt;
&lt;br&gt;
Cast: The primary characters are two investigators, a female and male who (I&apos;m guessing) had not worked together before this case.  I think the male lead may have been played by an actor more recognizable a decade or two ago.&lt;br&gt;
&lt;br&gt;
Best recollection: I remember one scene in particular where the investigators are right behind one of the victims who does not realize he is infected (but visibly is).  The victim just knows he is being chased and loses the investigators at a restaurant or cocktail party.  When the investigators realize the victim is gone, they quarantine the entire building.&lt;br&gt;
&lt;br&gt;
I don&apos;t remember that the movie was all that great, I&apos;d say it had low to moderate production values.  But I&apos;d like to see the rest of it.  Can you help me identify the film?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.47711</guid>
	<pubDate>Mon, 02 Oct 2006 10:48:58 -0800</pubDate>
	<category>action</category>
	<category>film</category>
	<category>intrigue</category>
	<category>movie</category>
	<category>plague</category>
	<category>virus</category>
	<dc:creator>JigSawMan</dc:creator>
	</item>
	<item>
	<title>Mental Action</title>
	<link>http://ask.metafilter.com/41795/Mental%2DAction</link>	
	<description>Can we believe at will in the same way that we can raise our arms at will? I can raise my right arm pretty much whenever I want to, simply by trying to make it go up.  I can do it without trying to do anything else as a means to that end.  For instance, I do not try to act upon my brain in a certain way, nor do I know which muscles I&apos;d have to flex.  I just want it to go up, and, somehow, I execute the action.&lt;br&gt;
&lt;br&gt;
Are there any cases where a person can acquire a belief in the same way?&lt;br&gt;
&lt;br&gt;
By &quot;belief&quot; I shall mean a high probability of being true that one ascribes to a proposition.  E.g., I take there to be a 97% chance that it will rain in Argentina in the next three days.  &lt;br&gt;
&lt;br&gt;
Some things that might help in thinking about the question:&lt;br&gt;
&lt;br&gt;
1.  Could I go from 97% to 96% at will?  In this case I&apos;d be modifying what I take to be the likelihood by only one percentage point.  If the modification is small, should this make the task easier?&lt;br&gt;
&lt;br&gt;
2.  Be careful to distinguish between really taking there to be a so-and-so likelihood versus merely supposing so for the sake of argument.  We can merely suppose anything; really believing is a different matter.&lt;br&gt;
&lt;br&gt;
3.  If believing at will is possible, should we expect that smart people are more likely to be able to do it than dumb people?  If so, this suggests that believing at will is a kind of talent.  Or would dumb people be more likely to be able to pull it off?  If so, this suggests that believing at will, though it may be an ability, is not a talent, and is more likely a result of intellectual vice: stupidity or irrationality of some kind.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.41795</guid>
	<pubDate>Sun, 09 Jul 2006 15:42:49 -0800</pubDate>
	<category>action</category>
	<category>dumb</category>
	<category>free</category>
	<category>freewill</category>
	<category>irrationality</category>
	<category>mentalaction</category>
	<category>stupidity</category>
	<category>voluntary</category>
	<category>voluntaryaction</category>
	<category>voluntarybelief</category>
	<category>will</category>
	<dc:creator>Eiwalker</dc:creator>
	</item>
	<item>
	<title>Class action risks</title>
	<link>http://ask.metafilter.com/29822/Class%2Daction%2Drisks</link>	
	<description>Might a business blacklist customers for participating in a class-action settlement? I suppose that &quot;legally&quot; they can&apos;t, but I know many megacorps don&apos;t play by the rules or they wouldn&apos;t be in trouble in the first place.  Lately I seem to get a settlement announcement almost monthly regarding one company or another.  I wouldn&apos;t have any bones with participating if it was GM or a toy company, because they don&apos;t keep track of customers and will just sell you more of their product.  But what if it&apos;s a business you have a close relationship with?&lt;br&gt;
&lt;br&gt;
For example, the latest settlement came against my merchant bank.  I&apos;d get $80, but I rely on them to process a lot of my income.  Merchant banks currently operate in a free-wheeling fashion like Visa and Mastercard did in the 1960s and 1970s -- they have considerable license to shaft customers with things like MATCH (formerly TMF).  To me, this is more risk than I can swallow.  But what happens if I participate against my credit card issuer, my regular bank, my insurance company, and so forth?  I can&apos;t help wondering if I&apos;d be put in their &quot;high risk&quot; tiers, kind of like what TXU was trying to &lt;a href=&quot;http://dallas.bizjournals.com/dallas/stories/2004/09/13/daily24.html&quot;&gt;do&lt;/a&gt; with credit scores.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.29822</guid>
	<pubDate>Thu, 29 Dec 2005 09:58:46 -0800</pubDate>
	<category>action</category>
	<category>class</category>
	<category>lawsuits</category>
	<category>suits</category>
	<dc:creator>rolypolyman</dc:creator>
	</item>
	<item>
	<title>Have you ever taken part in a class action lawsuit?</title>
	<link>http://ask.metafilter.com/15351/Have%2Dyou%2Dever%2Dtaken%2Dpart%2Din%2Da%2Dclass%2Daction%2Dlawsuit</link>	
	<description>Have you ever taken part in a class action lawsuit? I ask because I got something in the mail this past week letting  me know that I have x amount of time to get in on this class action lawsuit against Thrivent. I would actually love to stick it to them since they stuck it to me a couple of years ago. However, I don&apos;t how this type of stuff works. I&apos;m not exactly sure what I&apos;m supposed to do and frankly I am kind of worried that this may work against me financially (not sure why it would though) and end up being a big time sink.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.15351</guid>
	<pubDate>Fri, 18 Feb 2005 19:36:40 -0800</pubDate>
	<category>action</category>
	<category>class</category>
	<category>lawsuit</category>
	<dc:creator>NoMich</dc:creator>
	</item>
	<item>
	<title>Photoshop Batch Conversion</title>
	<link>http://ask.metafilter.com/14537/Photoshop%2DBatch%2DConversion</link>	
	<description>I need to make a Photoshop CS action/droplet that I can use to batch convert many dozens of mid-res b&amp;amp;w images. I&apos;ve tried this a few times but my droplets end up doing 1 file fine and then nothing. [mi] The files are JPG, TIF and EPS and I need to do the following: Go to file &amp;gt; print with preview &amp;gt; output and specify both a screen and transfer range, and then save as EPS with that information included. Any ideas? This seems complitrated.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.14537</guid>
	<pubDate>Fri, 28 Jan 2005 15:11:40 -0800</pubDate>
	<category>action</category>
	<category>automate</category>
	<category>batch</category>
	<category>cs2</category>
	<category>droplet</category>
	<category>graphics</category>
	<category>photoshop</category>
	<category>production</category>
	<dc:creator>luriete</dc:creator>
	</item>
	<item>
	<title>I&apos;d like to have some custom action figures made, and then mass-produced on a smallish scale....</title>
	<link>http://ask.metafilter.com/14273/Id%2Dlike%2Dto%2Dhave%2Dsome%2Dcustom%2Daction%2Dfigures%2Dmade%2Dand%2Dthen%2Dmassproduced%2Don%2Da%2Dsmallish%2Dscale</link>	
	<description>I&apos;d like to have some custom action figures made, and then mass-produced on a smallish scale.... Google turned up links for companies that will make a likeness of me for $500. What I&apos;m looking for is something like &lt;a href=&quot;http://www.mcphee.com/amusements/current/11377.html&quot;&gt;this&lt;/a&gt;, sort of.&lt;br&gt;
&lt;br&gt;
Anyone have experience commissioning these, procuring an artist, etc? Have an idea of the cost? Know where I can get it done?&lt;br&gt;
&lt;br&gt;
Thanks much.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.14273</guid>
	<pubDate>Fri, 21 Jan 2005 10:17:55 -0800</pubDate>
	<category>action</category>
	<category>actionfigure</category>
	<category>custom</category>
	<category>dolls</category>
	<category>figures</category>
	<category>production</category>
	<category>toys</category>
	<dc:creator>mudpuppie</dc:creator>
	</item>
	<item>
	<title>Help me with Folder Action scripts in Mac OS X.</title>
	<link>http://ask.metafilter.com/6193/Help%2Dme%2Dwith%2DFolder%2DAction%2Dscripts%2Din%2DMac%2DOS%2DX</link>	
	<description>A question about using Folder Action scripts in Mac OS X and tinkering with them to get them to do what you want. [more] I created a folder called Make PNG and attached the &quot;Duplicate as PNG&quot; Folder Action script to it. It wasn&apos;t doing anything with PDFs (screen captures) I dropped on it, so I edited the script to accept PDF files too.&lt;br&gt;
&lt;br&gt;
Here&apos;s the problem:&lt;br&gt;
&lt;br&gt;
PDF screen capture is 44K. PNG generated automatically by the script is 100K. If I instead use Preview to export the PDF to PNG (best depth, non-interlaced) the size is 56K. There&apos;s no visible difference between the different PNG files, but I want the script to give me the smaller file size since I&apos;m converting things to PNG in order to optimize them for the web. How can I edit the script to do that?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2004:site.6193</guid>
	<pubDate>Wed, 31 Mar 2004 05:23:11 -0800</pubDate>
	<category>action</category>
	<category>folder</category>
	<category>Mac</category>
	<category>OSX</category>
	<category>resolved</category>
	<category>script</category>
	<dc:creator>emelenjr</dc:creator>
	</item>
	<item>
	<title>Is it possible to batch process layers in Photoshop?</title>
	<link>http://ask.metafilter.com/4903/Is%2Dit%2Dpossible%2Dto%2Dbatch%2Dprocess%2Dlayers%2Din%2DPhotoshop</link>	
	<description>Is it possible to batch process layers in Photoshop? I need each layer as a separate JPG.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2004:site.4903</guid>
	<pubDate>Mon, 26 Jan 2004 06:20:08 -0800</pubDate>
	<category>action</category>
	<category>jpeg</category>
	<category>layer</category>
	<category>layers</category>
	<category>photoshop</category>
	<dc:creator>niceness</dc:creator>
	</item>
	<item>
	<title>Safe Filesharing</title>
	<link>http://ask.metafilter.com/3968/Safe%2DFilesharing</link>	
	<description>I have a, umm, friend who lives in Canada and has, in the past, shared 36+ gigs of music using a well-known P2P application. Given that he wants to continue sharing his files, he wonders what technical steps he can take to minimize potential &lt;a href=&quot;http://www.globetechnology.com/servlet/story/RTGAM.20031216.wbmath1216/BNStory/Business/&quot;&gt;legal action from the Canadian Recording Industry Association&lt;/a&gt; (or anyone else).</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2003:site.3968</guid>
	<pubDate>Wed, 17 Dec 2003 06:07:42 -0800</pubDate>
	<category>action</category>
	<category>canada</category>
	<category>cria</category>
	<category>filesharing</category>
	<category>law</category>
	<category>legal</category>
	<category>p2p</category>
	<category>sharing</category>
	<dc:creator>johnnydark</dc:creator>
	</item>
	
	</channel>
</rss>

