Slashdot Mirror


User: StripedCow

StripedCow's activity in the archive.

Stories
0
Comments
2,032
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,032

  1. Re:Let's just say on Is Google the New Microsoft? · · Score: 1

    Google is more like a chicken: they avoid liability by making their products "beta", and they avoid customer support by making their products free.

  2. Re:And this is why... on Oracle and the End of Programming As We Know It · · Score: 1

    Then you have a developer community whose primary incentive is to reinvent the wheel, not to develop new innovations on already-proven technology.

    Legal folks don't care about that. They reinvent the (breaking)wheel all the time.

  3. Other examples on Oracle and the End of Programming As We Know It · · Score: 0

    And think about wine and reactOS, both using the Windows API.

    And what about Java itself? It borrows a lot from C/C++.

  4. Natural tendency towards freedom on Is GPL Licensing In Decline? · · Score: 1, Informative

    Of course, any library published with a restrictive license (GPL) will eventually be supplanted by a library with a more liberal license (BSD, etc)
    The value proposition is simply better.

  5. kernel developers on In Nothing We Trust · · Score: 1

    With so many of this country's processes running wild, and such unfair load-balancing going on, I suggest we ask the linux kernel developers for help.

  6. Re:People are poorly informed fools on In Nothing We Trust · · Score: 1

    You replace the current crop of voters with a group that actually bothers to get informed...

    Do you suggest we vote for voters instead?

  7. Proof on Researchers Try To Identify the Intelligence Gene · · Score: 4, Insightful

    According to some researchers, that essentially proves

    According to some other researchers, the verb "prove" has lost its meaning.

  8. Re:Have you ever been to a Ruby conference? on The Ugly Underbelly of Coder Culture · · Score: 1

    What we need is a language that allows us (the open source community) to implement and experiment with different languages.
    This means the language should (imo) have these traits:

    1) (Efficiency) Should be close to machine language (possibly even equal to i386)
    2) Should be easy to translate to different platforms
    3) Should be secure

    Now, fortunately 2 follows from 1 since modern compiler technology can easily transform between different target codes. And 3 also follows from 1 since a machine instruction set is easy to make secure (much more easy than, say, the enormous and "hairy" javascript and html standards).

    I think google's NaCl comes closest to this goal. I just hope that others (including W3C) will accept this standard, so that we can start to develop compilers for it.

  9. Re:not your property any more on U.S. Government Hires Company To Hack Into Video Game Consoles · · Score: 1

    anything you throw out in the trash is no longer your possession.

    Hah, as if those things "were" your property in the first place, considering all the DRM installed.

  10. Re:This is funny. on NVIDIA Challenges Apple's iPad Benchmarks · · Score: 1

    Since Apple doubled their resolution, and thus effectively quadrupled their pixel count, they actually need a 4X speed advantage, so from the user's perspective the device must be getting slower.

  11. Re:When no longer alive on When Are You Dead? · · Score: 1

    "When Are You Dead?"

    According to copyright law, 70 years after you've died.

  12. distributed on GitHub Hacked · · Score: 5, Insightful

    Fortunately, git is a distributed version control system, meaning that, usually, there is a copy of the sources and history information elsewhere.

  13. Re:Just try shutting down your facebook account on Have We Lost Our Privacy To the Internet? · · Score: 4, Informative

    The cat is out of the bag and no matter what I do I can't get it back in.

    Well, the one thing you *can* do, is to inject so much noise into the internet about your persona, that the information that is currently on the web becomes practically useless.

  14. Re:Patent trolls getting what they deserve! on Patent Attorneys Sued For Copyright Infringement · · Score: 1

    Unfortunately, they will probably just slap the "fair use" label onto this to make it go away.

  15. Re:What a surprise on Anonymous, Decentralized and Uncensored File-Sharing Is Booming · · Score: 2, Insightful

    ...it's basically impossible to shut down, or compromise effectively, without severely screwing up the internet. Which is probably the next step.

    "You have transferred more than 100kB of encrypted data. Your internet connection will be suspended until the end of the month."

  16. Re:The sad part. on GPL, Copyleft On the Rise · · Score: 1

    computer code is often easier than its legal counterpart

    Ok, the next time I'm having a deadlock situation with more than 10 threads involved, I'm calling my lawyer.

  17. Door in face on RIAA CEO Hopes SOPA Protests Were a "One-Time Thing" · · Score: 5, Informative

    SOPA is just part of an exercising of the "door in the face technique". See: https://en.wikipedia.org/wiki/Door-in-the-face_technique

    Soon, they'll loosen their demands a little and suddenly governments will be okay with it.

  18. Re:You don't want "hosting" on Suggestions For Music Hosting? · · Score: 1

    You don't even want to have a server, well a big one anyway. For this type of data which is not latency-sensisitve, you probably want to follow the P2P model that spotify uses. It requires a bit more programming, but it can save you a lot of expenses and bandwidth problems.

  19. Stifle innovation on Apple Has Too Much Money · · Score: 4, Funny

    I hope they use that money to further stifle innovation. All these technological novelties and the accompanying technobabble are growing over my head.

  20. Consistency? on Is It Time For NoSQL 2.0? · · Score: 1

    How about consistency? Does this database even support the notion of transactions?

  21. Perspective on Google Heads Up Display Coming By the End of the Year · · Score: 4, Insightful

    So now google is able to literally look through our eyes... great.

  22. Re:first on Ask Slashdot: Copy Protection Advice For ~$10k Software? · · Score: -1, Offtopic

    I can second that.

  23. you can have it on Samsung Spins Off Its Display Business · · Score: 1

    After reading the quote in the summary, the only thing I can think of is: you can have your eternal copyright.

  24. Re:Really this is a work subject. on Ask Slashdot: Companies That Force Employees To Join Social Networks? · · Score: 1

    Here in California no problems whatsoever.

  25. Re:What technical advantages? on Google Chrome: the New Web Platform? · · Score: 1

    We need a much more generic programming environment than the current HTML+JS combo. Why? Let me explain.

    First, HTML and JS are hairy and complicated. It turns out that in practice no two browsers correctly implement these languages. This means that web developers have a hard time as they have to check and double check their code on every browser that is out there. In essence, stuff written for the web IS platform-dependent. Furthermore, because it is so difficult to implement HTML and JS, there will be only a limited set of browsers available in the market, so it is not healthy for competition, to say the least.

    With NaCl, the situation is different: only a relatively small set of machine instructions need to be supported. And because these machine instructions are so generic, much richer applications can be written for this platform. Think also rich libraries, and third-party languages. With JS, we are stuck with a particular execution model and garbage collection scheme. By offering a lower level language we open up a world of possibilities (ecosystem) for open-source library development.

    And guess what? Implementing a LLVM bitcode back-end for a new platform is much easier than implementing a JS compiler from scratch. It may sound unbelievable, but even i386 instructions are much easier to translate to a different platform, than implementing a JS compiler.