Deadspin Bodybuilder Decks Official, Flips Tables, And Completely Freaks Out After Losing | Jezebel 

Deadspin Bodybuilder Decks Official, Flips Tables, And Completely Freaks Out After Losing | Jezebel Oh, Right, Here’s Why We Don’t Actually Want to Move to Waco and Live in a Fixer Upper | Gizmodo Watch Humans Destroy the Earth in 30 Years With Google Earth Time Lapse | Jezebel Mitt Romney Had Dinner With Donald Trump…

Read more…



Source: LifeHacker – Deadspin Bodybuilder Decks Official, Flips Tables, And Completely Freaks Out After Losing | Jezebel 

Upgrade Your Measuring Cups To Pyrex For Just $11

We love Pyrex around these parts, and their 3-pack of measuring cups is down to $11 today. In addition to looking great, the cups are microwave and (semi) dishwasher safe, and since they’re made of glass, they won’t absorb any odors, flavors, or stains. Plus, they just feel heavy and professional, and would make a…

Read more…



Source: LifeHacker – Upgrade Your Measuring Cups To Pyrex For Just

Reported cases of webcam blackmail double, are linked to four suicides

Read 6 remaining paragraphs | Comments



Source: Ars Technica – Reported cases of webcam blackmail double, are linked to four suicides

Why Are Dinosaurs Everywhere In VR?

Why are dinosaurs everywhere in VR? Because they are cool? Because you can’t just go to a zoo and see one? They are massive and are fun to “see” in VR? I could go on all day.


When done right, VR’s ability to convey presence — the feeling of actually being somewhere — is unrivaled by any other medium. Nowhere is that more apparent than when you’re craning your neck to take in the size of the zebra-striped brachiosaur lumbering through a tar pit in Crytek’s Robinson: The Journey. Same goes for ducking under a bellowing tyrannosaur stomping through a museum hall in an Oculus tech demo. Some 65 million years later, developers love to resurrect nature’s most fearsome creatures in VR. But why?

Comments

Source: [H]ardOCP – Why Are Dinosaurs Everywhere In VR?

GoPro To Cut About 15% Of Workforce

Hey GoPro, remember back at the beginning of the year when you decided to quit selling entry level cameras? How’s that working out for you now?

GoPro Inc said on Wednesday it would cut about 15 percent of its workforce as the company restructures its once fast-growing action camera business. GoPro said it will cut about 200 full-time positions, cancel open positions and shut down its entertainment division as part of the restructuring. The company said it expects to incur about $24 million to $33 million in restructuring charges, mostly in its fourth quarter.

Comments

Source: [H]ardOCP – GoPro To Cut About 15% Of Workforce

Welcoming a New Leader for Intel's IoT Business

As the Internet of Things revolution expands, Intel adds experienced leaders and builds new organizations. There’s a sea change in technology happening all around us, defining what it means to live in a smart and connected world. We know it as the Internet of “Things” (IoT) – a massive surge of more than 50 billion devices expected to come online over the next few years. IoT is nothing short of a revolution,  requiring a new generation of technology and 5G connectivity that can serve a far broader set and multitude of devices, process volumes of data, and satisfy our ever-growing human need for connectedness. Just as industry and the experiences it creates are evolving, so are we here at Intel. In the face of this revolution, we are adding experienced leaders and building new organizations.

Comments

Source: [H]ardOCP – Welcoming a New Leader for Intel’s IoT Business

A security update for Raspbian PIXEL

The more observant among you may have spotted that we’ve recently updated the Raspbian-with-PIXEL image available from Downloads. With any major release of the OS, we usually find a few small bugs and other issues as soon as the wider community start using it, and so we gather up the fixes and produce a 1.1 release a few weeks later. We don’t make a fuss about these bug fix releases, as there’s no new functionality; these are just fixes to make things work as originally intended.

However, in this case, we’ve made a couple of important changes. They won’t be noticed by many users, but to those who do notice them and who will be affected by them, we should explain ourselves!

Why have we changed things?

Anyone following tech media over the last few months will have seen the stories about botnets running on Internet of Things devices. Hackers are using the default passwords on webcams and the like to create a network capable of sending enough requests to a website to cause it to grind to a halt.

news

