Slashdot Mirror


User: The_Wilschon

The_Wilschon's activity in the archive.

Stories
0
Comments
1,823
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,823

  1. Re:Try actually donating? on Ask Slashdot: How To Get Open Source Projects To Take Our Money? · · Score: 1

    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.

  2. Re:$20,000 hammer on Ask Slashdot: How To Get Open Source Projects To Take Our Money? · · Score: 1

    Yeah... you didn't read TFS, did you? You didn't even read TFTitle.

  3. Re:TDD on Is the Stable Linux Kernel Moving Too Fast? · · Score: 4, Insightful

    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.

  4. Re:Five Star on NHTSA Gives the Model S Best Safety Rating of Any Car In History · · Score: 1

    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

  5. Re:NHTSA pushed a 5 star rating on NHTSA Gives the Model S Best Safety Rating of Any Car In History · · Score: 1

    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.

  6. Re:Pike on Paralyzed Patients "Speak" With Their Pupils · · Score: 1

    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!"

  7. Re:NSA doesn't like the system it created??? on Bradley Manning Convicted of Espionage, Acquitted of 'Aiding the Enemy' · · Score: 1

    Leaving will only result in the NSA knowing *more* about your activities, of course.

  8. Re:Finally! on Bill Gates Is Beginning To Dream the Thorium Dream · · Score: 1

    Fucking units, how do they work? Although I think you're just trolling and that you actually do understand how units work.

  9. Re:friggen dummies... on Former Sun Mobile JIT Engineers Take On Mobile JavaScript/HTML Performance · · Score: 1

    If they care about performance, why not design custom ASICs?

    FTFY

  10. 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.

  11. 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.

  12. 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.

  13. Re:Phrasing on Proof Mooted For Heisenberg's Uncertainty Principle · · Score: 2

    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.

  14. Re: Proof is already from 1929 on Proof Mooted For Heisenberg's Uncertainty Principle · · Score: 1
    You say to yourself something like:

    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.

  15. Re:Fixed the summary on Proof Mooted For Heisenberg's Uncertainty Principle · · Score: 1

    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.

  16. Re:Fixed the summary on Proof Mooted For Heisenberg's Uncertainty Principle · · Score: 2

    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.

  17. Re:Yes. on Is Google Voice Doomed To Be 2nd-Class Messaging System? · · Score: 3, Insightful

    Errr, Betteridge would indicate the answer should be "no.".

  18. Re:Social Chaos on How Ubiquitous Autonomous Cars Could Affect Society (Video) · · Score: 1

    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.

  19. Re:No thanks. on How Ubiquitous Autonomous Cars Could Affect Society (Video) · · Score: 1

    Soooo, you're betting on humans to have faster reflexes than a computer? That's not a very good bet.

  20. Re:Facebook and Google and the NSA on Google Asks Government For More Transparency, Other Groups Push Back Against NSA · · Score: 1

    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.

  21. Re:It'll do a lot for pre-installed Linux too... on XP's End Will Do More For PC Sales Than Win 8, Says HP Exec · · Score: 1

    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.

  22. Re:Someone start a defense fund on USA Calling For the Extradition of Snowden · · Score: 1

    And the counsel would likely determine this in voir dire and so you would not be chosen as a juror.

  23. Re:Old business ideas on New Drugs Trail Many Old Ones In Effectiveness Against Disease · · Score: 1

    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.

  24. Re:Genius Idea on Tesla To Blanket US With Superchargers In Two Years · · Score: 1

    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.

  25. Re:Business Model on Tesla To Blanket US With Superchargers In Two Years · · Score: 4, Insightful

    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...