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

 



Forgot your password?
typodupeerror
×

Comment (Self-replying, I apologize) (Score 5, Informative) 216

Note that it's still limited by the speed of light. The key feature, however, is that it is secure: someone intercepting the photon can't copy or read its qbit state without breaking the quantum entanglement, or preventing it from reaching the destination. In either case, the receiver will immediately know that the channel has been broken. It then stops transmitting a response to the sender, and the sender perceives this as also a break in secure communications and stops transmitting. Both the sender and the receiver would then go into failure mode and send query/response polls periodically. When secure communications are re-established, they can resume transmitting data.

Comment Re:Not a surprise (Score 1) 580

Fractions are ratios; they need an additional number to tell you what number the fraction represents. The number can be an integer or not; the fraction itself is not an integer.

E.g. 1/2 of the students in a class are expected to be above the national average. That does not tell you how many students should be above-average for your class to meet national standards.

If I additionally tell you that there are 27 students in the class, that does tell you how many students, but the number is not an integer. You end up expecting 13.5 students to be above average, which is nonsensical until you round up or down to come to a number that can mean anything.

Comment Re:new slogan (Score 1) 811

Have you ever been clocked with police radar? Ka band radar is basically the same frequency as these L3 machines. The only difference is the mmw nudescanners are a lot less powerful.

Citation needed. In fact, I would assume exactly the opposite is true: Imaging an object should require a much stronger reflection than simply using the Doppler effect to determine its velocity.

For instance, a magnetic flowmeter uses a very low-strength magnetic field of about 25 gauss [PDF] to measure a fluid's velocity, but a MRI machine uses a field with a strength of 5,000 to 30,000 gauss in order to actually image something.

Comment Re:new slogan (Score 1) 811

I've been into and out of airports which required re-screening people who transferred because to get to the other gate or terminal you had to exit the secure area.

Unless you've scheduled a 2-3 hour layover between every flight, you're shit out of luck. And if you do schedule 2-3 hour layovers at every transfer, you're going to spend almost as much time sitting in airports as you do in the air.

Comment Re:are people really this stupid (Score 1) 139

You could do it without PowerShell, as a matter of fact. You would need to fill in a couple of blanks, but this .bat file should work.

@echo off

rem Change Network Address - create reg file and merge into registry
cd %temp%
echo Windows Registry Editor Version 5.00>tmp.reg
echo.>>tmp.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\nnnn]>>tmp.reg
echo "NetworkAddress"="%1">>tmp.reg
regedit /s tmp.reg
del tmp.reg

rem Stop and restart NIC to apply changes
wmic path win32_networkadapter where index=n call disable
wmic path win32_networkadapter where index=n call enable

rem See if the change was successful - Display MAC addresses of local interfaces
getmac

n is the index for the NIC you want to change. The easiest way to find it is to run the command
wmic nic get name, index
and find the NIC you want to change. Since I assume you probably want to just change the MAC of a single NIC, you can hard-code it into the batch file. Hypothetically, if you wanted to, if you had a Windows installation to work with, of course...

Comment Re:Licensing costs (Score 1) 734

It's libdvdcss, not libdvdcs. And the CSS (content scramble system) is only one part of the puzzle; non-encrypted DVDs will still require a MPEG-2 codec, which is also patent-encumbered and has royalty fees associated with it.

So the answer to GP's questions should really be "no", and "sometimes". VLC does not pay licensing fees; libdvdcss appears to bypass the licensing fees, but FFmpeg does not. From the ffmpeg.org legal readme:

Q: Does FFmpeg use patented algorithms?
A: We do not know ... various standards FFmpeg supports contain vague hints that any conforming implementation might be subject to some patent rights in some jurisdictions ...
Q: Is it safe to use such patented algorithms?
A: Patent laws vary wildly between jurisdictions ... whether you are safe or not depends on where you live ...
Q: Is it perfectly alright to incorporate the whole FFmpeg core into my own commercial product?
A: You might have a problem here. There have been cases where companies have used FFmpeg in their products. These companies found out that once you start trying to make money from patented technologies, the owners of the patents will come after their licensing fees. Notably, MPEG LA is vigilant and diligent about collecting for MPEG-related technologies.

Slashdot Top Deals

The biggest difference between time and space is that you can't reuse time. -- Merrick Furst

Working...