But open-source projects routinely provide service for a fee. And even if the projects in question didn't provide any direct service to the donating company, just having *written* the software in the first place could easily be considered to be a provision of service.
For the purpose of release testing, though, the only thing you care about is whether or not there was a crash. If there was a crash, don't release. Back out the busted patch and release the working version. Then you can spend your time debugging the busted patch, which requires the logs and all.
It is extremely reactive, so I'd imagine refining it is pretty difficult as well. Also, it is not "right up there on the most abundent element on this planet". It's actually only the 33rd most abundant element in the Earth's crust (out of 78 elements occuring naturally in the crust). Occurrence is only about 20 parts per million.
http://en.wikipedia.org/wiki/Abundance_of_elements_in_Earth's_crust
It doesn't look like it will fill the niche of either an SUV or a minivan from those pictures. It just looks like a hatchback. Not useful for, say, soccer moms, I'd guess.
If they care about performance, why not design custom ASICs?
FTFY
Re:At least they're not rolling their own.
on
The DNA Data Deluge
·
· Score: 2
You should not write a C++ interpreter. You especially shouldn't write an interpreter of a language that looks almost just like C++, but is different from it in unpredictable ways, some of which contribute to bad coding habits and/or make normal C++ more difficult to learn.
Strictly sequential files are a bad model for data if most of your time is spent constructing more-and-more elaborate subsets of that data. When we want to examine a subset, we practically have to make a complete copy of all the data falling into that subset. You want to make a small tweak to your selection? Make a new copy all over again.
Re:At least they're not rolling their own.
on
The DNA Data Deluge
·
· Score: 2
Cycles are rarely the issue for us in HEP, and when they are, all we need is more nodes to split the problem into smaller pieces (wiki: embarassingly parallel problem). The actual computational needs are (typically) pretty small. The main bottleneck is usually data throughput. We discard enormous amounts of data (that may or may not be useful, depending on who you ask) simply because we can't store it anywhere close to as fast as we can make it (many orders of magnitude difference between the data production rate and the data storage rate). And then, when we're analyzing the data we've taken, our CPUs tend to sit idle while they wait on the disk to read another block of events, which then take a only a few cycles to add in to the necessary histograms. It only gets worse when the data is somewhere far away on the network. And it gets even worse when you want to select a subset of the data -- with our systems you have to make a full copy of the subset.
There are two big wins that modern big data has developed that we could benefit greatly from if the switchover costs weren't too high. The first is distributing data over many disks on many nodes and bringing the code to the data instead of bringing the data to the code. The more disks your data is on, the less you have to wait on seek times. The second is storing the data in a way that is not strictly sequential in a single set of files, so that if you want to look at a subset of the data, you can effectively do that without having to make a copy of that subset.
At least they're not rolling their own.
on
The DNA Data Deluge
·
· Score: 4, Interesting
In high energy physics, we rolled our own big data solutions (mostly because there was no big data other than us when we did so). It turned out to be terrible.
subatomic particles simply don't have precise position/momentums.
This is exactly correct. Exact position and exact momentum are not properties that a particle may possess simultaneously, no matter how well or poorly you might try to measure them.
Ok, here is some mathematical object called a state. What can I do with a state? Well, I can apply linear operators to a state. Given the properties of linear operators, there are some states that are unaffected (up to an overall scalar multiplication) by each operator. Call those "eigenstates". Call one of the operators the "position" operator. Find the eigenstates of the position operator. Now, I can compute, for any given state, how much overlap with each position eigenstate there is as a function of the corresponding eigenvalue. That overlap is a complex scalar function of position, which we can call a wave function, if we like.
It's actually much cleaner to start from this sort of abstraction and define the more concrete "wave function" from it than the other way around, partly because it allows you to more easily consider state spaces that, for example, don't have any operators with continuous eigenvalue spaces, like the spins of the ions in a ferromagnetic lattice, or the excitations of atoms/molecules in laser cavity.
Check chapter 9, (pages 237 and following), of the second edition of Principles of Quantum Mechanics by Ramamurti Shankar. Or, section 1.6 (page 18-20) and section 3.5 (page 110-118), of the second edition of Introduction to Quantum Mechanics by David J. Griffiths.
I'm sorry that I can't hyperlink to a physical book. But maybe you could go to your local public library and find a copy of one of them.
Correct fix: The uncertainty principle states that it is impossible for a particle to be in a state in which both the position and momentum (or any pair of observables represented by non-commuting operators) are exactly defined, or even well-defined beyond a certain limit determinable from the commutator of the pair of operators.
It has nothing to do with measurement, and everything to do with the mathematical existence of quantum states with certain properties. TFA is actually dealing with the observer effect, which does have to do with measurement, and which was Heisenberg's original intuitive idea.
Better/more automation also means decreased costs for basic living necessities, which means that one will not need to work as much in order to feed oneself and one's family. It also means that welfare sufficient for necessities will be less expensive. It also means that those with high-paying jobs will have less expenses and a larger percentage of their income can be collected as taxes without seriously disturbing them, increasing the amount of tax revenue available for transfer payments.
One can imagine a future in which all necessities, entertainment, luxuries, etc., can be/are provided/created/transported via automated systems. There might not be any jobs, but there also might not be a need for any jobs.
Most important thing is to see a doctor regularly and then follow the doctor's advice. Then you don't have to worry about genericized one-size-fits-all pontification from anonymous internet blogs, forums, etc.
Back of the envelope calculation: [(10k miles per year) / (30 miles per gallon)] * (4 dollars per gallon) = 1.3k$ per year. Over ten years, 13k$. Tesla offers a pre-paid battery replacement (pay when you buy the car, get the new battery much later) for 12k$. So, if the battery lifetime is on the close order of ten years, then you're not far from the break-even point. If gas prices go up, or if you drive more, or if your gas mileage is worse, or if the battery replacement price comes down, then less than ten years will do.
That was Henry Ford's model, of course. But don't forget that before the Model T, there were a number of very expensive automotives available that only the rich could afford...
But open-source projects routinely provide service for a fee. And even if the projects in question didn't provide any direct service to the donating company, just having *written* the software in the first place could easily be considered to be a provision of service.
Yeah... you didn't read TFS, did you? You didn't even read TFTitle.
For the purpose of release testing, though, the only thing you care about is whether or not there was a crash. If there was a crash, don't release. Back out the busted patch and release the working version. Then you can spend your time debugging the busted patch, which requires the logs and all.
It is extremely reactive, so I'd imagine refining it is pretty difficult as well. Also, it is not "right up there on the most abundent element on this planet". It's actually only the 33rd most abundant element in the Earth's crust (out of 78 elements occuring naturally in the crust). Occurrence is only about 20 parts per million. http://en.wikipedia.org/wiki/Abundance_of_elements_in_Earth's_crust
It doesn't look like it will fill the niche of either an SUV or a minivan from those pictures. It just looks like a hatchback. Not useful for, say, soccer moms, I'd guess.
They couldn't even afford two lights. Or maybe this was on purpose, as it allowed Pike to have dramatic pauses: "yesssssssss...... I MEAN NO!"
Leaving will only result in the NSA knowing *more* about your activities, of course.
Fucking units, how do they work? Although I think you're just trolling and that you actually do understand how units work.
If they care about performance, why not design custom ASICs?
FTFY
You should not write a C++ interpreter. You especially shouldn't write an interpreter of a language that looks almost just like C++, but is different from it in unpredictable ways, some of which contribute to bad coding habits and/or make normal C++ more difficult to learn.
Strictly sequential files are a bad model for data if most of your time is spent constructing more-and-more elaborate subsets of that data. When we want to examine a subset, we practically have to make a complete copy of all the data falling into that subset. You want to make a small tweak to your selection? Make a new copy all over again.
There are two big wins that modern big data has developed that we could benefit greatly from if the switchover costs weren't too high. The first is distributing data over many disks on many nodes and bringing the code to the data instead of bringing the data to the code. The more disks your data is on, the less you have to wait on seek times. The second is storing the data in a way that is not strictly sequential in a single set of files, so that if you want to look at a subset of the data, you can effectively do that without having to make a copy of that subset.
In high energy physics, we rolled our own big data solutions (mostly because there was no big data other than us when we did so). It turned out to be terrible.
subatomic particles simply don't have precise position/momentums.
This is exactly correct. Exact position and exact momentum are not properties that a particle may possess simultaneously, no matter how well or poorly you might try to measure them.
Ok, here is some mathematical object called a state. What can I do with a state? Well, I can apply linear operators to a state. Given the properties of linear operators, there are some states that are unaffected (up to an overall scalar multiplication) by each operator. Call those "eigenstates". Call one of the operators the "position" operator. Find the eigenstates of the position operator. Now, I can compute, for any given state, how much overlap with each position eigenstate there is as a function of the corresponding eigenvalue. That overlap is a complex scalar function of position, which we can call a wave function, if we like.
It's actually much cleaner to start from this sort of abstraction and define the more concrete "wave function" from it than the other way around, partly because it allows you to more easily consider state spaces that, for example, don't have any operators with continuous eigenvalue spaces, like the spins of the ions in a ferromagnetic lattice, or the excitations of atoms/molecules in laser cavity.
Check chapter 9, (pages 237 and following), of the second edition of Principles of Quantum Mechanics by Ramamurti Shankar. Or, section 1.6 (page 18-20) and section 3.5 (page 110-118), of the second edition of Introduction to Quantum Mechanics by David J. Griffiths.
I'm sorry that I can't hyperlink to a physical book. But maybe you could go to your local public library and find a copy of one of them.
Correct fix: The uncertainty principle states that it is impossible for a particle to be in a state in which both the position and momentum (or any pair of observables represented by non-commuting operators) are exactly defined, or even well-defined beyond a certain limit determinable from the commutator of the pair of operators.
It has nothing to do with measurement, and everything to do with the mathematical existence of quantum states with certain properties. TFA is actually dealing with the observer effect, which does have to do with measurement, and which was Heisenberg's original intuitive idea.
Errr, Betteridge would indicate the answer should be "no.".
Better/more automation also means decreased costs for basic living necessities, which means that one will not need to work as much in order to feed oneself and one's family. It also means that welfare sufficient for necessities will be less expensive. It also means that those with high-paying jobs will have less expenses and a larger percentage of their income can be collected as taxes without seriously disturbing them, increasing the amount of tax revenue available for transfer payments.
One can imagine a future in which all necessities, entertainment, luxuries, etc., can be/are provided/created/transported via automated systems. There might not be any jobs, but there also might not be a need for any jobs.
Soooo, you're betting on humans to have faster reflexes than a computer? That's not a very good bet.
That's why we need to keep people from switching to LibreOffice. They've never quite managed to implement a TruthFilter(TM) like MS Powerpoint has.
No, you're wrong. That was the past. This is the future.
Ah, crap. I was wrong too. That was the past. Now THIS is the future.
Dang it.
And the counsel would likely determine this in voir dire and so you would not be chosen as a juror.
Most important thing is to see a doctor regularly and then follow the doctor's advice. Then you don't have to worry about genericized one-size-fits-all pontification from anonymous internet blogs, forums, etc.
Back of the envelope calculation: [(10k miles per year) / (30 miles per gallon)] * (4 dollars per gallon) = 1.3k$ per year. Over ten years, 13k$. Tesla offers a pre-paid battery replacement (pay when you buy the car, get the new battery much later) for 12k$. So, if the battery lifetime is on the close order of ten years, then you're not far from the break-even point. If gas prices go up, or if you drive more, or if your gas mileage is worse, or if the battery replacement price comes down, then less than ten years will do.
That was Henry Ford's model, of course. But don't forget that before the Model T, there were a number of very expensive automotives available that only the rich could afford...