With the Pi, we’ve always tried to keep it as open as possible. We provide a default user account with a default password, and this account can use sudo to control or modify anything without a password; this makes life much easier for beginners. We also have an open SSH port by default, so that people who are using a Pi remotely can just install the latest Raspbian image, plug it in, and control their Pi with no configuration required; again, this makes life easier.

Unfortunately, hackers are increasingly exploiting loopholes such as these in other products to enable them to invisibly take control of devices. In general, this has not been a problem for Pis. If a Pi is on a private network in your home, it’s unlikely that an attacker can reach it; if you’re putting a Pi on a public network, we’ve hoped that you know enough about the issues involved to change the default password or turn off SSH.

But the threat of hacking has now got to the point where we can see that we need to change our approach. Much as we hate to impose restrictions on users, we would also hate for our relatively relaxed approach to security to cause far worse problems. With this release, therefore, we’ve made a couple of small changes to improve security, which should be enough to make it extremely hard to hijack a Pi, while not making life too difficult for users.

What has changed?

First, from now on SSH will be disabled by default on our images. SSH (Secure SHell) is a networking protocol which allows you to remotely log into a Linux computer and control it from a remote command line. As mentioned above, many Pi owners use it to install a Pi headless (without screen or keyboard) and control it from another PC.

In the past, SSH was enabled by default, so people using their Pi headless could easily update their SD card to a new image. Switching SSH on or off has always required the use of raspi-config or the Raspberry Pi Configuration application, but to access those, you need a screen and keyboard connected to the Pi itself, which is not the case in headless applications. So we’ve provided a simple mechanism for enabling SSH before an image is booted.

The boot partition on a Pi should be accessible from any machine with an SD card reader, on Windows, Mac, or Linux. If you want to enable SSH, all you need to do is to put a file called ssh in the /boot/ directory. The contents of the file don’t matter: it can contain any text you like, or even nothing at all. When the Pi boots, it looks for this file; if it finds it, it enables SSH and then deletes the file. SSH can still be turned on or off from the Raspberry Pi Configuration application or raspi-config; this is simply an additional way to turn it on if you can’t easily run either of those applications.

rconf

The risk with an open SSH port is that someone can access it and log in; to do this, they need a user account and a password. Out of the box, all Raspbian installs have the default user account ‘pi’ with the password ‘raspberry’. If you’re enabling SSH, you should really change the password for the ‘pi’ user to prevent a hacker using the defaults. To encourage this, we’ve added warnings to the boot process. If SSH is enabled, and the password for the ‘pi’ user is still ‘raspberry’, you’ll see a warning message whenever you boot the Pi, whether to the desktop or the command line. We’re not enforcing password changes, but you’ll be warned whenever you boot if your Pi is potentially at risk.

warn

Our hope is that these (relatively minor) changes will not cause too much inconvenience, but they will make it much harder for hackers to attack the Pi.

Is there anything I need to do to protect my Pi?

We should stress at this point that there’s no need to panic! We are not aware of Pis being used in botnets or being taken over in large numbers; your own Pi is almost certainly not currently hacked.

It’s still good practice to protect yourself to avoid problems in future. We therefore suggest that you use the Raspberry Pi Configuration application or raspi-config to disable SSH if you’re not using it, and also change the password for the ‘pi’ user if it’s still ‘raspberry’.

To change the password, you can either press the ‘Change Password’ button in Raspberry Pi Configuration, or type passwd at the command line, and follow the prompts.

cpass

This issue has caused quite a lot of discussion at Pi Towers. The relaxed approach we’ve taken thus far has been for very good reasons, and we’re reluctant to change it. However, we feel that these changes are necessary to protect our users from potential threats now and in the future, and we hope you can understand our reasoning.

How do I get the updates?

The latest Raspbian with PIXEL image is available from the Downloads page on our website now. Note that the uncompressed image is over 4GB in size, and some older unzippers will fail to decompress it properly. If you have problems, use 7-Zip on Windows and The Unarchiver on Mac; both are free applications which have been tested and will decompress the file correctly.

To update your existing Jessie image with all the bug fixes and these new security changes, type the following at the command line:

sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install -y pprompt

and then reboot.

The post A security update for Raspbian PIXEL appeared first on Raspberry Pi.



Source: Raspberry Pi – A security update for Raspbian PIXEL

Giveaway: Corsair RM1000i Special Edition White PSU

As the year starts to wind to a close, Corsair is marking their 10th year in the PSU business. All told, they have now sold over 10 million PSUs, and for that reason, they have decided to do a little celebrating.


