Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror

Submission + - Google Contractors In Pittsburgh Are Unionizing With a Steel Workers Union (nytimes.com)

An anonymous reader writes: Contract workers at Google’s office in Pittsburgh have just announced their intention to unionize. 66 percent of the eligible contractors at a company called HCL America Inc., signed cards seeking union representation, according to the United Steel Workers union. With the help of the Pittsburgh Association of Technical Professions (PATP), they’re asking the National Labor Relations Board (NLRB) for a vote on union representation. The PATP is a project sponsored by the union aimed at "helping Pittsburgh and Southwestern Pennsylvania workers in high-tech fields organize and bargain collectively.”

“Workers at HCL deserve far more than they have received in terms of compensation, transparency and consideration, and it has gone on like this for much too long,” HCL worker Renata Nelson said in a press release. “While on-site management tries to do what they can, where they can, their hands are often tied by arbitrary corporate policy.” The vote for union representation is an important step, necessary to empower a union to exclusively represent employees and negotiate on their behalf for a collective bargaining agreement. The move also represents an important step in the small but growing movement to unionize Silicon Valley’s workforce. The press release explains that HCL's 90 employees "work side-by-side with those of the giant corporation for far less compensation and few, if any, of the perks."

Submission + - Plan To Use Fitbit Data To Stop Mass Shootings Is One of Scariest Proposals Yet (gizmodo.com)

An anonymous reader writes: Last week, the Washington Post reported that the White House had been briefed on a plan to create an agency called HARPA, a healthcare counterpart to the Pentagon’s research and development arm DARPA. Among other initiatives, this new agency would reportedly collect volunteer data from a suite of smart devices, including Apple Watches, Fitbits, Amazon Echos, and Google Homes in order to identify “neurobehavioral signs” of “someone headed toward a violent explosive act.” The project would then use artificial intelligence to create a “sensor suite” to flag mental changes that make violence more likely. According to the Post, the HARPA proposal was discussed with senior White House officials as early as June 2017, but has “gained momentum” after the mass shootings in El Paso, Texas, and Dayton, Ohio. The latest version of the plan, reportedly submitted to the Trump administration this month, outlined the biometric project called “SAFE HOME,” an acronym for “Stopping Aberrant Fatal Events by Helping Overcome Mental Extremes.” A source told the newspaper that every time HARPA has been discussed in the White House “even up to the presidential level, it’s been very well-received.”

A copy of the plan obtained by the Post characterizes HARPA as pursuing “breakthrough technologies with high specificity and sensitivity for early diagnosis of neuropsychiatric violence” and claims that “a multi-modality solution, along with real-time data analytics, is needed to achieve such an accurate diagnosis.” That’s a lot of vague buzzwords, but the general idea is clear: collect a wealth of personal data in order to flag mental status changes in individuals and determine whether those changes can predict mass violence. It’s an approach that strikes George David Annas, deputy director of the Forensic Psychiatry Fellowship Program at SUNY Upstate Medical University, as ridiculous. “The proposed data collection goes beyond absurdity when they mention the desire to collect FitBit data,” Annas told Gizmodo. “I am unaware of any study linking walking too much and committing mass murder. As for the other technologies, what are these people expecting? ‘Alexa, tell me the best way to kill a lot of people really quickly’? Really?”

Submission + - TV Manufacturers Unite To Tackle the Scourge of Motion Smoothing (theverge.com)

An anonymous reader writes: The UHD Alliance, a collection of companies who work together to define display standards, has announced Filmmaker Mode, a new TV setting that’s designed to show films as they were originally mastered, with as little post-processing as possible. Although the mode will affect multiple settings like frame rate, aspect ratio, overscanning, and noise reduction, its most important element is that it turns off motion smoothing, which creates that horrible “soap opera effect” that makes even the most expensive films look cheap. LG, Vizio, and Panasonic have all expressed an interest in including the new mode in their TVs.

Of course, it’s always been possible to turn off this setting (we’ve got a guide on how to do so right here) but TV manufacturers have an annoying habit of referring to the same setting by different names, confusing the process. LG calls it “TruMotion,” Vizio calls it “Smooth Motion Effect,” and Panasonic calls it “Intelligent Frame Creation,” for example. The difference with Filmmaker Mode is that it will have the same name across every TV manufacturer, and the UHD Alliance also says that it wants the setting to be enabled automatically when cinematic content is detected, or otherwise easily accessible via a button on the TV remote.

Comment Strawman massacre (Score 1) 630

Of course replacing Adobe lock-in with Apple lock-in would be dumb. HTML has 100% market share and CSS+JS are still ahead of Flash.

Jobs didn't block Flash on desktop, where Flash has high market share, so why quote that statistic? He refused to support it on mobile, where currently iOS has much higher market share than Flash.

Comment Re:Well, Opera Mini isn't strictly a browser... (Score 1) 292

> Because the bank is (presumably) chartered in the country you live in and heavily regulated, and you have recourse if they screw something up.

Indeed, Opera won't get trillion dollar bonus if they screw something up ;)

Opera is publicly traded company regulated in civilised country. They're technologically very competent, which I can't say about my bank which has JavaScript-laden IE-optimized website in 640x480 popup window.

Comment It does not violate SDK terms (Score 5, Insightful) 292

It could be accepted.

Apple forbids code interpreters other than Apple's own, BUT this is Opera Mini, not full Opera Mobile. Mini executes JavaScript server-side and only sends rendered result to the phone. There's likely no (turing-complete) interpreter on iPhone side, so it should be fine within terms of SDK.

Apple has already accepted number of WebKit-based browsers, so browsers in general aren't forbidden.

And for iPhone users, especially on EDGE, there is very good reason to use Opera Mini: it's going to be faster. iPhones before 3GS are also very low on RAM, and Safari only uses RAM for caching. Presumably Opera Mini would be able to keep many more tabs open and fully cached.

Comment Re:PHP harder to test than C++ (Score 1) 752

> But how exactly do you go about doing unit tests of the front end of a web application?

Unit testing in PHP isn't different than in other languages. You split code into testable chunks and hammer them with PHPUnit.

> due to all the javascript stuff that lives on the browser these days.

How is that related to C++/PHP? And would you just run Facebook without unit tests? (good luck!)

Anyway, for JS there's Selenium and it can integrate with PHPUnit. UI testing is difficult, and browser-hosted tests are especially fragile and finicky, but that's not PHP's fault and C++ won't fix it.

Comment Re:Interpreted Languages... (Score 1) 752

> If there is so much PHP out there, why wouldn't/couldn't there be an efficient compiler

There is PHC and Roadsend.

However there are PHP-specific problems that make it harder than it should be.

PHP's "standard library" is heavily dependent on the interpreter, so you either lug it around and maintain its state, or rewrite 5000 methods.

And there's of course eval(), extract(), dynamic include/autoload and other magic that makes static analysis pretty hard or impossible.

Slashdot Top Deals

As you will see, I told them, in no uncertain terms, to see Figure one. -- Dave "First Strike" Pare

Working...