Slashdot Mirror


False Positives, Few Matches Plague 'No-Fly' List

lindner writes "According to a recent article in the San Francisco Chronicle, the United States No-Fly List uses a soundex algorithm to match names. Designed 'to quickly summon passenger names or to catch deal-hunting passengers making duplicate bookings.' The system has only managed to rack up a slew of false-positives, including everyone matching soundex ("J. Adams") at one point in time. The problem has gotten so bad that there is now a "Fly List" for chronically misidentified passengers."

86 of 325 comments (clear)

  1. Soundex??? by Surak · · Score: 4, Interesting

    That algorithm is so fundamentally broken as to be practically useless for anything but as an aid in simple searches. Why anyone would use soundex in a mission critical application designed to positively identify individuals is beyond me. What, was the 'No Fly' database written by 1st year comp sci major or something? Sheesh.

    1. Re:Soundex??? by BWJones · · Score: 4, Informative

      That algorithm is so fundamentally broken as to be practically useless for anything but as an aid in simple searches. Why anyone would use soundex in a mission critical application designed to positively identify individuals is beyond me. What, was the 'No Fly' database written by 1st year comp sci major or something? Sheesh.

      Hey, wanna make a good living in these uncertain economic times? Come up with a better alternative and propose it to DARPA. There is actually some very cool research going on that is funded by DARPA in terms of biometrics and database centric comp sci.

      --
      Visit Jonesblog and say hello.
    2. Re:Soundex??? by Randseed · · Score: 5, Insightful

      One of the major clinical automation systems used in American hospitals uses soundex as a primary matching algorithm for patient lookups in the admitting department. Everyone is smart enough not to use it for names like "Juan Garza," but for names like "Steve Franklin" the chance of getting false-positives on your search algorithm is REALLY high. This is largely because of how the system itself implements things.

      Two notable occasions have occured where patients were admitted as the incorrect "Steve Franklin" (name make up for use here, of course). Needless to say, this might be a bit of a problem when the medical and nursing staff then takes that admission record and looks back at labs, radiographs, and such ON THE WRONG PATIENT.

      Of course, this same "highly advanced" system is really just a set of SQL tables that don't even use variable lengths for fields like comments (instead restricting the user to something obscene like 38 characters). The user interface is really just a Curses program that reads the columns on the table and displays them, allowing the user to edit them. Nearest I can tell, SQL functions handle all the data verification and such, and don't even do a good job at it.

      I've worked with this computer system for four years, suffering through it's stupidity.

      The point is that one should never assume that sucky, disgusting software is written by first year comp sci majors. There are enough professional programmers out there to cause a far bigger disaster.

      Never underestimate the power of stupid people in large groups, or in corporate culture.

    3. Re:Soundex??? by kaisa_sosey · · Score: 5, Insightful

      Who cares what algorithm they use? Why someone would support a 'No Fly' database is beyond me.


      I think people are either criminal (means they should be kept in prison) or not.


      Guys like you make me really afraid. For you it's only a technical problem, is it?



    4. Re:Soundex??? by Old+Wolf · · Score: 5, Funny

      That's a bit insulting to first-years, don't you think?
      On my course, in the section on name recognition, we first learned Soundex, and then learned Obershelp, along with the fact that the latter is far more accurate, and Soundex is pretty crap.

      Perhaps it was written by people with no education..

    5. Re:Soundex??? by Surak · · Score: 2

      As with a large percentage of individuals on Slashdot, I tend to immediately notice the technical issues FIRST and the other issues SECOND. ;)

      Of course I don't think a 'No Fly' database is a good idea. But if you're going to implement such a thing, you should probably *at least* do it the RIGHT way, don'tcha think?

    6. Re:Soundex??? by mindriot · · Score: 4, Insightful

      Interestingly enough, the original Soundex was based on English language only. So when feeding it foreign names, it will obviously match names from different languages that in reality are far from sounding alike. Admittedly, their algorithms are merely based on Soundex and maybe a bit better.

      But to me, finding terrorists by checking their names against no-fly lists sounds just about as useful as checking IP packets for an Evil bit, doesn't it?

    7. Re:Soundex??? by Surak · · Score: 4, Funny

      But to me, finding terrorists by checking their names against no-fly lists sounds just about as useful as checking IP packets for an Evil bit, doesn't it?

      Are you trying to tell me that the RFC 3514 patch I wrote for the Linux kernel back in April is useless?!

    8. Re:Soundex??? by waveman · · Score: 2, Informative

      " That algorithm is so fundamentally broken as to be practically useless ..."

      The problem is deeper than the algorithm. Soundex is quite useful when you are not quite sure of the spelling. For example, when someone gives their name over the phone.

      Basic statistics is the issue. If there are 1,000 terrorists in the US and you have a procedure that is 99% accurate, then the test will nail 2,500,000 people. So you get 2499/2500 rate of false positives - 99.9+% false positives. Quickly, people will start to treat the alerts as a sick joke.

      Any time you are looking for something rare, you are going to get a lot of false positives.

      The same problem occurs with medical tests for rare diseases. Most people who come up positive on cancer screening tests do have have cancer. Cancer is common over a lifetime but rare at any given time in a given individual.

      Face recognition technology has the same problem, looking for criminals in crowds.

    9. Re:Soundex??? by ConceptJunkie · · Score: 2, Informative
      If (and I say IF) the FAA were interested in doing good, rather than, as is often the case with government, merely appearing to be doing something good, they might do well to consider the technology being developed by this company.

      From their Webpage:


      Language Analysis Systems is the world's recognized leader in providing multi-cultural name recognition software solutions for mission critical applications. We have worked with U.S. Intelligence and Border Protection agencies for nearly two decades, developing a revolutionary and patent-pending approach to name matching and searching, going far beyond simplistic Soundex and key-based approaches. We offer a variety of proven commercial products to government, law enforcement, and commercial organizations that solve a multitude of name related problems.


      I applied to this company recently for a software developer position, but I never heard back from them. I'm surprised soundex, which has been around for what, 40 years?, is actually used anymore.

      --
      You are in a maze of twisty little passages, all alike.
    10. Re:Soundex??? by PurpleFloyd · · Score: 3, Informative
      Soundex may or may not be crap, but half the calculation work (which is really easy) can be done when the name is written to the DB. Obershelp, on the other hand, requires a search for the largest common pattern, for which no work can be done in advance. Soundex is a matter of converting the name input into a Soundex code (first letter, 3 numbers) then searching the database for that code.

      Obershelp/Ratcliffe works well for finding the best match in small sets, but on a large DB, it breaks down completely unless you are willing to dedicate significant time to the search. While better alternatives to Soundex definetely exist, Obershelp/Radcliffe is not one that should be used in large databases.

      --

      That's it. I'm no longer part of Team Sanity.
    11. Re:Soundex??? by aaarrrgggh · · Score: 2, Interesting

      Here, here!

      On a plane today, and two people were assigned the same seat. They actually both had the same ticket... she had gotten a duplicate boarding pass.

      Two identification checks and the gate scanner failed to figure out something was wrong. If she had just sat in a vacant seat, nobody would have been the wiser.

  2. Heard about this by Anonymous Coward · · Score: 5, Funny

    This also happened when Cowboy Neal was mistakenly identified as Kh'alid bin Naoul.

  3. Deal-Hunting is illegal? by mosch · · Score: 4, Insightful
    I'm a little confused... are the airlines now prohibiting people to fly on the basis that they went "deal-hunting"?

    I understand that the airline industry is a little tight right now, but that's just insane.

    1. Re:Deal-Hunting is illegal? by BWJones · · Score: 3, Funny

      I'm a little confused... are the airlines now prohibiting people to fly on the basis that they went "deal-hunting"?

      I understand that the airline industry is a little tight right now, but that's just insane.


      Yeah, the current administration wants everyone to be paying full fare here. We gotta start getting this economy back on track, so those that refuse to participate will be identified as terrorists and placed into the TIA archive. :-)

      --
      Visit Jonesblog and say hello.
    2. Re:Deal-Hunting is illegal? by Anonymous Coward · · Score: 3, Informative

      I think this has to do with the process of:

      (1) Register for flight with Airline X.
      (2) While registered for flight, search for better deal on similar flight with Airline Y.
      (3) Cancel flight with Airline X.

      Or I could be way off.

    3. Re:Deal-Hunting is illegal? by PeteJones · · Score: 5, Informative

      I think the deal hunting they are refering to is the practice of buying 2 return tickets and then using the first set to get to your destination and the second to get back. This way you can get the cheap tickets that span weekend stays but instead travel on a, say, Tuesday and come home on Wednesday of the same week.

      Even though you bought two complete return fares, it's still cheaper most of the time that buying one return ticket during a business week. They are trying to fleese the business traveller to subsidize the vacation traveller. I think you probably get both sets of airmiles from buying 2 sets as well

    4. Re:Deal-Hunting is illegal? by aaarrrgggh · · Score: 3, Informative

      Oddly, I noticed it the other day on a "terms of use" disclaimer for United. It went something like "you aren't allowed to play with our systems to get a better fare."

      The two tricks are "hidden cities" and "double-booking." For a hidden city, you book a flight through where you really want to go, get off the plane, but have a remaining segment. Since you had to make a stop, that ticket is cheaper.

      The airlines really have a flawed pricing scheme. Maybe it made sense 15 years ago, but they really need to re-consider based on ...say what their cost is?

  4. The problem... by maelstrom · · Score: 4, Insightful

    Unfortunately, the officials implementing a system such as this are going to get crucified either way. If they let a known terrorist onto a plane and a terrorist act happens, their heads are going to roll. Every journalist will be screaming that, "this terrorist has been on the FBI watch list for 2 years, a simple misspelling of his name allowed him to foil the multi-million dolar no fly system".

    On the other hand, false positives are going to make the system useless as the boy who cried wolf one too many times found out. There doesn't seem to be an easy solution to this problem.

    --
    The more you know, the less you understand.
    1. Re:The problem... by Anonymous Coward · · Score: 5, Insightful

      Solution is simple. The odds of you being killed in the U.S. by a terrorist is so small that only an ignortant and fearfull population would even worry about it. Just /dev/null wipe hands go to bed.

    2. Re:The problem... by toast0 · · Score: 3, Insightful

      my ass the US government didn't create the situation. hordes of people don't get pissed off at you cause you were just minding your own business

    3. Re:The problem... by MisterMook · · Score: 4, Interesting

      Screening for terrorists by name is a nice idea, and maybe eventually it will pop up one or two dumb ass terrorists travelling around the country by plane in a nation that's so paranoid that they're willing to sign away their most basic freedoms they've enjoyed for 200+ years. I think it's pretty stupid to throw the baby out with the bathwater though. Before 9/11 we had Timothy McVeigh and no one was hollering that rednecks shouldn't be allowed to drive trucks. So a terrorist gets on a plane, hopefully he'll be going home. If just make sure that the planes have security in place like police, cockpit doors, and some common sense I'm sure we'll all breath easier than if we've got Big Brother and his faulty software deciding who is a threat to society.

      Heck, there's a guy on death row with the exact same name as me out there somewhere...I'd hate for this great idea of the government to lead to my law abiding ass getting thrown in jail even "just in case"

    4. Re:The problem... by MillionthMonkey · · Score: 5, Insightful

      The system relies on a false premise. Terrorists don't have "careers" anymore. If you were planning a terrorist attack, you could easily find 20 guys with no records whose names appear on no lists in any form. Recruiting people for suicide terrorist activities has become very easy as of late. (I can't say why or I'll be attracting a bunch of AC replies from dittoheads.)

      This is a system designed to give you a false sense of security. It bothers and harasses people so much that they feel safe when they get on the plane (if the plane doesn't leave before they get through the bullshit). It will not stop the next hijacking at all- although it strongly discourages discretionary air travel, and is rapidly destroying the airline industry.

      We should go back to the system we had before 9/11, that served us well for many years. Terrorists may still be able to crash airplanes, but they will no longer succeed in crashing airplanes into buildings. Now that everyone knows how that type of attack works, it is unlikely to succeed again. Note how it didn't even succeed once they got wind of it via cellphone during that flight over Pennsylvania.

      But since the public has it in their head that terrorism can be magically prevented at the airport somehow, we should put up some sort of pretense for them at the security checkpoint and the gate. I'm thinking about some sort of prop that you would see Scotty using on Star Trek- a sort of stick with colored lights inside that you wave over a person. If they're a terrorist, the lights turn red and the stick makes a funny sort of buzzing noise. That way we could wave people through, and have them convinced that they've been inconvenienced enough to be safe.

    5. Re:The problem... by Cipster · · Score: 4, Insightful

      This list is designed to be like a screening test: False positives are acceptable (since you clear them up with a follow up) but false negatives are not since they can lead to disaster.
      It's a lot like the AIDS/HIV test. You want every potential positive test to show up so you can follow it up but you do not want to miss a potentially infected person.

    6. Re:The problem... by stephanruby · · Score: 2, Insightful
      They didn't create the situation

      The US government funded Osama Bin Laden when he was committing acts of terrorism against the USSR. The US government funded and incited atrocious acts of terrorism all throughout South America, Asia, and the Middle East. Go ahead, dispute any of my claims, and I'll find you a reputable source for it. "They didn't create the situation." My ass.

    7. Re:The problem... by eyegone · · Score: 5, Funny

      Before 9/11 we had Timothy McVeigh and no one was hollering that rednecks shouldn't be allowed to drive trucks.

      I've been hollering that rednecks shouldn't be allowed to drive trucks (or anything else) since I moved to Texas in '96.

      --
      "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety."
    8. Re:The problem... by barc0001 · · Score: 3, Interesting

      The problem is that these false positives AREN'T being cleaned up, and in a lot of cases, the people are not allowed to fly, and don't get a refund on their tickets. And they have no real recourse.

    9. Re:The problem... by cyberformer · · Score: 3, Funny

      The odds of you being killed in the U.S. by a terrorist is so small that only an ignortant and fearfull population would even worry about it.
      So you just have to replace the current population?

    10. Re:The problem... by MisterMook · · Score: 2, Insightful

      But would you believe that designing a national name recognition software based upon the theory that only rednecks are named Bubba or have hyphens in their names (Lula-Mae) would actually prevent rednecks from getting on the roads?

    11. Re:The problem... by MisterMook · · Score: 2, Insightful

      Shouldn't we focus more resources on developing cures for heart disease or cancer? Both afflictions take advantage of millions more than terrorists ever dreamed of, and fixing those problems would actually improve the quality of life in the world instead of institutionalizing fear so that we can destroy the principles of democracy that we built the country on in the first place.

    12. Re:The problem... by FreeMars · · Score: 3, Insightful

      Terrorists don't have "careers" anymore.

      Particularly suicide terrorists.

      We should go back to the system we had before 9/11, that served us well for many years.

      We should go back to the system we had in 1965. You want to fly somewhere, you buy a ticket.

      Occasionally someone tries to steal/crash the plane. Occasionally that works, occasionally the pilot or the police or someone makes a few holes in the would-be bad guy. Nobody suggests a need to violate everyone's rights to try to stop the rare crazy person.

      --
      Email: slashdot3@FreeMars.org (Address will be abandoned when it gets spam.)
    13. Re:The problem... by Sique · · Score: 4, Insightful

      It's a lot like the AIDS/HIV test. You want every potential positive test to show up so you can follow it up but you do not want to miss a potentially infected person.

      Normally every medical test in fact consists of two tests. The first one is called the efficient test, the second one the effective test.

      The first one is to throw out as much uninteresting people (the ones without any sign of sickness) as possible without missing any of the interesting people (the ones that are sick). In Computer Science you call a test like this "Trivial Reject". It should be fast and cheap to save on costs (of every type, like monetary, computational time...).

      The second test is supposed to catch as much of the interesting people (sick ones) as possible while throwing out pretty surely all of those who are in fact healthy and thus uninteresting for the matters of the test. This leaves you with a test population which consists of almost all sick people and some very few false positives. Because of the shrunken number of persons this test can be more elaborate and expensive.

      The problem with all those tests is, that with the low frequency of the usual dangerous plague you are testing for, the false positives (even though they may be very small compared to the whole of the population) still contains more people than the actual sick ones. I remember some exercises where we had to calculate the risk of actual being sick after a positive test for given frequencies of occurance of the plague in the population and the characteristics of the test. Often the result was that you have a 99% chance of being a false positive even though the test itself was pretty good.

      Same is valid for the frequency of the actual terrorists in the population of all U.S. domestic flyers. While there were 19 terrorists in the 9/11 attack, there have been billions of individual flights in the recent years. If your tests are being 99.999% sure in clearing a innocent flyer, it would still mean that this test applied to one billion flight passengers gives you 10 000 false positives.

      (This number is one of the reasons why the Romans once decided for "in dubio pro reo". Because the number of lawful citizens is quite high compared to the number of criminals, the average screening of larger populations results in more false positives than actually caught thieves. So you have always to prove individually that someone is guilty beyond any doubt before you can actually call them guilty.)

      In this special case the screening for names itself is a very inaccurate test. There are names in some countries being too prevalent to distinguish between people. For Corea it may be the name 'Kim', for India 'Singh', for Russia 'Gorbachev', for the U.S. 'Smith' or 'Adams'.

      The inapprobriate way to match spelling and pronouncing with the Soundex system (which only works with english names) just adds to the problem. In french names you often can't make a difference between 'en', 'an', 'on', 'ent', 'ant', and 'ont'. Famous are the words 'son' (his/her, but also tone), 'sont' ([they] are), 'sans' (without), 'sang' (blood), which are all pronounced the same.

      In german names there is no difference between 'tz' and 'z' or between 't', 'tt' and 'dt'. For my family name I know of the spellings 'Sigmund', 'Siegmund', 'Siegmundt', 'Sigemund', 'Siegemund', 'Siegemundt', 'Sigesmund', 'Siegesmund', 'Siegesmundt', 'Zygmunt', and 'Zygmont' (it appears that no one I ever met was able to spell my name right without me helping him, I have several documents with a falsely spelled name...).

      Add to this list the number of falsely entered records (people accused of things, later cleared, but not erased from lists compiled while they were under suspicion, typing errors, missunderstandings...). So I am quite amazed that the SFO airport had only about three hundred false positives. On the other hand there were no rightful positives (no one got convicted of terrorism yet who was caught with the CAPPS system), and we don't know about the false negatives (actual terrorists flying without being caught) because they slipped through the controls.

      --
      .sig: Sique *sigh*
    14. Re:The problem... by MillionthMonkey · · Score: 3, Interesting

      >>Terrorists don't have "careers" anymore.
      >Particularly suicide terrorists.


      That was my point. It used to be that these people would take over a plane, force the pilot to land somewhere, maybe off a passenger or two, demand transportation for their escape, and maybe even put hoods over their heads and give a little press conference before leaving- presumably to hijack again some day. Afterwards we would figure out who they were, put their names on lists, and maybe even look out for them.

      Now we have rookie terrorists committing suicide and mass murder with no explanation, and everyone is simply left to assume that it has something to do with Israel and Palestine. Our lists are useless. We seem to be looking for retired terrorists and punk rockers from the seventies, and if your name sounds like a name on the list you can't fly. The terrorists won!

      We should go back to the system we had in 1965. You want to fly somewhere, you buy a ticket.

      Personally I would prefer that this bizarre security not be applied to all air travelers- it should be considered an amenity. If you want to ride on a "terror-free flight" (and you're innumerate and stupid), you pay an extra $50-100, get there a few hours earlier, eat your in-flight meal with those plastic butter knives, and rest comfortably with the knowledge that punk rocker Johnny Rotten Lydon (rhymes with "Laden"?) is not on the plane with you. Also nobody from Priceline.

    15. Re:The problem... by lysium · · Score: 3, Insightful
      In the technical world, I believe this is referred to as Waving a Dead Chicken. It fills a need that, as the name indicates, has been present in one form or another since the beginning of human society.

      from the Jargon file:
      wave a dead chicken: v. To perform a ritual in the direction of crashed software or hardware that one believes to be futile but is nevertheless necessary so that others are satisfied that an appropriate degree of effort has been expended. "I'll wave a dead chicken over the source code, but I really think we've run into an OS bug."

      -------------

      --
      Together, we will drive the rats from the tundra.
    16. Re:The problem... by Melantha_Bacchae · · Score: 2, Insightful

      maelstrom wrote:

      > If they let a known terrorist onto a plane and a terrorist
      > act happens, their heads are going to roll. Every
      > journalist will be screaming that, "this terrorist has been
      > on the FBI watch list for 2 years, a simple misspelling of
      > his name allowed him to foil the multi-million dolar no
      > fly system".

      A) A terrorist is someone who uses people's fears to achieve their aims. Any kind of attack that would generate fear would work for the terrorist, it does not have to be on an airplane. Al Qaeda numbers over 10,000 in many countries world-wide, and is, according to the latest Pew polls, probably gaining new, unknown members because of the Iraq war. The chances of an airplane being targeted by someone in that database are extremely small.

      B) Thanks to the courageous people on Flight 93, a reliable technique has been developed for stopping terrorist attacks on airplanes. At the mere sight of a stealth box cutter or weirdo lighting his shoes, the passengers implement a procedure known as the 52 passenger pile-on, while the pilot (in locked cabin) radios for fighter jet escort and makes an emergency landing. Due to the success of this technique, Al Qaeda seems to have given up on hijacking airplanes for other means.

      C) For every suspected terrorist that uses the alias "John Smith", there are fifty innocent people, many American citizens, who are having their rights trampled on: arrests, interrogations, intimidation, missed flights, and most important of all, they are guilty until proven innocent. In a system that was catching terrorists, this would be a problem. In a system that is broken and catching only innocents, it is as repulsive and ridiculous as scanning for dirty bombs in subways and detaining cancer patients.

      > On the other hand, false positives are going to make the
      > system useless as the boy who cried wolf one too many
      > times found out. There doesn't seem to be an easy
      > solution to this problem.

      News-flash: the government has been crying wolf with every orange alert. All the terrorists have to do is "chatter", and sit back and laugh as the US runs around in a tizzy of fear, wasting billions, tossing away our dearly bought liberties, buying duct tape and plastic sheeting, stampeding to death in a Chicago nightclub, etc. Al Qaeda doesn't have to strike here again. Our own terror does all their dirty work, and corrupt government types are only too happy to take advantage.

      The greatest threat to the US right now is not Saddam, bin Laden, WMDs, or any axis of evil. The greatest threat, the one that has stolen our hearts, is Terror. Our fear is literally destroying this nation, turning the US into its own worst nightmare. Unless we can overcome our fear (individually and collectively), we will never be more than cows stampeded by terrorists and evil men to the destruction of everything our nation stands for and holds dear. If we can overcome our fear and reclaim our hearts, then we can face down the root of terrorism, and destroy it for good.

      "Lola, kindness is not enough, look for the reason of hatred and anger.
      When you find and understand that, love becomes the strongest power."
      Belabera, "Mothra 3: King Ghidora Attacks"

    17. Re:The problem... by mpe · · Score: 2, Informative

      The system relies on a false premise. Terrorists don't have "careers" anymore. If you were planning a terrorist attack, you could easily find 20 guys with no records whose names appear on no lists in any form.

      These need not actaully be their real identities. Remember that 7 of those accused of being involved in 911 were proven to have used stolen identities.

  5. now what? by Darth+Fredd · · Score: 2, Funny

    Do they stop using the technology? Do they update it? Do they decide to keep using it, what the heck? Do the innocents rebel?

    Tune in next time to "Lets listen in!"

    --
    "The most looniest, zaniest, spontaneous, sporadic Impulsive thinker, compulsive drinker, addict"
  6. Obviously this would happen by Anonymous Coward · · Score: 5, Insightful

    It should be obvious to anyone that any mechanism designed to target a small group out of a large group will would have to have an extremely small false positive rate to be of any use.

    And the false negative rate had better be small, too.

    Something 99% accurate is far from good enough; if only 0.01% of possible individuals are actual targets, you'll be getting 100 times as many false positives as correct positives.

  7. Recording Industry of American Airlines by Anonymous Coward · · Score: 3, Funny

    So when did the RIAA start running the airlines?

  8. Will I use my alias name ? by Alain+Williams · · Score: 4, Insightful

    Will I use my alias name which is Alain Williams, or will I use my real name which is Osama Bin Laden the next time that I book a flight to the USA ?

    The trouble with this sort of thing is that it inconveniences Joe Public while doing little to deter a real terrorist.

    1. Re:Will I use my alias name ? by LordK2002 · · Score: 3, Insightful
      The trouble with this sort of thing is that it inconveniences Joe Public while doing little to deter a real terrorist.

      This could be said about practically every "anti-terrorist" mechanism so far implemented.

      K

    2. Re:Will I use my alias name ? by janda · · Score: 3, Insightful

      I see you have an extranous "practically" in your response.

      Seriously, a friend of mine was driving from Denver to Kansas City at the start of the year, and a cop pulled him over for "crowding the center line". Now, I realize that some Kansas cops are just incredibly bored, but get real.

      Oh, and of course the cop asked if he could look in the trunk. If Keviee had said "not without a warrent", I'm sure he would have been taken in for acting "like he was hiding something".

      Face it, everything that has been done in the name of "the war on terror" has been nothing but a power grab to remove the rights of US citizens.

      --
      Karma: Food Fight (Mostly affected by Date Plate).
    3. Re:Will I use my alias name ? by Destree · · Score: 2, Insightful

      If any 19 year old in the US can get a fake ID for a few hundred, what makes you think a terrorist couldn't do the same.

    4. Re:Will I use my alias name ? by pben · · Score: 2, Insightful

      The county mounties in Western Kansas are well know for stopping people in I-70. They are looking for "drug money". In some counties as much as 30% of their budget comes from taking cash and cars from people running drugs. The funny thing is that if your friend had said no he could have left immediately. It is very hard to round up a circuit judge to get a warrant in the buffalo commons of Western Kansas. The cops are just doing catch and release until they strike it rich with someone who has too much cash or drugs.

      I wonder how long before the feds find a way of shaking down people for money on their stops. They did up the ticket tax but that just covers wages and makes for poor PR on how they are stopping terror. They are going to have to come up with something better than burning 1% of the drugs that comes into the USA. The war on drugs was a failure the war on terror is being run by the same people. Maybe it is just a power grab to create laws to hide their failures.

  9. Only the beginning by Anonymous Coward · · Score: 2, Insightful

    The same yahoos who came up with the no-fly program will be in charge of future lists, such as those for traffic stops, and lists that flag people for enhanced surveillence under tia-like programs.

    I wonder if there is a higher incidence of wiretapping done on homes that have residents named "J. Adams."

  10. Man... by Faust7 · · Score: 5, Funny
    Many airlines rely on name-searching software derived from "Soundex," a 120- year-old indexing system first used in the 1880 U.S. census.

    ...and you thought mainframes were legacy technology.

  11. Ten Problems with Soundex by notestein · · Score: 4, Informative

    Here's a good run down on soundex and ten problems with it.

    1. Re:Ten Problems with Soundex by notestein · · Score: 2, Informative

      True, one must take everything one reads (why yes, even on the net) with a grain of salt and judge based on cross verification and one's on experience.

      But even if some of the points are strained... there is some truth in most of them.

      As for nothing better... here's an article from a genealogist, that is a few years old, pointing out that there were already better algorithms on the market.

  12. Uhh... metaphone? by Pyromage · · Score: 3, Informative

    The metaphone algorithm addresses many of the shortcomings of soundex... why are they not using it?

  13. Pity the unfortunately named by sssmashy · · Score: 4, Funny

    Soundex gives each name a key using its first letter and dropping the vowels and giving number codes to similar-sounding vowels (like "S" and "C"). The system gives the same code, L350, for "Laden" and all similar-sounding names: Lydon, Lawton, and Leedham.

    Boy, I'd hate to be a guy with a name like "Sam Lawton" or something. I wonder how many similarly-named middle-aged salesmen are getting red-flagged on flights... because you just never know, what if Osama Bin Laden disguised as a portly white guy from Milwaukee, and he never bothered to pick a false name that sounded sufficiently different from the original.

  14. Re:Deal hunting? by heli0 · · Score: 4, Informative

    what's wrong with passengers hunting for the best deal?

    Story: to catch deal-hunting passengers making duplicate bookings.

    This means that people were using different travel agencies to reserve lots of seats on the same flight, and then simply going with the agency who quoted the lowest price. This means that the seats end up being empty, and the rest of us end up paying for them. Sorry, but even the "rich elite" can no longer make duplicate reservations. Almost all airlines now use software to automatically cancel duplicate bookings.

    --
    Whenever the offence inspires less horror than the punishment, the rigour of penal law is obliged to give way...
  15. Reinventing the wheel by CodeMaster · · Score: 5, Informative

    This is unbelievable. Why reinvent the wheel, while there are at least 3 countries that have implemented similar restrictions and tracking systems succesfully for more than 10 years now (England, Israel, and Germany - that I know of).

    This sounds like the work of some consultants with no idea of what they are faced with and fresh out of collage where they have analyzed a couple of algorithms... sorry - I have had way too much of these running around the office lately

    If for once someone would just poke his head out and instead of trying to find a solution to an age old problem, look and see how others are handling it, we (taxpayers) would all be much more content (and safe...).

    Just my 2c.

  16. David Nelson [TSA most wanetd??] by FreeLinux · · Score: 4, Interesting

    The situation is really bad if you are named David Nelson. Here is a sad but true story about no fly lists and the very common name, David Nelson. There was also a followup story to this one but I am unable to find a link.

    But, you feel safe. Don't you?

    1. Re:David Nelson [TSA most wanetd??] by FreeLinux · · Score: 2, Interesting

      When I first read that I immediately thought the number would get your name on the list, if it wasn't there before.

      In the followup article, which I can't find the link to, a lady did call the number. The lady was basicaly told to buzz off but, could we have your name for our records? It's the conspiracy theorist's nirvanna.

  17. I bet Amanda... by Anonymous Coward · · Score: 2, Funny

    ...Hugginkiss is catching all kinds of grief.

  18. Comment removed by account_deleted · · Score: 3, Funny

    Comment removed based on user account deletion

  19. Why not use ID#? by jaclu · · Score: 5, Informative

    I guess all US people would screem for such a "threat to your privacy" ;)

    But at least in here in sweden basically anytime you book a flight you give your ID number (similar to a social security #)
    Two benefits:
    1. Name is just a courtesy, so doesnt really matter for security if somebody get my name wrong.
    2. On checkin, it must be _you_ not somebody with a similar name

    Of course IDs can be stolen or forged, but that is a problem regardles of how you ID your self.

  20. But Bushies don't care Re:Obviously this would by leoaugust · · Score: 4, Insightful

    Your point is very valid if there is a reasonable and rational discussion of the tradeoff's - You know kind of Type I and Type II errors. But the Bushies don't believe in that. Goebellian Ashcroft said that they are willing to use every legal tool available to them to achieve their goals - even if it means ignoring the spirit of the law, and reinterpreting the letters of the law to do whatever they want.

    The willingness, in fact eagerness, to overlook collatoral damage is the Hallmark of the Bush Administration. They have rammed policies that wouldn't pass muster support anywhere. It is almost as if they are willing to kill 9 innocent people to prevent the 10th guilty one from escaping.

    This mentality shows up in the No Fly list. It shows up in how the Arab immigrants were rounded up, and are now being deported by the thousands. It shows up in how to get to the Saddam "WMD's" they were willing to slaughter Iraqi's. Two or 3 Sept 11 bombers entered with Student visa's so everyone on that visa now gets grandly screwed.

    So, logic applies only when the hysteria subsides. If you want you can never let the hysteria subside. And Donald Rumsfeld is a genius - almost lunatic - in that. Like he said in almost poetic form, on Feb. 12, 2002, Department of Defense news briefing, (which means that he could use the concept described in his "poem" below prove anything that he wants - it is almost like dividing by Zero.)

    The Unknown

    As we know,

    There are known knowns.

    There are things we know we know.

    We also know

    There are known unknowns.

    That is to say

    We know there are some things

    We do not know.

    But there are also unknown unknowns,

    The ones we don't know

    We don't know.

    --
    To see a world in a grain of sand, and then to step back and see the beach where the sand lies ...
  21. credit checks - wtf? by ananke · · Score: 3, Informative

    quote from the article: Scheduled for deployment in Spring 2004, CAPPS II will require airline ticket buyers to give more identifying information -- full name, birth date, home phone number and address. This information will be run against private credit-rating and government watch list databases to "verify you are who you say you are," Rosenker said

    What in the hell? I was under the impression that having a credit check actually hurts your credit history [as in, you shouldn't have too many credit checks in .] Now they're going to be checking that every time I fly?

    I always hated flying, now I'm starting to hate air lines...

    --
    --- d'oh
    1. Re:credit checks - wtf? by juuri · · Score: 4, Informative

      Not every check shows up on your reports, it is possible to make an overall query that doesn't get mentioned. FICOs scores are done this way.

      --
      --- I do not moderate.
  22. You need a constitution by Psiren · · Score: 5, Insightful

    You US folks could really do with a constitution to stop this sort of crap happening. Oh wait, you do have one. Oh well, back to the drawing board. Land of the free indeed.

  23. false sense of security by Destree · · Score: 5, Interesting

    I think the idea behind this scheme is not to catch terrorists, or even deter them. But to keep the public under a false sense of security, thinking "hell, if they are searching a lot of people, they must be getting the real ones too!" Although it never works out that way.

    I think I will be flying private planes if they start looking into your credit. A credit check could be like "Well, you evaded child support and paying the bank $5,000, we can't let you board, if you have the money for a flight, you can pay them!"

    They know they they won't be able to get this to work right, they are just pocketing money and putting out a crap system, but I think that it may have better use for private organizations, such as "Well, he evaded taxes and bills, but we see him having a one way ticket to (place), search for him there."

    1. Re:false sense of security by ChilyWily · · Score: 3, Interesting

      And...I wonder who gets to look at all my information? Who watches the watchers? (more accurately who catches the watcher) How long before we can expect for the data collected to be used for other unrelated things (such as child support etc mentioned in the prior posting)?

      On the other hand, they got my name, address, phone, date of birth - the only piece they need is my social security number and mother's maiden name and they can get a credit card in my name!

      yikes!

  24. It doesn't matter who gets on... by onallama · · Score: 4, Insightful

    ...as long as they're barred from entering the cockpit. The success of the 9/11 attacks can mainly be credited to 1970s-era hijacking guidelines directing pilots to comply with the terrorists' demands, on the assumption that they were going to fly the plane to Cuba or something similar, rather than use it as a weapon. Those guidelines made sense in their time, but clearly, they're no longer applicable.

    Here's an idea -- instead of inconveniencing millions of innocent passengers, how about securing the cockpits instead? So long as the pilots remain in control of the plane, it's a flying prison for anyone who commits any criminal act back in the passenger compartment. Let the cockpit crew notify the ground of a failed terrorist attack and land the plane at the nearest airport, with the police and FBI waiting. End of story.

  25. Conspiracy theory. by The+Creator · · Score: 2, Funny

    The system was never intended to catch terrorists.

    --

    FRA: STFU GTFO
  26. Re:Deal hunting? by zcat_NZ · · Score: 2, Interesting

    Customer: "Yeah, I like this shirt, but I'm not sure you guys are selling it at the best price. I'm just gonna take the shirt with me while I shop around, mmm 'k?"

    Shops don't let you do this, for fairly obvious reasons. Airlines do.

    Is this another case of using new laws to support a broken business model? Perhaps a better solution would be that you have to pay a non-refundable deposit when you make a booking. Enough to either discourage the practise, or recover the cost of an empty seat.

    --
    455fe10422ca29c4933f95052b792ab2
  27. Re:Deal hunting? by The+Fanta+Menace · · Score: 2, Interesting

    Well, if these sort of posts are getting modded up so often, maybe there is a problem with the system, then?

    It's not like Slashdot is limiting its moderators to all-out-Trostkyists, is it?

    --
    -- Even if a god did exist, why the fsck should I worship it?
  28. Good news for potential terrorists, then ... by legLess · · Score: 4, Interesting

    If you want to make sure your hijacking works fly around innocently as "Sam bin Laden" for a few months, get your name on all the "Fly lists," and then hijack a plane.

    --
    This isn't as much "normalization" as it is "don't take so many drugs when you're designing tables."
  29. This had me laughing so hard... by mark-t · · Score: 4, Funny
    ... I had to take a break to catch my breath.

    From the article:

    Soundex gives each name a key using its first letter and dropping the vowels and giving number codes to similar-sounding vowels (like "S" and "C").
    Hate to break it to these guys but neither "S" nor "C" are vowels. Heck, they don't even make vowel sounds.

    Geeze, no wonder the system is broken.

  30. Re:Deal hunting? by The+Fanta+Menace · · Score: 4, Insightful

    Perhaps if airlines weren't so elusive about their pricing, potential passengers would be able to easily compare various flight options without having to do this. But obviously it's in the interests of the airlines to keep passengers in the dark.

    I had to change a flight that I was booked for a couple of months back, and I couldn't even get them to give me a firm figure on how much it would cost to alter it until I'd committed myself to doing that. Now that is ridiculous.

    --
    -- Even if a god did exist, why the fsck should I worship it?
  31. Watch list is not a bad idea by sco08y · · Score: 2, Flamebait

    One knee-jerk reaction people have, particularly leftists, is that the watch list is useless and easily evaded, and that it merely exists to make people feel secure.

    The reason I single out liberals is that it's a problem they have with evaluating many other issues. In and of itself, a watch list doesn't do much. And this is a standard failure of analysis: it's easy to pooh-pooh any technique on its own, especially in matters of security or warfare, but that fails to see how it fits into the big picture. Terrorists have limited resources, and this forces them to divert those limited resources into getting false papers. It forces them to have to deal with more people, leaving a longer trail of evidence. When you're doing security, you're playing defense because you can never anticipate precisely what they'll do. What you want to do is force your opponent to take as many chances as possible, and ensure that at any point a mistake will foil them.

    Any single measure, whether baggage screening, watch lists, can *not* be rationally analyzed independent of a whole system of checks and doublechecks.

    Most egregious is the ACLU's highly irresponsible claim that this is a violation of civil liberties. False positives are *not* a violation of civil liberties. You do not have a right to convenience. You do not have an absolute right to fly because you're sharing that plane with 300 other people. This is just grandstanding by the ACLU. If they want to trash the administration, fine, but drop the sanctimony of civil liberties.

    1. Re:Watch list is not a bad idea by Idarubicin · · Score: 2, Insightful
      One knee-jerk reaction people have, particularly leftists, is that the watch list is useless and easily evaded, and that it merely exists to make people feel secure.

      What is this 'leftist' creature that you talk about? I have seen a dramatic increase in the use of the term in the last couple of years. No doubt its rise in popularity only coincidentally coincides with 2001/09/11. Unfortunately, it seems primarily to be used as a sort of epithet meant to discredit some or other class of opinions. The snobbish might call it an ad hominem attack--the rest of us recognize it as name-calling. His points aren't valid, because he's a leftist.

      So, what is this 'leftist' creature? Dusting off my history books, the closest fit seems to be 'Commie'. A bearer of uncomfortable political ideas. Anathema in the halls of power. Dangerous to be seen with anywhere else. Might even get you put on a watch list...

      Incidentally, I suspect that the shortcomings of watch lists as enumerated by those wicked 'leftist' sympathizers are valid concerns. Terrorists aren't the only ones with limited resources--if airlines and the government are wasting significant time and effort on a very large proportion of false positives, couldn't that time and effort be better spent elsewhere?

      --
      ~Idarubicin
    2. Re:Watch list is not a bad idea by mactov · · Score: 3, Insightful

      They also conduct 10 minute interviews with every person who goes through customs. Haven't flown there myself, but a good friend of mine has described it in detail, having gone back and forth dozens of times over the last few years. The security is far more extensive than air marshalls and a few gadgets on the planes.

      Israel has a massive, complex security network, and you can't just extract a single entity, El Al, from it and pretend that none of the rest of the government's activities bear on how El Al works.


      I've flown El Al several times in the past year, and I have been living in Jerusalem, and I can vouch for both: there's a lot more than a 10 minute interview to El Al if anything about you raises their hackles, *and* security in Israel is (has to be) a whole different animal than it is in the States. (I'm a U.S. citizen, a student living in Israel for a year.)

      How is a 1 in 100 chance of having a few questions asked and your bags searched because of a false positive "completely destroying" any of your rights?

      Here I have to take issue with you. "A few questions asked and your bags searched" is not what they are talking about in this article. I happen to trigger a couple of profiles that make airlines sit up and take notice (I'm a middle-aged single female, for starters) and as a result, flying is a nightmare. While I totally understand the need for careful security, if you are one of the lucky people on the list, you can look forward to the things that have actually happened to me in the past year:

      -- kept off of one international flight, questioned for 4 hours, finally allowed on the next flight going out.

      -- required to spend 3 hours clearing security, therefore missing my flight (while my laptop was disassembled so completely that tools were required, and all the parts x-rayed.)

      -- when travelling with a friend, said friend was also taken off into a separate room, where he was questioned to see if his version of my story matched my version

      -- Searches that require undressing.

      -- Humiliating "interviews" in front of a line of people (who are also angry that the line is held up.) ... I could go on.

      My point is, we're not talking minor inconvenience, as you suggest. I have no desire to be blown up or crashed into a building, and I am quite clear that anything I do to protest this treatment makes matters worse, so I just grit my teeth and fly as little as I can.

      Some airlines are more courteous than others; I've become a real fan of Continental, because they take their time checking me out but do it with a minimum of humiliation.

      --
      OK, now what?
  32. catching terrorists by name by dtfinch · · Score: 2, Insightful

    Do they really think that they'll stop terrorists by asking them their names and refusing service if they appear on a list?

    Like a terrorist is going to walk up to the counter and say, "Hello, my name is Ibrahim Salih Mohammed Al-Yacoub and I'd like to buy a one way ticket from New York to Los Angeles, preferably on whichever flight has the fewest american infidels. Oops, did I say infidels? I meant passengers, good american passengers."

    Terrorists just have to use fake names, or steal someone's identity.

    As for soundex, it's a very useful tool for matching words based on how they sound. If someone asks you to search for "alan", you might type in alen, allen, ellen, etc. and still find what they're looking for. This is just a case of it being used in a foolish manner.

    1. Re:catching terrorists by name by bickerdyke · · Score: 2, Insightful

      Terrorists just have to use fake names, or steal someone's identity. iirc the 9/11 terrorists didn't have to use fake names or IDs. Thats the advantage of suicide bombers. No one will ever be suspiscious for having commited already a suicide bombing before.

      --
      bickerdyke
  33. Spelled out by Nynaeve · · Score: 3, Interesting

    This is only the tip of the iceberg, I fear. There are times when you need to ask yourself, what if? I did not live during the McCarthy era, but I feel this is one of those times. I may seem paranoid, but here is my "what if?" for the Bush administation's plan:
    1) Use the term "terrorist" to refer to a small number of individuals that are a threat to peace and security in order to justify sweeping changes to policy and laws but more importantly as justification to begin developing a system to track every individual, everywhere (the system will, unfortunately, improve over time).
    2) Once the necessary tracking infrastructure is in place (perhaps not perfected yet), change the term from "terrorist" to "criminal" . The justification will be that criminals are bad too, and they threaten peace and security just like terrorists, right?
    3) Once the system has improved to the point that false positives are indeed negligable, gradually redefine the term "criminal" to discreetly include groups and individuals of the government's choosing.

    Does this sound like an unlikely scenario? If you have an opinion, what social forces do you believe would act to reinforce or inhibit this scenario?

    One might also discuss the similarities of the TIA (Total Information Awareness) and TCPA (Trusted Computing Platform Alliance). Both seek to create an environment that a person or an application, respectively, must be pre-authorized to enter. Without proper authorization, you or your application are not allowed to be a part of the system or interact with other authorized entities.

    Eventually, I expect the "fly-list" to become the dominate list, and the "no-fly-list" to become increasingly obscure. You will then no longer be able to fly without identifying yourself to the system.

    My greatest fear is that one will no longer be able to "buy or sell without the mark [of approval]", in the Biblical sense. What we see today certainly allows for that, especially if you take into consideration the infusement of funds by the government into bioinformatics R&D. The "mark in the forehead or right hand" easily translates into a retinal scan or fingerprint. When positive identification becomes cheap, efficient, and accurate, it will become ubiquitous, and we will all be rows in a (probably Oracle) database.

    Thoughts?

  34. Exactly. Some statistics to back that up. by Anonymous Coward · · Score: 3, Insightful

    Here's a list of the most common ways that people died in the US, 2000:

    1. Diseases of heart: 710,760
    2. Malignant neoplasms (cancer): 553,091
    3. Cerebrovascular diseases (stroke): 167,661
    4. Chronic lower respiratory diseases: 122,009
    5. Accidents (unintentional injuries): 97,900
    6. Diabetes mellitus: 69,301
    7. Influenza and pneumonia: 65,313
    8. Alzheimer's disease: 49,558
    9. Nephritis, nephrotic syndrome, and nephrosis: 37,251
    10. Septicemia: 31,224
    11. Suicide: 29,350
    12. Chronic liver disease and cirrhosis: 26,552
    13. Hypertension and hypertensive renal disease: 18,073
    14. Assault (homicide): 16,765
    15. Pneumonitis due to solids and liquids: 16,636
    16. All other causes: 391,904

    Total: 2,403,351

    "Terrorist attacks", if listed using 2001's figures (~3000?), would be clumped into the "other" category, being 10 times less dangerous than suicide, and 5 times less likely than regular old homicide. "Terrorism" is a whopping 240 times less likely to kill you than heart failure, and would account for a mere 0.12% of all fatalities.

    Think about it another way - every 2 days, more people die through heart failure than were killed in the WTC disaster. Worrying about "terror" is only likely to increase your odds of dying of heart failure or hypertension.

  35. Obligatiry Simpson's Quote by JWhitlock · · Score: 2
    This is a system designed to give you a false sense of security. It bothers and harasses people so much that they feel safe when they get on the plane (if the plane doesn't leave before they get through the bullshit). It will not stop the next hijacking at all- although it strongly discourages discretionary air travel, and is rapidly destroying the airline industry.

    From here

    Homer: Not a bear in sight. The Bear Patrol must be working like a charm.
    Lisa: That's specious reasoning, Dad.
    Homer: Thank you, dear.
    Lisa: By your logic I could claim that this rock keeps tigers away.
    Homer: Oh, how does it work?
    Lisa: It doesn't work.
    Homer: Uh-huh.
    Lisa: It's just a stupid rock.
    Homer: Uh-huh.
    Lisa: But I don't see any tigers around, do you?
    [Homer thinks of this, then pulls out some money]
    Homer: Lisa, I want to buy your rock.
    [Lisa refuses at first, then takes the exchange]
    BTW, I disagree with you - I think the airlines were pushing for just the right amount of annoyance, to make people think "Boy! They really are looking for those terrorists!", so that the idiots would start flying again. I read once that on most flights, only the last few passengers are profit - the rest pay for fuel, salaries, cost of the plane, etc. So, if only a few passengers per flight decide to risk driving instead, the airline become unprofitable.

    When people get used to the current level of security, and stop worrying as much about terrorists, they'll back off security little by little to save money. I hope.

  36. John Gilmore is suing for freedom of travel by morcheeba · · Score: 4, Informative

    John gilmore is suing for the right to travel anonymously(sp).

    From the website:
    He does so "because he believes persons have a right to travel by air without the government requiring that they relinquish their anonymity. No security threat is as important as the threat to American society caused by erosion of the right to travel, the right to be free from unreasonable searches, and the right to exercise First Amendment rights anonymously."

    Check out the FAQ's, which are well written and explain the other reasons - including being subject to secret laws - he is opposing this.

  37. There's a simple, easy, inexpensive solution by Eric+Smith · · Score: 2, Insightful
    The SFgate article quotes Sen. Ron Wyden, D-Ore.:
    How does government come up with a strategy that allows us to fight terrorism ferociously without gutting our civil liberties?

    There's a simple, easy, inexpensive and effective solution. Unfortunately that's not what the government wants; they prefer expensive, complicated solutions that let them hire more people and expand the bureacracy, even if it happens that those solutions are ineffective. Anyhow, the simple, easy, inexpensive solution is:

    1. On domestic flights, don't use a don't fly list at all. It's completely unnecessary and serves no useful purpose.
    2. On international flights, if it's absolutely necessary (and I'm not convinced that it is), use such a list only for passengers that aren't carrying a valid US passport.
  38. Listen Dimwit... by Kedyn's+Crow · · Score: 3, Insightful

    It's bad enough when a single isolated program fails completely, as this one has. But if, as you suggest, this program is a part of a larger anti-terrorist system then the failure on the governments part is that much greater! As the saying goes "A chain is only as strong as its weakest link.". The failure of the "No-Fly" list to accurately idenify terrorists creates a critical weakness in our national security infrastructure. For you see, this system was designed to deny terrorists mobility and access to a weapon that they have used successfully in the recent past. In this the "No-Fly" list has failed completely.

    This list reminds me of the blunder the French made in constructing the Maginot line. They covered most of their eastern border with a line of fortifications that are tough by even modern standards. But they left the Arden forest uncovered because they thought that no mechanized army could pass through the thickly wooded area. But when war broke out that's just what the Germans did, and the rest of the line was rendered irrelevant. In other words when a line or net or wall is breached then all the remaining sections are worthless.

    --
    "The moment "pride" is lost, "freedom" is also lost." - Ramza.
  39. Or safer cars. And bathtubs. by Anonymous Coward · · Score: 5, Insightful

    In the US, more people are killed in car accidents _every month_ than were killed in the attacks on the WTC. Even a tiny 2% decrease in the number of car-accident deaths would save more lives every decade than were lost in all terrorist attacks the US has ever suffered.

    Over the last 10 years, an American's odds of dying in a terrorist attack are about 1 in 100,000. That's less than your odds of drowning in your own bathtub, less than your odds of drinking yourself to death, and less than your odds of accidentally suffocating in your own bed! (http://www.nsc.org/lrs/statinfo/odds.htm)

    Frankly, the current atmosphere of fear of terrorism is little more than hysteria. Why on earth aren't we showing the world we have some balls and are strong enough to not let a few terrorists make us live in fear? If you live in fear or give up freedoms, you've let the terrorists win!

  40. Working Just Fine by Markus+Registrada · · Score: 4, Insightful
    If you think the "no-fly" list is not working well, you fundamentally misunderstand its purpose. In fact, for its intended purpose, it has been working fabulously. Like harrassing people about nail files in their bathroom kits, it leads people to think that something is being done about security, without the need actually to do something. How many people have you heard say that while having their shoes X-rayed was inconvenient, it made them feel safer about flying?

    X-raying shoes doesn't make for effective security, but it's intrusive enough to give the impression that at least something is being done.

    Articles and editorials that call attention to the violations that come with the bogus no-fly list are essential components of the system -- they make everybody else experience it, vicariously. Everybody who is a little bit stupid (i.e. most people) feels a little safer for it. Sure it inconveniences some people, but not enough to make much political difference.

    Even better than the impression of intrusive security, it leads to demands for what amounts to a system of internal passports, where you can't travel by air without registering, and getting -- and maintaining --- official permission. "What, no internal passport? Sorry, sir, I can't let you board." At first felons will have their passports pulled, then "suspected terrorists", then political undesirables of all sorts.

  41. Re:Deal hunting? by MConlon · · Score: 2, Interesting
    Customer: Yeah, I like this shirt, but I'm not sure you guys are selling it at the best price. I'm just gonna take the shirt with me while I shop around, mmm 'k?"

    Shops don't let you do this, for fairly obvious reasons. Airlines do.

    Huh? Shops sure as hell do. I don't know what stores you shop at, but every store I shop at has a return policy on unused merchandise.

    MJC

  42. Re:the Mark by Nynaeve · · Score: 2, Interesting
    Shots for "the cure" they come up with will be mandatory, with the chip implanted/injected at the same time as the only way to "prove" you are safe to be around other "approved" citizens who've gone through the procedure previously

    I'd not thought of that. It would have to be an extraordinarly threatening disease, although it would be an extremely effective tactic: comply or die.

    Personally, I don't think RFID will be the tool used because it has already attracted an extreme amount of "big brother" attention. If one truly attempts to deceive "even the very elect", it won't be with something as invasive or obvious as RFID! Additionally, RFID (and UPC codes, etc.) can serve as a decoy to detract attention from the actual "mark" itself. That's why I am suspicious of the retinal/fingerprint method. It's very subtle, efficient, and accurate, and is becoming more economically feasable every day. There is no action on your part aside from submitting your biometrics for inclusion in a database (thereby marking you as "clean" in your example). It's a simple and innocent-sounding process. It's even becoming increasingly accepted by the public. There are several slashdot stories that make mention of the fact that grocery stores are using fingerprints to identify "shopping club" memebers. And this is just to save a few bucks!

    There are religious groups today that oppose any sort of innoculations, and un-vaccinated children attend public schools in the face of state laws requiring vaccinations. This implies the current state of affairs is such that social and legal pressures to vaccinate your children against the worst of today's diseases is insufficient to infringe on one's liberty. It'll take something more dangerous than Anthrax or SARS to tip the scales.

    The Army Medical Research Institute of Infectious Diseases is at the forefront of SARS research. Perhaps this is to bring the military into the public eye as a provider of the "cure" in preparation for "the big one"?

    I so enjoy a good conspiracy theory discussion. :)

  43. Soundex is English only.... by anonymous+cupboard · · Score: 2, Interesting
    Soundex is ok for suggesting alternatives such as Candy and Kennedy - but only for names of anglo-saxon origin (or names that were anglicized on Ellis Island). Take a Spanish name or a Russian name and the algotithm needs a complete reworking. Even with similar systems such as German, it just doesn't really work.

    The military is just a government excuse to fleece the tax payers and take bribes!!!!