Slashdot Mirror


User: am+2k

am+2k's activity in the archive.

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

Comments · 1,219

  1. Re:Does that mean they'll get to vote? on Chimpanzee "Personhood" Is Back In Court · · Score: 1

    And yes, that also means taking it away from many who have it today.

    Including foreigners that have trouble with the local language and all infants.

  2. Re:Saw it at the Smithsonian a few years ago on Original 11' Star Trek Enterprise Model Being Restored Again · · Score: 1

    Simpsons 2F17, Radioactive Man:

    Nelson, Ralph, and Martin watch a man paint black patches on a white horse.

    Martin: Uh, Sir, why don't you just use real cows?
    Painter: Cows don't look like cows on film. You gotta use horses.
    Ralph: What do you do if you want something that looks like a horse?
    Painter: Ehh, usually we just tape a bunch of cats together.

  3. Re:Not Getting Paid on Crytek USA Collapses, Sells Game IP To Other Developers · · Score: 1

    Yes, me too. I even found a discussion about this on the web.

  4. Re:Not Getting Paid on Crytek USA Collapses, Sells Game IP To Other Developers · · Score: 1

    Only the Sith deal in absolutes!

    ;)

  5. Re:Not Getting Paid on Crytek USA Collapses, Sells Game IP To Other Developers · · Score: 2

    Your employer is not, in most cases, your friend.

    Your employer is never your friend. If you have a friend you also do business with, you have to separate those affairs, otherwise it can get very problematic. I know someone who doesn't speak to his own brother any more, because they had a company together that went bad.

  6. Re:This just in! on Chimpanzee Intelligence Largely Determined By Genetics · · Score: 3, Insightful

    His father was an electrical engineer, but maybe he knew that a single data point is irrelevant in statistics.

  7. Re:Asimov predicted it! on Dubai's Climate-Controlled Dome City Is a Dystopia Waiting To Happen · · Score: 1

    Not quite. The Earth moved underground, while Trantor built domes aboveground. However, the end result is pretty similar, and he also stated the same reasons for doing so (which pretty much matches what they're saying about this project).

  8. Asimov predicted it! on Dubai's Climate-Controlled Dome City Is a Dystopia Waiting To Happen · · Score: 2, Insightful

    That's what happened to Trantor in Asimov's Foundation series:

    Trantor is depicted as the capital of the first Galactic Empire. Its land surface [...] was, with the exception of the Imperial Palace, entirely enclosed in artificial domes.

    And so it begins...

  9. Re:Maybe Swedes would *prefer* it a bit hotter ind on Swedish Farmers Have Doubts About Climatologists and Climate Change · · Score: 1

    Well, if the Gulf Stream ceases to exist due to the changes (which has been considered a couple of times), the Swedes won't be all that glad I guess. Siberia will look like a warm and cozy place in comparison. Rome will be a bit colder than New York.

  10. Re:why would I want to hang with a buncha cunts on Match.com, Mensa Create Dating Site For Geniuses · · Score: 1

    A lot of your personality is defined by your IQ:

    Great minds discuss ideas; average minds discuss events; small minds discuss people. -- Eleanor Roosevelt

  11. Re:Predictable on Supreme Court Rules Against Aereo Streaming Service · · Score: 4, Interesting

    So, why is the spirit of the law ignored when it comes to tax code? Why are there so many companies with their seat in places like the Cayman Islands or San Marino, while 99% of the work force is in other countries like the US or somewhere in the EU? They still don't have to pay any taxes.

  12. Re:Yes, but for the wrong reason on US Supreme Court Invalidates Patent For Being Software Patent · · Score: 1

    But what's an abstract idea?

    Isn't the definition that you have to be able to give a patent to a developer skilled in the specific art and he/she can implement exactly the device described by the patent without inventing anything new? If that's not possible, the patent is supposed to be invalid because it's an abstract idea instead of a concrete implementation.

  13. Jetson TK1 on NVIDIA Adds Open-Source Gallium3D Support For the Tegra K1 · · Score: 2

    This might be related to the Nvidia Jetson TK1 that will be released pretty soon.

  14. Re:next up ipv6 on PHK: HTTP 2.0 Should Be Scrapped · · Score: 1

    Globally unique addresses are really unintuitive. What is this, the phone system? /s

  15. Re:Debuggers on Fixing the Pain of Programming · · Score: 1

    Simplest case, trying to debug remote code running on a server for which you have deploy-but-not-debug permissions on (this comes up a lot for me, actually).

    For these cases, you should set up a local mirror environment where you are allowed to debug. Of course, if you can't reproduce the problem locally (because of system-interdependencies or a critical database you aren't allowed to copy for testing due to privacy issues), you have a problem...

  16. Re:for the love of god on USPTO Approves Amazon Patent For Taking Pictures · · Score: 1

    It worked fine in the French revolution.

  17. Re:About time! on ARIN Is Down To the Last /8 of IPv4 Addresses · · Score: 1

    My (EU) ISP still ships cable modems that are not IPv6-compatible...

  18. Re:Ability to run arbitrary code. on Apple Fixes Major SSL Bug In OS X, iOS · · Score: 1

    Executing arbitrary code is how the jailbreaks work. They exploit some weakness to patch the system, removing a few safeguards in the process (that's why there are some viruses out there that only affect jailbroken iOS devices).

  19. Re:I would think on OpenSSL Cleanup: Hundreds of Commits In a Week · · Score: 1

    If a change is security related and non-obvious, then won't doing it in such a rush probably introduce new bugs/vulnerability into the code?

    I guess you're not a programmer? When programming, you develop mind models of the code. This means that you can see behind the structures and write complicated stuff very quickly. After a while of not working on the code, you forget that model, and small changes are very dangerous, since they might result in side effects in other parts of the code you didn't consider.

    That means that when you're constantly working on the same codebase and add features quickly, you get better code and less bugs. Note that this only stands true without a deadline looming ahead (which I don't think the OpenBSD devs have), since then you tend to make dangerous shortcuts and litter the code with "FIXME"s you tend to forget about.

    That's also how hackathons work. I've been able to create full products in a weekend that otherwise would have taken months.

  20. Re:I would think on OpenSSL Cleanup: Hundreds of Commits In a Week · · Score: 3, Insightful

    The often repeated mantra that high level language compilers do a better job than humans isn't true, and doesn't become true through repetition. The compilers can do no better than the person programming them, and for a finite size compiler, the optimizations are generic, not specific. And a good low level programmer can take knowledge into effect that the compiler doesn't have.

    While I agree, there are also specific cases where a human cannot reasonably do an optimisation a compiler has no troubles with. For example, a CPU can parallelize subsequent operations that are distinct, like talking to different units (floating point math, integer math, memory access) and not using the same registers. A human usually thinks in sequences, which require using the result of an operation as the input for the next operation. Everything else would be unreadable source.

    Finding distinct operations and re-ordering commands is easy in compilers, and the optimized result has no requirement of being readable.

    C tries to find a middle ground there, where the user still has a lot of possibilities to control the outcome, but the compiler knows enough about the code to do some optimizations. The question is where the correct balance lies.

  21. Re:Ummm... on Investors Value Yahoo's Core Business At Less Than $0 · · Score: 3, Insightful

    Yes, and this is how the world is ruled at the moment...

  22. Re:Windows XP did not instantly become unsafe Apri on IRS Misses XP Deadline, Pays Microsoft Millions For Patches · · Score: 1

    Windows XP did not instantly become unsafe on April 8, 2014, the date Microsoft calls the "end of life" for Windows XP.

    No, it has been unsafe for at least a few years already. Windows XP does not support any encryption that's still considered secure.

  23. Re:Stop using Youtube on Blender Foundation Video Taken Down On YouTube For Copyright Violation · · Score: 1

    my company wrote, directed, filmed, and edited a music video for a lesser known artist who is a friend. We did it pro bono because he is a friend. We posted the video to YouTube and he started using it successfully to promote himself and get more appearances. [...] That bigger company claimed they owned the copyright on the video. Google happily revoked our right to monetize it and gave us the option to take it down or let the bigger company monetize it.

    Well, this sucks, but it might actually be legally correct: When you friend signed away his soul to the record company, he gave them every right to act this way. As such, your company would have had to make a contract with the soul owner, not with the poor remains.

    Many musicians seem to be very naive and don't realize this when they sign up with a publisher, not even years later. Many don't even seem to think it necessary to point this out when they're doing contract work, like for indie games, even though it's very relevant. YouTube casters (which are the main PR for indie games) are not allowed to review games that come with this kind of tainted music. They are not even allowed to show trailers of the game. The casters not getting paid for their work is the mildest of results from violating this law.

    I've even seen musicians that tried to argue with their masters about that they would like them to allow game reviews, but it's a very sorry sight.

  24. Re:2 billion vrs 19 billion vrs 1 billion on Facebook Buying Oculus VR For $2 Billion · · Score: 1

    It's probably all about who drives a hard bargain at the acquisition talks.

  25. Re:Other HMDs? on Facebook Buying Oculus VR For $2 Billion · · Score: 1

    I fail to see the difference between Oculus Rift and many of the HMDs that previously existed. Is this just a case where the pioneers got the arrows in their backs and the latecomers were able to monetize things?

    Due to smartphones, the technology is now available to provide proper screens for HMDs. This is the critical piece that was missing previously. Also, what Palmer pioneered was using only a single lens to enhance the field of view, and doing the distortion correction in software, which wasn't possible until a few years ago (you basically need a fullscreen fragment shader while causing virtually no additional lag).

    Also, to avoid nausea VR needs at least 60Hz (better 90Hz) display update rate, and you need very low latency for the head tracking (below 10ms). This wasn't possible until very recently either. For example, even the PS4 cannot do that in an acceptable resolution, you need a higher class PC for that.