Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:That's all well and good.. (Score 1) 37

Well, I don't know about that, but at least it was better than Oculus Rift, if images in TFA are anything to go by. Something like semi-spherical 320 by 240 degrees with 3D zone of maybe 120 by 240 degrees in the middle, or thereabouts.

20/20 vision is defined as the ability to distinguish a line pair separated by 1 arc-minute. So at 2 pixels per minute, your 320x240 degree angle of view translates into 38,400 x 28,800 pixels.

The human eye gets away with it because only a tiny amount of the center of your vision has that resolution. The rest is a blurry, indistinct mess. Alas, Oculus Rift does not know where in that 320x240 degree field you are looking at so it can't take advantage of this fact. In the future, maybe we'll have head-mounted projector displays which track where your eyes are looking, and project a high-resolution image only at that spot, while the rest of the field is projected at low-resolution. It would certainly reduce the burden on 3D graphics hardware.

Open Source

Linux 3.19 Kernel To Start 2015 With Many New Features 66

An anonymous reader writes Linux 3.18 was recently released, thus making Linux 3.19 the version under development as the year comes to a close. Linux 3.19 as the first big kernel update of 2015 is bringing in the new year with many new features: among them are AMDKFD HSA kernel driver, Intel "Skylake" graphics support, Radeon and NVIDIA driver improvements, RAID5/6 improvements for Btrfs, LZ4 compression for SquashFS, better multi-touch support, new input drivers, x86 laptop improvements, etc.
Facebook

Federal Judge: Facebook Must Face Suit For Scanning Messages 48

Rambo Tribble writes U.S. District Court Judge Phyllis Hamilton on Tuesday denied Facebook's bid to dismiss a class-action lawsuit against the social media giant for violating users' privacy through the scanning of message content. In her rejection of Facebook's argument, the judge said the firm had, "...not offered a sufficient explanation of how the challenged practice falls within the ordinary course of its business."

Comment Privacy indépendant from beacons (Score 3, Informative) 61

What matters is not if an app can tell where you are in the store, but if and when the app shares that information with a server. I don't care what information an application collects, if the data stays in-app.

Of course the great likelihood is that an app that collects that information will probably send that to a server, at the very least to query for specifics around you... but a smart app developer could provide a privacy option for users while still gaining benefit from iBeacons and the like.

Comment Re:Congratulations Samsung... (Score 2) 75

Lemme guess - you're a guy who carries his smartphone in his pocket, and is incapable of imagining any other use scenario.

The phone is designed with the Asian market in mind. Phablets are insanely popular there among women, who put a cover on them and carry them in their purses. The problem is that if you get a text, you have to pull the phone out of your purse and flip open the cover to read it. A cover with a cutout for the screen is one solution, but still requires taking out the phone to read the text. Putting a display on the edge allows you to read the text while the phone is still in the purse.

Submission + - Airbus A350 XWB Enters Field Operations

jones_supa writes: The wait is finally over for aviation aficionados wanting to book a flight aboard the Airbus A350 XWB. Qatar Airways, the global launch customer of the plane, accepted delivery of their first A350 of 80 in order, during a ceremony at Airbus' headquarters in Toulouse, France, on Monday morning. This particular A350-900 will enter regular commercial service in January, operating daily flights between its Hamad International Airport hub in Doha, Qatar and Frankfurt, Germany. There are three different iterations of A350 XWB being built: the A350-800, the A350-900 and the A350-1000, which seat 270, 314 and 350 passengers, respectively, in three-class seating. The "XWB" in the name means "extra wide body." The A350 is the first Airbus with both fuselage and wing structures made primarily of carbon-fiber-reinforced polymer. Curious what it was like to be on the Tuesday delivery flight? Jeremy Dwyer-Lindgren was onboard that flight and chronicled the landmark trip in photographs.
Science

300 Million Year Old Fossil Fish Likely Had Color Vision 37

westlake writes Nature is reporting the discovery of mineralized rods and cones in a 300-million-year-old fossil fish found in Kansas. The soft tissues of the eye and brain decay rapidly after death, within 64 days and 11 days, respectively, and are almost never preserved in the fossil record — making this the first discovery of fossil rods and cones in general and the first evidence for color vision in a fossilized vertebrate eye.
Crime

Russian Hackers Stole Millions From Banks, ATMs 53

An anonymous reader writes Tens of millions of dollars, credit cards and intellectual property was stolen by a new group of cyber criminals. Group-IB and Fox-IT, in a joint research effort, have released a report about the Anunak hackers group (PDF). This group has been involved in targeted attacks and espionage since 2013. Anunak targets banks and payment systems in Russia and CIS countries. In Europe, the U.S., and Latin America, criminals were mainly focusing on retail networks as well as mass media resources. Anunak is unique in that it aims to target banks and e-payment systems. The goal is to get into bank networks and gain access to secured payment systems. As a result, the money is stolen not from the customers, but from the bank itself. If they manage to infect governmental networks, they use the infrastructure for espionage.

Comment Re:Old quote comes into play (Score 1) 227

Because as everybody knows, all Apple employees are special little snowflakes whose precious little lives

