It's a consequence of the laws of statistical thermodynamics: That entropy always increases. There is a practically zero chance of entropy decreasing, and intelligence would need to exist in an area of decreasing entropy all the time. The chance of this is zero. Boltzmann brains are consequence of entropy decreasing, but these would survive for even shorter periods on average, as the universe they exist in will be closer to maximum entropy (on average).
One exception I can see to this, is if the state space of the universe increases. If it does then a maximum entropy state might never be reached. Anyone know enough about inflation and gravity to say if this is true for a universe that increases in size?
Users are responsible for their own decisions. If developers have an ethical obligation, then it's to inform and train users, so that they can make better decisions.
I don't think being a better fighter has anything to do with it. It's not like they'll be facing off before starting a fair fight. One will attack while the other isn't expecting it.
I really dislike the placement of the Insert key below the double-height Delete on the UK version (apparently it's the same on the US one too). But the keyboard looks so damn sexy I've forced my muscle memory to adapt.
Assuming your identity isn't given away by the fact that you're the only person wearing infrared emitting glasses. Anyway, for the full effect, you should walk around naked so you can't be identified by the clothes you're wearing.
That seems fair. Screwing companies out of money should be the customers default position. After all, the companies' default position is screwing money out of its customers. That said, if a company has my good will, I'm not nearly so niggardly.
With another "mode" key (Num-Lock?), he could turn the right-half into a numeric keypad, so that JKL becomes 456. Maybe another one (errr... Edit-Lock?), so they become Delete-End-PgDn, or Left-Down-Right? Fuck it, I'll just design my own. And write an article about it.
Dude, don't use square brackets with STL arrays and vectors, just to make your code more readable. The [] operator skips bounds checking, which is the main reason for using these classes in the first place. At() is the proper methodology to use in pretty much every case, unless you are so confident in your bounds that its worth the trivial speed increase in access time.
Bjarne Stroustrup's solution:
template<typename>
class Vec : public std::vector<T>; {
public:
using vector<T>::vector
A quantum state of position can be written as a superposition of a momentum states; the position is certain and the momentum is uncertain.
A quantum state of momentum can be written as a superposition of position states; the momentum is certain and the position is uncertain.
That's the duality and the extremes of the uncertainty principle. The mathematics can also show more generally, that the uncertainty in position and momentum is always more that a certain value (Planck's constant).
These things follow directly from the axioms of Quantum theory, Hilbert spaces and any two non-commutative operators. So I really don't see how Quantum Physics "just got less complicated". It's the same as it's always been. Although I've not read the paper yet, maybe that makes more sense.
I tried both FreeNAS and NAS4Free for a home server, and they were both good for what they aim to do. The problem I had was when I wanted to run something other than a NAS on the same box, such as tvheadend. I consequently tried OpenMediaVault as this is based on linux. In the end, I concluded that these only work if you're running your box purely as NAS. After a look at virtualisation using docker, and concluding that this was overkill, if not a bad idea, I went with Ubuntu Server and webmin. The storage is using BTRFS. I could have used ZFS, but BTRFS seemed a better choice, for what I wanted, at the time.
Note that if you want proper NAS, you'll probably want to avoid everything I've done at home.:)
I have a Nook. This has a passive screen. Great for reading in bed before going to sleep or in direct sunlight. It doesn't shine a light into your eyes keeping you awake. I believe the Kindle Paperwhite does have a light, but I guess you could switch that off. I'd probably just get the Kindle if I didn't already have the Nook. I can't see any advantage with the Kindle Fire over my Nexus 7 though.
It's a consequence of the laws of statistical thermodynamics: That entropy always increases. There is a practically zero chance of entropy decreasing, and intelligence would need to exist in an area of decreasing entropy all the time. The chance of this is zero. Boltzmann brains are consequence of entropy decreasing, but these would survive for even shorter periods on average, as the universe they exist in will be closer to maximum entropy (on average).
One exception I can see to this, is if the state space of the universe increases. If it does then a maximum entropy state might never be reached. Anyone know enough about inflation and gravity to say if this is true for a universe that increases in size?
or a treadmill, but you'd have to turn it 90 degrees clockwise twice.
Users are responsible for their own decisions. If developers have an ethical obligation, then it's to inform and train users, so that they can make better decisions.
I wonder if ultra-violet light would work. This should then provide even more bandwidth than visible.
What if the comment is // this code sucks.?
I don't think being a better fighter has anything to do with it. It's not like they'll be facing off before starting a fair fight. One will attack while the other isn't expecting it.
9/11 alone amounts to 2,977 due to terrorism.
I really dislike the placement of the Insert key below the double-height Delete on the UK version (apparently it's the same on the US one too). But the keyboard looks so damn sexy I've forced my muscle memory to adapt.
Doctors say South Africa has some of the greatest need for penis transplants anywhere in the world.
Made me laugh, but it's obviously a serious problem.
He only said that suicide is a symptom of mental illness. He did not say that suicide was a symptom of other conditions and circumstances.
If someone shoots at you, don't bother finding out who it was, just start shooting random people.
You should go everywhere accompanied by a young, nubile swimsuit model in a revealing costume.
I completely agree.
Assuming your identity isn't given away by the fact that you're the only person wearing infrared emitting glasses. Anyway, for the full effect, you should walk around naked so you can't be identified by the clothes you're wearing.
They arrested Bobby Drop Tables?
That seems fair. Screwing companies out of money should be the customers default position. After all, the companies' default position is screwing money out of its customers. That said, if a company has my good will, I'm not nearly so niggardly.
With another "mode" key (Num-Lock?), he could turn the right-half into a numeric keypad, so that JKL becomes 456. Maybe another one (errr... Edit-Lock?), so they become Delete-End-PgDn, or Left-Down-Right? Fuck it, I'll just design my own. And write an article about it.
People that put their life on the line for the safety of others. Braver, better people than I am.
Which is exactly what I think he should be charged with.
Dude, don't use square brackets with STL arrays and vectors, just to make your code more readable. The [] operator skips bounds checking, which is the main reason for using these classes in the first place. At() is the proper methodology to use in pretty much every case, unless you are so confident in your bounds that its worth the trivial speed increase in access time.
Bjarne Stroustrup's solution:
template<typename>
class Vec : public std::vector<T>; {
public:
using vector<T>::vector
T& operator[](int i)
{ return vector<T>::at(i); }
const T& operator[](int i) const
{ return vector<T>::at(i); }
};
Page 97 of The C++ Programming Language.
What would you recommend if I wanted silent, short action keys with tactile feedback?
A quantum state of position can be written as a superposition of a momentum states; the position is certain and the momentum is uncertain.
A quantum state of momentum can be written as a superposition of position states; the momentum is certain and the position is uncertain.
That's the duality and the extremes of the uncertainty principle. The mathematics can also show more generally, that the uncertainty in position and momentum is always more that a certain value (Planck's constant).
These things follow directly from the axioms of Quantum theory, Hilbert spaces and any two non-commutative operators. So I really don't see how Quantum Physics "just got less complicated". It's the same as it's always been. Although I've not read the paper yet, maybe that makes more sense.
They could insert it after the bit of code that reads:
if (price = 0.00)
price = 0.01;
I tried both FreeNAS and NAS4Free for a home server, and they were both good for what they aim to do. The problem I had was when I wanted to run something other than a NAS on the same box, such as tvheadend. I consequently tried OpenMediaVault as this is based on linux. In the end, I concluded that these only work if you're running your box purely as NAS. After a look at virtualisation using docker, and concluding that this was overkill, if not a bad idea, I went with Ubuntu Server and webmin. The storage is using BTRFS. I could have used ZFS, but BTRFS seemed a better choice, for what I wanted, at the time.
Note that if you want proper NAS, you'll probably want to avoid everything I've done at home. :)
The exact term is spaghettification.
I have a Nook. This has a passive screen. Great for reading in bed before going to sleep or in direct sunlight. It doesn't shine a light into your eyes keeping you awake. I believe the Kindle Paperwhite does have a light, but I guess you could switch that off. I'd probably just get the Kindle if I didn't already have the Nook. I can't see any advantage with the Kindle Fire over my Nexus 7 though.