In honor of their 10th year, Corsair is making a special run of their 1000W RM1000i PSU, the aptly named RM1000i Special Edition. And better still, they’ve given us one to give away to you, our readers.


 


We took a look at the standard RM1000i power supply last year, and the PSU received high marks for efficiency, quiet operation, and extremely accurate power delivery, making it one of the best PSUs we reviewed in 2015. The RM1000i Special Edition, in turn, takes the RM1000i and dresses it up a bit for the occasion. Overall the special edition PSU gets a white paint job, with each unit being individually numbered. The power supply also comes with a matching set of white, sleeved Corsair type 4 (in-line capacitor) power cables.


  

Gallery: Corsair RM1000i


Now for the fun part: we have one of these power supplies to give away, so in traditional AnandTech style we are taking entries for a drawing to determine which lucky winner receives our RM1000i Special Edition. This content starts now and will end at midnight on December 5th, so you have until the end of the weekend to enter.


Please note that the standard AnandTech giveaway rules apply, so we’re only able to open up this contest to legal residents of the United States who are 18 years or older. Unfortunately the legal requirements for holding giveaways in other countries means that we have to limit this to the US. Anyhow, you can read the full terms and conditions below, and good luck to the winner.


AnandTech Corsair RM1000i Special Edition Giveaway



Source: AnandTech – Giveaway: Corsair RM1000i Special Edition White PSU

New Study Shows Marijuana Users Have Low Blood Flow To the Brain

cold fjord writes: State level marijuana legalization efforts across the U.S. have been gaining traction driven by the folk wisdom that marijuana is both a harmless recreational drug and a useful medical treatment for many aliments. However, some cracks have appeared in that story with indications that marijuana use is associated with the development of mental disorders and the long-term blunting of the brain’s reward system of dopamine levels. A new study has found that marijuana appears to have a widespread effect on blood flow in the brain. EurekAlert reports: “Published in the Journal of Alzheimer’s Disease, researchers using single photon emission computed tomography (SPECT), a sophisticated imaging study that evaluates blood flow and activity patterns, demonstrated abnormally low blood flow in virtually every area of the brain studies in nearly 1,000 marijuana users compared to healthy controls, including areas known to be affected by Alzheimer’s pathology such as the hippocampus. According to Daniel Amen, M.D., ‘Our research demonstrates that marijuana can have significant negative effects on brain function. The media has given the general impression that marijuana is a safe recreational drug, this research directly challenges that notion. In another new study just released, researchers showed that marijuana use tripled the risk of psychosis. Caution is clearly in order.'”

Read more of this story at Slashdot.



Source: Slashdot – New Study Shows Marijuana Users Have Low Blood Flow To the Brain

Apple Refunds 27-inch iMac Customers That Paid To Fix Faulty Display Hinge

Apple Refunds 27-inch iMac Customers That Paid To Fix Faulty Display Hinge
Owners of certain iMac systems who previously paid to have the system’s display hinge replaced or repaired are receiving refunds from Apple. A leaked internal document that’s being distributed to Apple Authorized Service Providers contains the details, which at this time have not been made officially public. It remains to be seen if that will

Source: Hot Hardware – Apple Refunds 27-inch iMac Customers That Paid To Fix Faulty Display Hinge

Treadmills to endless hallways, tech has some sick solutions for VR nausea

Tom Atkinson

OXFORD, England—I first met Dr. Charles King at his ‘graduation’ from Richard Branson’s Virgin Media Techstars accelerator. The pitch he delivered to a packed audience in London described how ROVR—the company he started in 2012 with co-founder Julian Williams—was addressing a fundamental problem with the much-touted Virtual Reality boom: No matter how fun your content is, if it makes people throw up, it’s probably an experience they can do without.

According to King, two-thirds of us experience some degree of discomfort in VR even if we don’t quite “sell the Buick” as he so colorfully puts it. But Simulator Sickness (SS) is no laughing matter. A handful of experts say that exposure to some forms of VR can be as disorientating as getting drunk, and they call for headsets such as the Oculus and HTC Vive to be banned until more research is done on the long-term effects this has on our eyes and brain.

Read 30 remaining paragraphs | Comments



Source: Ars Technica – Treadmills to endless hallways, tech has some sick solutions for VR nausea