Forgot your password?
typodupeerror

Comment Re:likely the wrong path (Score 1) 122

They've already dealt with this. If you read the fine print on these agreements, many or most of the recent ones say that the company has the option of rolling up any "substantially similar" arbitration cases into a single mass arbitration. (Which as usual, is decided by a person whose paycheck ultimately depends on the business of that same company.)

Submission + - Europe's New Entry/Exit System Is a Mess, and It's Not Going Away (nytimes.com)

An anonymous reader writes: European bureaucrats are standing firm on a security program that has led to long lines, confusion and missed flights at airports this summer, despite an urgent plea from the aviation industry to suspend it.

The Entry/Exit System, or E.E.S., requires members of the 29-country Schengen open-border area to collect biometrics like face photos and fingerprints from travelers upon arrival and to confirm their identities upon exit. Since the system took full effect in April, airports and airlines have reported widespread chaos — including hourslong security checkpoint lines and confusion over procedures — and have feared the headaches could worsen as peak travel season begins.

The problems led senior officials from the European aviation industry last week to ask the European Union to suspend the E.E.S. requirement this summer. The system is "undermining Europe’s reputation, European tourism and connectivity," said the open letter to the president of the European Commission.

But on Tuesday, European Commission bureaucrats officially rejected the request in a meeting with industry stakeholders, saying that the new system’s security advantages outweighed its inconveniences.

E.E.S. is used in the 29-country Schengen area, which includes 25 European Union members as well as Iceland, Liechtenstein, Norway and Switzerland. The system applies to most visitors to those countries who are traveling for a short stay (up to 90 days in a 180-day period), regardless of whether they have a visa.

Since the system began to roll out across Europe in October, travelers have encountered an inconsistent set of procedures, taking anywhere from a few minutes to several hours. Some airports have self-service kiosks where travelers can register their biometrics. At others, border control officers manually register travelers. Only two countries, Sweden and Portugal, currently allow travelers to use a dedicated app. E.E.S. is intended to be an automated system, eventually.

"At present, the system is failing to deliver one of its core objectives: facilitating efficient border crossings while maintaining the smooth functioning of Europe’s transport network," the aviation officials wrote in the open letter urging the European Union to act.

Summer travelers are being forced to “endure needless passport control chaos,” Neal McMahon, Ryanair’s chief operations officer, said in a statement.

“Passengers and families should not be used as guinea pigs for a half-baked passport control system that risks creating long queues, missed flights and unnecessary stress at airports this summer,” he added.

In Rome, the airports have already been suspending biometrics collection on a near-daily basis this summer, said a spokesman for Aeroporti di Roma, which operates the city’s airports. Rome Fiumicino, Italy’s busiest airport, expects around 11 million passengers in June and July, which could be up to 180,000 passengers on peak days, the spokesman said.

Comment Re:Keep it quiet (Score 1, Insightful) 65

anti-DEI police of the current Administration

That DEI enforcement group seems to be asleep on the job. The current administration has appointed numerous women* to important positions.

*Biological women, that is. Sorry about the rest of you guys. I guess you are going to have to do a better job tucking.

Are you sure about that "biological" thing? Most of them look like Stepford Wives.

Comment Nice, but... (Score 5, Insightful) 68

... sadly for the Americans, the rest of the world now knows they can't count on a US based provider for this kind of thing any more.

It was uncomfortable enough relying so heavily on American software back when it couldn't be switched off remotely on the say so of an idiot. Today it's an intolerable risk.

Comment Re:The purpose of a factory is not to provide jobs (Score 4, Insightful) 197

The purpose of a factory is not to provide jobs.

It's intended to made widgets that can then be sold at a profit.

It's not a social welfare program.

The way things are headed, the only way people are going to be able to obtain money to pay for those widgets is via social welfare programs.

Comment Re: strncpy never made sense (Score 3, Insightful) 40

strncpy() was not intended for null-terminated strings at all. It should have been named copy_null_padded_buffer(). Then its operation would have made sense to almost anyone. People wouldn't have minded the longer name much either, because hardly anybody uses null-padded buffers in modern software.

Note that a null-padded buffer that is completely full doesn't have any nulls in it at all. That's why strncpy() doesn't necessarily add a null termination. It also fills the entire destination buffer with nulls after the end of a short copy, which can be very inefficient when used with null-terminated strings.

TL;DR: don't use strncpy(). It doesn't do what anybody thinks it does.

Slashdot Top Deals

Please go away.

Working...