They are human beings who deserve a break from a rough work schedule, and again what is even the point of serving Sony's 11th hour demands when a release next week has essentially the same effect? Are you truly so daft as to imagine the physical act of release means anything next to the symbolic act of simply saying the release will go ahead?

I somehow get the sense you are that daft, and perhaps far dafter than can be discerned at first glance... I'll let you have the last response as you are quite simply batshit insane and not worthy of further correspondence.

Comment Re:uh - by design? (Score 1) 163

All drivers on OS X are already required to tell the operating system ahead of time that a device is about to DMA to memory. That's how that VT-d is able to configure the IOMMU hardware to allow those devices to access RAM without worrying about 64-bit address spaces. So the OS already knows precisely which pages of physical RAM should be accessible by PCIe devices using DMA. If other pages of RAM are accessible, that's a bug.

Similarly, making the Thunderbolt controller's IOMMU mappings be driven by that part of the kernel should not break any drivers at all, by definition, because PCIe devices shouldn't be issuing DMA requests except at driver-preapproved locations. So AFAIK, the only way such a fix could break any device would be if that device was trying to do something really dangerous, like reprogramming one of the PCI bus bridges, or reflashing the computer's EFI firmware....

I mean, I suppose that some drivers might be inadvertently configuring a mapping for a page of memory that also contains executable code or class instances (with function pointers), in which case fully fixing this would also require Apple to modify the IOMemoryDescriptor class to ensure that the DMA-enabled pages are whole pages owned by the descriptor, but that should still be pretty minor, and should result in only a modest amount of wired kernel memory bloat.

In the worst case, such a change might require a CPU-driven copy-on-prepare and/or copy-on-complete to work around drivers that provide their own virtual addresses for a memory descriptor that aren't page-aligned, which would cause a big performance hit for those few drivers, but I'd expect most driver developers to quickly fix those design mistakes to eliminate the performance hit. (And that's assuming this isn't done already—for some reason, I thought those buffers had to be page aligned or you'd get a panic, but I'm not seeing anything about it in the docs, so I might be remembering wrong.)

Books

App Gives You Free Ebooks of Your Paperbacks When You Take a "Shelfie" 131

Peter Hudson writes Alan Henry writes on LifeHacker: "Paper books are awesome, but sometimes there's no beating the portability of an ebook on your phone or tablet. If you have a physical book you'd love to read on the go, BitLit may be able to get you an ebook version for free—all you need to do is take a photo of your book case: a 'shelfie.'" CNET notes that it's not quite as useful as it sounds: "As you might expect from a startup in the e-book space, BitLit currently offers a very limited selection -- only about 75,000 books, so the likelihood of a match is pretty slim. Browsing the library, I recognized very few mainstream authors."

Comment Re:To What End? (Score 1) 282

So what's the motive then?

I'm skeptical it was North Korea too. But they do in fact have a huge motive. You know how Thailand's government gets their panties in a bunch every time a foreigner somehow mocks their king? Multiply that by a hundred. That's how much North Korea reveres their leader. Not just their government, but a good fraction of their people. They've had it drilled into their heads since birth that their leader is a god. They got upset at this commercial. Sony was gonna release a whole movie.

Science

Scientists Say the Future Looks Bleak For Our Bones 115

HughPickens.com writes Nicholas St. Fluer reports at The Atlantic that according to researchers, our convenient, sedentary way of life is making our bones weak foretelling a future with increasing fractures, breaks, and osteoporosis. For thousands of years, hunter-gatherers trekked on strenuous ventures for food with dense skeletons supporting their movements and a new study pinpoints the origin of weaker bones at the beginning of the Holocene epoch roughly 12,000 years ago, when humans began adopting agriculture. "Modern human skeletons have shifted quite recently towards lighter—more fragile, if you like—bodies. It started when we adopted agriculture. Our diets changed. Our levels of activity changed," says Habiba Chirchir. A second study attributes joint bone weakness to different levels of physical activity in ancient human societies, also related to hunting versus farming.

The team scanned circular cross-sections of seven bones in the upper and lower limb joints in chimpanzees, Bornean orangutans and baboons. They also scanned the same bones in modern and early modern humans as well as Neanderthals, Paranthropus robustus, Australopithecus africanus and other Australopithecines. They then measured the amount of white bone in the scans against the total area to find the trabecular bone density. Crunching the numbers confirmed their visual suspicions. Modern humans had 50 to 75 percent less dense trabecular bone than chimpanzees, and some hominins had bones that were twice as dense compared to those in modern humans. Both studies have implications for modern human health and the importance of physical activity to bone strength. "The lightly-built skeleton of modern humans has a direct and important impact on bone strength and stiffness," says Tim Ryan. That's because lightness can translate to weakness—more broken bones and a higher incidence of osteoporosis and age-related bone loss. The researchers warn that with the deskbound lives that many people lead today, our bones may have become even more brittle than ever before. "We are not challenging our bones with enough loading," says Colin Shaw, "predisposing us to have weaker bones so that, as we age, situations arise where bones are breaking when, previously, they would not have."

Slashdot Top Deals

This file will self-destruct in five minutes.

Working...