Yes, and this is because you do, on Google behalf, some picture recognition as well, in order either to confirm some other person recognition "work", or to be the initiator. The percentage distribution between "recognition work" and "actual recaptcha" is not clear, but the more you have to recognize, the more you work for Google at no charge.
This is why that won't happen any time soon. If we intend to discuss here all potential NASA projects, slashdot must be dedicated to that, along with 10 other websites.
If the US really took control of the NK missiles the best options would have been to let the weapons have a roughly normal path during the tests (so that NK doesn't suspect anything), and, only if there is a real conflict, redirect them to the sea.
even the double equals of C is one of the least "beautiful" design decisions ever made.
It's not because some not so good programmers confuse '=' with '==' that '==' is not "beautiful". On the contrary, I think this is one of the many genius ideas K&R had at the time ('a = b', 'a == b'... think about it!)
Too bad your example is useless (like 80% of PHP's doc examples anyway), since if ("0E54321" == "0E12345") (only 2 '=') yields also 'not equal'. A more relevant example is if ("123" === 123) (yields false but '==' yields true).
eating at Mac Donald's
Also, people are generally used to images of the outer planets and their moons being poor quality
No. I remember the Voyagers pictures quite well, taken 40 years ago...
If I want more decimal places, I can google it.
Going this way, in a not so far future you may not even remember the name "google", and you can't even google it..
Less a matter of memory than a very strong analytical capability.
Yes, and this is because you do, on Google behalf, some picture recognition as well, in order either to confirm some other person recognition "work", or to be the initiator. The percentage distribution between "recognition work" and "actual recaptcha" is not clear, but the more you have to recognize, the more you work for Google at no charge.
No. (Ian may now sleep in peace)
Is that supposed to be obvious?
Make a Linux partition via VirtualBox (...), put the encrypted data there through ssh / rsync, encrypt it and keep it encrypted when on disk.
This is why that won't happen any time soon. If we intend to discuss here all potential NASA projects, slashdot must be dedicated to that, along with 10 other websites.
That's a well known problem to photographers, photos colors are affected over time. Keep the photo negatives in a safe place!
ext4 is journaled and prevents loss in case of some file-corruption-prone events (like a sudden shutdown).
We'd have all the Windows crapware running on Mac and Linux :-(
If the US really took control of the NK missiles the best options would have been to let the weapons have a roughly normal path during the tests (so that NK doesn't suspect anything), and, only if there is a real conflict, redirect them to the sea.
That means 27% users are not computer aware enough to install and use another browser.
Someone hacked your wifi router and used your bandwidth to download the movie.
Yes, but what part of it is actually from sweat? Urine ~= sweat
What a waste of time
Unfortunately, due to NK's presence, SK life expectancy (on average) may well be below 90 in a not so far future.
since SK's Samsung stopped selling the Note 7
...that will never work.
Depends. That could work if manufacturers are pressured to take more into account the environment.
Well, transfer the ketchup from the regular container to this new slippery surfaced bottle. Wait..
Yes. Now go ahead and guesstimate the percentage of major PHP software packages accidentally using == where the developer should have used ===.
Whose fault is that?
even the double equals of C is one of the least "beautiful" design decisions ever made.
It's not because some not so good programmers confuse '=' with '==' that '==' is not "beautiful". On the contrary, I think this is one of the many genius ideas K&R had at the time ('a = b', 'a == b'... think about it!)
Except for objects, where a === b is true only if a and b are the same object
In Java, a == b is true if a and b references are identical, which is probably what does PHP under the hood.
if ("0E54321" === "0E12345") { echo 'equal'; } else { echo 'not equal'; }
Too bad your example is useless (like 80% of PHP's doc examples anyway), since if ("0E54321" == "0E12345") (only 2 '=') yields also 'not equal'. A more relevant example is if ("123" === 123) (yields false but '==' yields true).