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:Not a new idea on We Are All Confident Idiots · · Score: 1

    "The whole problem with the world is that fools and fanatics are always so certain of themselves, and wiser people so full of doubts."
            -- Bertrand Russell

  2. Re:Justice on EU Court Rules Embedding YouTube Videos Is Not Copyright Infringement · · Score: 1

    Correlation != causation.

  3. Re:100 year old survival knowledge in PDF files??? on A Library For Survival Knowledge · · Score: 1

    Still makes no sense, because of this quote:

    In order to make an apple pie from scratch, you must first create the universe.

    (Carl Sagan)

  4. Re:Crazy EU logic (again) on EU Court Rules Embedding YouTube Videos Is Not Copyright Infringement · · Score: 1

    Well, if a copy is made, you lose the possibility of removing the content or changing it.

  5. Re:Justice on EU Court Rules Embedding YouTube Videos Is Not Copyright Infringement · · Score: 0

    The E.U. copyright directive and the laws in different countries don't mention embedding, and thus a court decides

    That was the point. The fact that embedding is not described in the law means that this is a failure. Please read the original comment again if you still don't get it.

  6. Use this spray! on Ask Slashdot: How Do I Make a High-Spec PC Waterproof? · · Score: 1
  7. Re:Tent! on We Need Distributed Social Networks More Than Ello · · Score: 1

    Looks interesting. Where can I find the RFCs?

  8. Re:Distributed is hard because of the asshole prob on We Need Distributed Social Networks More Than Ello · · Score: 1

    "E-mail" is a social network, a distributed one, and it works pretty well, even considering the spam problem.

  9. Google code on Will the Google Car Turn Out To Be the Apple Newton of Automobiles? · · Score: 1

    Wouldn't it be cool if they (Google) wrote a simulation environment that emits the (simulated) outputs of a radar (LiDAR) and other sensors to an API. If they would open-source this environment, everybody could write car-driving code and test it in the safety of their home (it doesn't even need to be real-time). They could even use this environment in a Google Code session, for example, and see which participants obtain the best results.

  10. Re:How hard is it to recognize a stoplight? on Will the Google Car Turn Out To Be the Apple Newton of Automobiles? · · Score: 1

    You don't need to describe it programmatically.
    You can just train a neural network for that, then test that the miss-rate is below a certain threshold.

  11. Thinking of the #1 searched-for keyword on Google, I'm wondering what this will be used for mainly...

  12. More specific on Ask Slashdot: Aging and Orphan Open Source Projects? · · Score: 5, Insightful

    Could you be a little more specific about the kind of software this is about?
    That might reveal why people shy away from the project.

    Anyway, in general, keep in mind that maintaining software is boring and does not earn one brownie points.
    Motivating people to write the software from scratch might work better.
    In that case, make sure your functional specs are up to date.

  13. Re:All the movies had women in business on NPR: '80s Ads Are Responsible For the Lack of Women Coders · · Score: 2

    No it's just that all other code besides mine sucks

    Do you think the same way about the code written by the guys who wrote your compiler?

  14. Re:So you have to install an app... on Delivering Malicious Android Apps Hidden In Image Files · · Score: 1

    I thought app stores existed because of security.
    Let's do away with them altogether then.

  15. Re:Why the hell... on JavaScript and the Netflix User Interface · · Score: 1

    Reliability and security are critical.

    It is much easier to make a handful of bytecode-instructions secure than it is to make the wealth of what is JS today secure.

  16. Re:Why the hell... on JavaScript and the Netflix User Interface · · Score: 1

    If even half that effort was directed at making PNaCl viable on all browsers, we would be so much further forward.

    If you start a kickstarter campaign, I would back it.

  17. Sigh on Doctor Who To Teach Kids To Code · · Score: 1

    Just as we had a little hope of losing some of that "geeky" image that goes with coding... Dr. WHO starts teaching to code.
    Sigh.

    Will this appeal to, e.g., girls?

  18. Re:Almost a microwave on Australian Physicists Build Reversible Tractor Beam · · Score: 1

    While you evaporate, there's a moment when you're surrounded by your own gas molecules, which can be used to push you forward, I suppose.

  19. Re:Browser Apps are NOT desktop apps on JavaScript and the Netflix User Interface · · Score: 1

    (I forgot to add "return x;" inside the function, but I guess that's clear)

  20. Re:Browser Apps are NOT desktop apps on JavaScript and the Netflix User Interface · · Score: 1

    The real underlying reason these apps feel flimsy is probably that Javascript is a single-threaded language.

    The language is single threaded, doesn't mean it can't support "threads" in a message-passing way. The fact that my old Apple ][ can support threads by hooking 2 of them up through a serial interface doesn't make them "multithreaded". But if you want to look at it that way, then I apparently can't stop you :)

    your assumptions simply don't match reality

    Ok, so if a "for" loop is transformed so easily into an equivalent asynchronous structure, please enlighten me and show me how.
    For example, take these simple nested loops, and I'm curious what code it transforms into.

    function f(x)
    {
        for(var i = 0; i < N; ++i)
            for(var j = 0; j < N; ++j)
                for(var k = 0; k < N; ++k)
                    x = g(x, i, j, k);
    }

    where g is some constant-time function.

  21. Re:Will Microsoft ever learn? on More Eye Candy Coming To Windows 10 · · Score: 1

    I know this is Slashdot, but you must be talking about Google here.

  22. Huh on Google Changes 'To Fight Piracy' By Highlighting Legal Sites · · Score: 1

    If they can tell legal from non-legal, why do they even show the illegal stuff?

  23. Re:Bad statistics on Developers, IT Still Racking Up (Mostly) High Salaries · · Score: 1

    In related news, most people earning over $1M through the development of an iOS app have the profession: software developer.

  24. Question on The Largest Ship In the World Is Being Built In Korea · · Score: 0

    A man is sitting in this ship, and throws a massive Korean-made LED TV-screen overboard into the water.
    As a result, will the water level rise, or drop?

  25. Re:Browser Apps are NOT desktop apps on JavaScript and the Netflix User Interface · · Score: 1

    As threads are not an option in JS, it's a great opportunity for you to explore various alternative approaches.

    Please don't forget that the whole point of my comment was that threads are broken in JS.

    Go do some reading about asynchronous programming and event-driven programming.

    The problem with event-driven/asynchronous programming is that it requires a lot of work, and makes your code look awkward. For example, a simple "for" loop turns into a monster of functions calling eachother, in order to break the inside of the for-loop into small chunks that can't lock the UI. Now imagine a doubly-nested for-loop. You'd need special compilers to keep your code clean.

    Remember that Windows 3.1 was replaced by true multitasking for a reason.

    Also, asynchronous code can only make use of 1 core of your CPU, which is also a waste.